AboutWelcome to Free Software Daily (FSD). FSD is a hub for news and articles by and for the free and open source community. FSD is a community driven site where members of the community submit and vote for the stories that they think are important and interesting to them. Click the "About" link to read more...
If you're like me and work for a company who has many linux admins all logging into servers and then su'ing to root, you may find this tip beneficial. It is simply 3 lines that you add to root's .bash_profile which will keep separate history files for each admin that su's to root and the commands they ran. It will allow you to go back and see what the user did as root.
A new big change is being discussed on the Ayatana mailing list: single click for opening files and folders in Ubuntu (not Kubuntu - which already uses single click for opening files and folders).
By default, the root account password is locked in Ubuntu - Canonical neither supports nor advocates enabling the root account. This means that you cannot login as root directly or use the su command to become the root user. However, since the root account physically exists it is still possible to run programs with root-level privileges.
The openSUSE Build Service generates .ymp files from now on, which can be used with Benjamin Weber’s One Click Install YaST Module.
This module takes care that all required repositories get used for installation and installs a predefined set of packages. You need no root permissions just to browse the content of a .ymp file.
Now you can play multimedia files in your fedora....Just follows the steps ....
Open a terminal and become root using 'su'.
Now type at terminal these commands to make your fedora play multimedia files.
lsof is used to LiSt Open Files, hence the command’s name. It’s a handy tool normally used to list the open files on a system along with the associated processes or users, and can also be used to gather information on your system’s network connections. When run without options, lsof lists all open files along with all of the active processes that have them open.
Once you start installing new GTK themes in Ubuntu, you will notice that applications that run as root, such as the Synaptic Package Manager, look unthemed and ugly. This is because although the root user is hidden in Ubuntu, it is still technically a separate user with separate appearance settings.
This happens lot of times. I login as a normal user and start to edit httpd.conf or lighttpd.conf or named.conf in vim / vi text editor. However, I'm not able to save changes due to permission issue (all config files are owned by root). How do I save file without creating a temporary file (/tmp/httpd.conf) and then move the same (mv /tmp/httpd.conf /etc/httpd) as root using vim / vi itself?