I don't want to type sudo and my password everytime.I think it is really annoying.Is there any command or option which will consider you root user when you open terminal,everytime When you open terminal.
2 Answers
I am really against root being used as a default login. This is a really really really BAD idea.
However, in cases where I'm working on something that requires a root terminal session with lots of sudo commands again and again it can get tiring to type sudo.
You can create a root session using the sudo -i command and enter your password once. When you are finished with whatever operations require root you can then exit and get back to a user level account.
mcgarrah@localhost:~$ sudo -i
root@localhost:~# id
uid=0(root) gid=0(root) groups=0(root)
root@localhost:~#
Again, running as root at all times is a really bad idea. Root allows for more access than a standard user needs and many of the features that make Linux more secure are no longer working for you. One example is running a web browser as root is insane.
- 303
Type:
sudo visudo
Go to the end of the file and type:
<username> ALL=NOPASSWD: ALL
Press Ctrl+X to exit, and press Y to save the changes.
Now open System Settings->Keyboard in that go to the Shortcut tab.
Launch terminal, press Space and Backspace; it will disable it.
Now go to Custom Shortcuts and click the plus (+) button at the bottom.
Give the name as terminal and the command as sudo gnome-terminal, then click Apply.
Then just go to some other location and come back to Custom Shortcuts.
Click terminal, press Space and now press Ctrl+Alt+T.
Close the window.
That's it!
Now whenever you open the terminal through Ctrl+Alt+T, it will open as root.
Enjoy!
- 14,911
- 101