Find the answer to your Linux question:
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 ...
  1. #1
    Just 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

  2. #2
    Blackfooted Penguin daark.child's Avatar
    Join Date
    Apr 2006
    Location
    West Yorks
    Posts
    4,344
    Have you tried the command "sudo -s".

  3. #3
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi audrokit,

    Welcome to the LinuxForums.

    Quote Originally Posted by audrokit
    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.
    Root Login is disabled in (K)Ubuntu and sudo provide 'root' privileges for 5 minutes only. it doesn't change login symbol in prompt.
    Quote Originally Posted by audrokit
    Ultimately, I'm trying to mount a windows partition so i can write to it.
    add entries of Windows partition in /etc/fstab file and set umask value to 0. umask=0 allows default access to all users.
    execute this to mount Windows partitions in terminal/konsole,
    Code:
    sudo mount -t <fielsystem> /dev/<partition>  <mount_point> -o defaults,umask=0
    no need to prefix sudo for reading/writing in Windows partitions.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  4. #4
    Linux User Oxygen's Avatar
    Join Date
    Jul 2004
    Location
    Hartlepool, England
    Posts
    392
    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
    Graham - You'd better Use Linux!

    I'm registerd Linux user #397030. What about you?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...