LINUX HELP fast

need fast linux help:

whats the diference between :

tar cf file.rar *
tar cf file.rar * &

and diference of how to apply a permission at a file or at a directory.


im at exam.. ihi

thx
Comments
22
HELLO CHEATER
me? zomg :D cant talk now... doing exam.. but i love u too
Parent
HELLO CHEATER
Parent
der war nix noname
Parent
AHAHA retardado
procura e cala te!! :Dtou fdd... so falta 30 mins ainda m falta 2 folhas :D
Parent
& is the difference
nyyrikki is correct
wtf...voce esta tao busted
I think that with "&" that command is executed in the background, so you can execute other commands without waitting for the 1st one to end.
i could write that but exame is done allready and im at home now :D thx anyway
Parent
no idea tbh applying a permission: chmod + something like that ":D
i know.. i just didnt knew how to apply to a folder..
Parent
cd to the folder i guess like: /home/carlo/Desktop chmod +
atleast i think
Parent
:) i dont care now.. its done and im free now :D
Parent
YOUNG MAN THAT IS NOT THE RIGHT ATTITUDE
Parent
I know you don't care now, but here it is anyway :P

Commands ending in & execute in background. Actually, you can do:
cmd1 & cmd 2 & cmd 3
This will execute 1 & 2 in the background, and wait for 3. If you append one more &, all will execute in the background.

There is no difference in applying the permissions. For a directory you could append -R argument to also apply the permissions to everything in that directory recursively. Also, the permissions have different meanings for directories:

* r allows users to list files in the directory;
* w means that users may delete files from the directory or move files into it;
* x means the right to access files in the directory. This implies that you may read files in the directory provided you have read permission on the individual files.

GL passing the exam ;)
i think i will get a good result.. 16 or more (max is 20) atleas i hope... buts lets see..

thx anyway *
Parent
Back to top