Find the answer to your Linux question:
Results 1 to 4 of 4
why do i always need to write"su"then my password to extract or copy any file in fedora 11. pls tell me how to configure so that i always be in ...
  1. #1
    Just Joined!
    Join Date
    Jul 2010
    Posts
    3

    Unhappy root directory

    why do i always need to write"su"then my password to extract or copy any file in fedora 11.
    pls tell me how to configure so that i always be in my root directory.

  2. #2
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Posts
    1,229
    why do i always need to write"su"then my password to extract or copy any file in fedora 11.
    su and su - are commands that brings you to user root and systems root directory respectively. This allows you to do tasks that are reserved for sys admins or "super users".


    pls tell me how to configure so that i always be in my root directory.
    You can try to add your user name in /etc/sudoers.

    I use nano to edit so...

    su -
    password
    nano /etc/sudoers
    add your username name right after the root. Example below...

    Code:
    ##	user    MACHINE=COMMANDS
    ##
    ## The COMMANDS section may have other options added to it.
    ##
    ## Allow root to run any commands anywhere
    root    ALL=(ALL)	ALL
    user   ALL=(ALL)	ALL
    ## Allows members of the 'sys' group to run networking, software,
    ## service management apps and more.
    # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LO$
    After which you can do commands reserved for super user using the sudo.

    Good luck!
    nujinini
    Linux User #489667

  3. #3
    Just Joined!
    Join Date
    Jul 2010
    Posts
    3
    Quote Originally Posted by nujinini View Post
    su and su - are commands that brings you to user root and systems root directory respectively. This allows you to do tasks that are reserved for sys admins or "super users".




    You can try to add your user name in /etc/sudoers.

    I use nano to edit so...

    su -
    password
    nano /etc/sudoers
    add your username name right after the root. Example below...

    Code:
    ##	user    MACHINE=COMMANDS
    ##
    ## The COMMANDS section may have other options added to it.
    ##
    ## Allow root to run any commands anywhere
    root    ALL=(ALL)	ALL
    user   ALL=(ALL)	ALL
    ## Allows members of the 'sys' group to run networking, software,
    ## service management apps and more.
    # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LO$
    After which you can do commands reserved for super user using the sudo.

    Good luck!
    ThanXxxxxx nujinini...........

  4. #4
    Just Joined!
    Join Date
    Jul 2010
    Posts
    3
    now i m getting another problem--
    while installing the automake-1.10.2
    i am getting the error message as autoconf 2.60 or better is required
    and check the path.......
    i then installed autoconf 2.60 and 2.64 but it didnt worked out same error is coming again.

    how could i overcome this

Posting Permissions

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