QUOTE(triangle @ May 7 2007, 01:44 AM)
2) how to change ubuntu@ubuntu:~$ to myname@ubuntu:~$
what the sudo command??
thnx thnx,,sory so troublesome..i tired google arround liao..

- sudo to perform command as super user
- simply create new user :
$useradd -gusers -Gstaff -s/bin/bash -pxxxxxxx -d/home/yourname -m yourname
* -g = group "users"
* -G = other group "staff"
* -s = shell dir "/bin/bash"
* -p = password
* -d = home directory "/home/yourname"
* -m = create directory if dont have for yourname
Set new users ID, expire date & etc as below..
$usermod -u2233 -e2008-05-31 yourname
* -u = user ID "2233"
* -e = expired date "YYYY-MM-DD"
Notes:1)Perform both command as root
2)Make sure both groups must exist if necessary!:
$groupadd users
$groupadd staff
Added on May 7, 2007, 2:07 amQUOTE(Hungry_Wolf @ May 7 2007, 02:01 AM)
i dual boot ubuntu and xp, how to edit the booting so that it will automatically boot xp..
i'm newbie in linux..hope can get help here.
lilo or grub bootloader? suppose lilo can edit during boot session by press "e"
This post has been edited by anetwork: May 7 2007, 02:11 AM