Results 1 to 4 of 4
hi, i'm a newbie - so be kind.
When I'm in Ubuntu, I tried to get administrator privilagess using "sudo nautilus" or even kdesu konqueror - however, the terminal window ...
- 05-01-2007 #1Just Joined!
- Join Date
- Apr 2007
- Posts
- 1
Ubuntu Permissions (with KDE)
hi, i'm a newbie - so be kind.
When I'm in Ubuntu, I tried to get administrator privilagess using "sudo nautilus" or even kdesu konqueror - however, the terminal window is supposed to change from the $ symbol to the # symbol - but when I put in my password - it still shows the $ symbol.
Ultimately, I'm trying to mount a windows partition so i can write to it.
please assist
- 05-01-2007 #2
Have you tried the command "sudo -s".
- 05-01-2007 #3
Hi audrokit,
Welcome to the LinuxForums.
Root Login is disabled in (K)Ubuntu and sudo provide 'root' privileges for 5 minutes only. it doesn't change login symbol in prompt.
Originally Posted by audrokit
add entries of Windows partition in /etc/fstab file and set umask value to 0. umask=0 allows default access to all users.
Originally Posted by audrokit
execute this to mount Windows partitions in terminal/konsole,
no need to prefix sudo for reading/writing in Windows partitions.Code:sudo mount -t <fielsystem> /dev/<partition> <mount_point> -o defaults,umask=0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 05-01-2007 #4
Oh BTW you may be interested in NTFS-3G, lets you write to windows partitions using NTFS. Example:
sudo mount -t ntfs-3g /dev/hda1 /media/hda1 -o defaults,umask=0,rw
To install it, run:
sudo apt-get install ntfs-3g


Reply With Quote