Showing posts with label howto. Show all posts
Showing posts with label howto. Show all posts

Thursday, October 13, 2016

See The Users that have Running Processes on Linux System

Hi,

Today I am gonna write about how to see the users on your Linux system that are running some processes.

I have a YouTube video about this post. Check it out if you wish.

YouTube : See The Users that have Running Processes on Linux System



The command is,

sudo ps aux | awk '{print $1}' | sort | uniq | grep -v USER

Explanation

sudo ps aux is used to list the running processes of the system.

awk '{print $1}' is used to print only the first column from the output of sudo ps aux

sort is used to sort the output.

uniq is used to get only the unique lines.

grep -v USER is used to remove the line that contains the field name USER.

Thank you for the visit. :-)

Thursday, September 8, 2016

Make LinuxMint 18 - Sarah USB Bootable Drive using Ubuntu


Make LinuxMint 18 - Sarah USB Bootable Drive using Ubuntu




Step 1: Go to the terminal.


Step 2: Type '   /dev/sd*   ' to see the device identifier of your usb drive. it should be something like /dev/sdb /dev/sdc. In my case it's '   /dev/sdb   '


Step 3: Type 'dd if=Location_of_Your_ISO_image.iso of=/dev/sdb bs=4096'. I have Linux Mint iso on my Downloads folder.

    sudo dd if=./Downloads/linuxmint-18-cinnamon-64bit of=/dev/sdb bs=4096  



Step 4: Wait


Step 5: Once it's done, enjoy.




You may watch how it's done on youtube. Please subscribe my channel if you do like it. :-)
Watch on YouTube