Difference between revisions of "Funtoo Linux First Steps"
From Funtoo Linux
(Created page with "After booting into a new Funtoo Linux installation, you are ready to explore the full capabilities of your system. But first, you may want to perform these common steps: == I...") |
|||
| Line 20: | Line 20: | ||
After logging in again, or typing <tt>env-update; source /etc/profile</tt> in the current shell, the new system editor will now be active. | After logging in again, or typing <tt>env-update; source /etc/profile</tt> in the current shell, the new system editor will now be active. | ||
| + | |||
| + | == /etc/rc.conf == | ||
| + | |||
| + | <tt>/etc/rc.conf</tt> contains system settings related to the system initialization scripts. It is a good idea to set <tt>rc_logger</tt> to <tt>YES</tt>. This will instruct OpenRC to launch a logging daemon to log the entire rc process to <tt>/var/log/rc.log</tt>. | ||
Revision as of 03:13, 10 February 2012
After booting into a new Funtoo Linux installation, you are ready to explore the full capabilities of your system. But first, you may want to perform these common steps:
Installing an Editor
By default, Funtoo Linux has the nano and vi editors installed. nano is the default editor.
If you have a favorite editor, you can install it now:
# emerge vim
Default editor
Here is how to change the default system text editor:
# echo EDITOR=/usr/bin/vim > /etc/env.d/99editor
After logging in again, or typing env-update; source /etc/profile in the current shell, the new system editor will now be active.
/etc/rc.conf
/etc/rc.conf contains system settings related to the system initialization scripts. It is a good idea to set rc_logger to YES. This will instruct OpenRC to launch a logging daemon to log the entire rc process to /var/log/rc.log.