Tag: terminal

  • Resize images with Linux

    Resize images with Linux

    Use Linux command line. Resize multiple images with Linux is very simple by using ImageMagick suite. First of all, let’s install ImageMagick that includes lots of tools to manipulate images. To do that, execute following command in terminal window: $ sudo apt-get install imagemagick Now, lots of new commands are available (check ImageMagick command line […]

  • Kill a Running Process in Ubuntu or any Linux Distro using Terminal

    Kill a Running Process in Ubuntu or any Linux Distro using Terminal

    How to kill a running process Open the Terminal Type: ps aux and press enter. long series of processes will appear in your Terminal. look for the application you want to kill find that process, you can see a PID number, example 3225 Now kill that process, type: sudo kill -9 process number (replaced ‘process […]