Main Page: Difference between revisions

From Cheatsheet
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
This is my wiki, containing all of my shortcuts.<br><br>
This is my wiki, containing all of my shortcuts.<br><br>
                                                    System specs
[[User:Admin|Admin]]tells the system bit
<pre>uname -a</pre>
[[User:Admin|Admin]]What linux version and release
cat /etc/redhat-release
VPS parent sudo rights
sudo su
            OwnerShip
Tell what group number owner is
cat /etc/passwd | grep nobody
                                                      Group
[[User:Admin|Admin]] add user to group
useradd -G {group-name} username
Permissions
[[User:Admin|Admin]] find 777 folders
find /home -perm 0777 -type d -print

Revision as of 18:48, 29 March 2010

This is my wiki, containing all of my shortcuts.

                                                    System specs

Admintells the system bit

uname -a

AdminWhat linux version and release cat /etc/redhat-release

VPS parent sudo rights sudo su

           						OwnerShip

Tell what group number owner is cat /etc/passwd | grep nobody

                                                      	Group

Admin add user to group useradd -G {group-name} username

Permissions Admin find 777 folders find /home -perm 0777 -type d -print