Find the answer to your Linux question:
Results 1 to 5 of 5
Hi, In Bash trying to log in as root, (su) I get the response: Password: But typing does not enter any characters Really odd, can you help?? (Debian Etch)...
  1. #1
    Just Joined!
    Join Date
    Nov 2008
    Posts
    13

    SU command - no keyboard response



    Hi,

    In Bash trying to log in as root, (su)

    I get the response:

    Password:

    But typing does not enter any characters

    Really odd, can you help?? (Debian Etch)

  2. #2
    oz
    oz is offline
    forum.guy
    Join Date
    May 2004
    Location
    arch linux
    Posts
    17,788
    Characters are not echoed to the screen for passwords, so there is not supposed to be anything showing up on the screen.

    Go ahead and enter your password as if it were showing, then press ENTER.
    oz

    new users: read this first
    no private messages requesting computer support - post them on the forums!

  3. #3
    Just Joined!
    Join Date
    Nov 2008
    Posts
    13
    Ah, thanks.

    But...Im now logged in as superuser and trying to add a line to the etc/apt/sources.list (for installing Opera) but it won't let me save to that file (read only lock)
    How do I enable it for write??

    Thanx Richard

  4. #4
    oz
    oz is offline
    forum.guy
    Join Date
    May 2004
    Location
    arch linux
    Posts
    17,788
    as regular user, go to a terminal, su to root, then edit your file:

    Code:
    su
    ...enter root password

    Code:
    vi /path/to/file
    ...you can substitute another editor such as nano if you prefer it over vi.

    If it doesn't work using the su command, try using su - as the command:

    Code:
    su -
    oz

    new users: read this first
    no private messages requesting computer support - post them on the forums!

  5. #5
    Just Joined!
    Join Date
    Nov 2008
    Posts
    13
    Ah thanks- saving all these tips!

Posting Permissions

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