Helpful Commands!
User Administration
- adduser <username>: Create a new user named <username>
- userdel -r <username>: Delete the user named <username>. The -r option removes the user's home folder located at /home/<username>.
- lastlog: lists all users and the last time that they logged in.
- groupadd <groupname>: Create a group called <groupname>
- useradd -G <groupname1>,<groupname2>... <username>: Add a user named <username> to a group or multiple groups.
Permissions
- chown <username>:<groupname> <file or directory>: Change the owner of at file or directory to <username> and <groupname>.
- chmod <permissions code> <file or directory>: Change the permissions on a file or directory to that specified.
"Hardware" Resources
- top: Show the top resource using processes
- ps aux: Show all processes
- free: Show information about memory allocation
- du <file or folder name>: Show the size of a file or folder, recursive for folders.
- kill <PID>: Kill a process by its ID. Use kill <PID> -9 to force the kill.
EC2 Tools
- ec2-bundle-vol: use to bundle an AMI for your running instance. Use --help for syntax information.
- ec2-upload-bundle: use to upload your bundle to Amazon's place for these things. Again, Use --help for syntax information.
Package Management / Software Installation
- apt-get: Oh my goodness its so easy to install anything!
- dpkg -L <package name>: Show a list of all the files that were installed with the named package. Useful since Linux seems so silly about where everything ends up...
- Login to post comments
Comments
unable to execute /bin/rm: Argument list too long
Apparently, there is a limit to how many files the rm command can handle. It chokes on over 6000 files in Ubunto and throws an "unable to execute /bin/rm: Argument list too long" error. Here is work around:
or if you need root privileges:
Unix/Linux Command Reference
Here is my current favorite one-page Unix/Linux command reference cheat sheet. They also came out with an Ubuntu reference cheat sheet version. They probably only changed the color scheme to match Ubuntu's ;)