Ubuntu basic commands


Below specified basic Ubuntu commands

Change owner

sudo chown user_name modules/ 
Using this command change owner for a particular folder.

sudo chown -R user_name modules/ 
Using this command change owner for a folder along with inner files recursively.

Change permissions 

sudo chmod 777 default/ 
Using this command change permissions for a particular folder or file.

sudo chmod -R 777 default/ 
Using this command change permissions for a folder along with inner files recursively.

Change directory

$ cd default

Goto previous directory

$ cd ..

Get current cirectory

$ pwd
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s