- 论坛徽章:
- 1
|
下面我们来开始配置启动脚本和设备加载文件。
以下内容,我们使用 vim 编辑器来进行编写(vim 不会使用的请 google 或者在本论坛内进行搜索。)
文件 /etc/sysconfig/clock- # Begin /etc/sysconfig/clock
- UTC=0
- # End /etc/sysconfig/clock
复制代码 文件 /etc/sysconfig/console
这个文件我没有修改,甚至这个文件我都没有建立,因为我们的系统就是使用的英文的,这是系统的默认设置。
文件 /etc/inputrc- # Modified by Chris Lynn <roryo@roryo.dynup.net>
- # Allow the command prompt to wrap to the next line
- set horizontal-scroll-mode Off
- # Enable 8bit input
- set meta-flag On
- set input-meta On
- # Turns off 8th bit stripping
- set convert-meta Off
- # Keep the 8th bit for display
- set output-meta On
- # none, visible or audible
- set bell-style none
- # All of the following map the escape sequence of the
- # value contained inside the 1st argument to the
- # readline specific functions
- "\eOd": backward-word
- "\eOc": forward-word
- # for linux console
- "\e[1~": beginning-of-line
- "\e[4~": end-of-line
- "\e[5~": beginning-of-history
- "\e[6~": end-of-history
- "\e[3~": delete-char
- "\e[2~": quoted-insert
- # for xterm
- "\eOH": beginning-of-line
- "\eOF": end-of-line
- # for Konsole
- "\e[H": beginning-of-line
- "\e[F": end-of-line
复制代码 文件 /etc/bashrc- # /etc/bashrc
- # System wide functions and aliases
- # Environment stuff goes in /etc/profile
- # by default, we want this to get set.
- # Even for non-interactive, non-login shells.
- if [ "`id -gn`" = "`id -un`" -a `id -u` -gt 99 ]; then
- umask 002
- else
- umask 022
- fi
- # are we an interactive shell?
- if [ "$PS1" ]; then
- case $TERM in
- xterm*)
- if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
- PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
- else
- PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
- fi
- ;;
- screen)
- if [ -e /etc/sysconfig/bash-prompt-screen ]; then
- PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen
- else
- PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\033\\"'
- fi
- ;;
- *)
- [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default
- ;;
- esac
- # Turn on checkwinsize
- shopt -s checkwinsize
- [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
- fi
- if ! shopt -q login_shell ; then # We're not a login shell
- for i in /etc/profile.d/*.sh; do
- if [ -r "$i" ]; then
- . $i
- fi
- done
- unset i
- fi
- # vim:ts=4:sw=4
复制代码 文件 /root/.bashrc- # .bashrc
- # User specific aliases and functions
- # Source global definitions
- if [ -f /etc/bashrc ]; then
- . /etc/bashrc
- fi
复制代码 文件 /etc/.bash_profile- # .bash_profile
- # Get the aliases and functions
- if [ -f ~/.bashrc ]; then
- . ~/.bashrc
- fi
- # User specific environment and startup programs
- PATH=$PATH:$HOME/bin
- export PATH
- unset USERNAME
复制代码 文件 /etc/sysconfig/network文件 /etc/hosts- # Do not remove the following line, or various programs
- # that require network functionality will fail.
- 127.0.0.1 localhost.localdomain localhost
复制代码 创建 cd-rom ( dvd-rom ) 的自动挂载连接
文件 /etc/udev/rules.d/82-cdrom.rules- # Custom CD-ROM symlinks
- SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", ENV{ID_PATH}=="pci-0000:00:07.1-ide-0:1", SYMLINK+="cdrom"
- SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", ENV{ID_PATH}=="pci-0000:00:07.1-ide-1:1", SYMLINK+="cdrom1 dvd"
复制代码 创建随机设备符号连接规则文件。
文件 /etc/udev/rules.d/83-duplicate_devs.rules- KERNEL=="video*", SYSFS{idProduct}=="1910", SYSFS{idVendor}=="0d81", SYMLINK+="webcam"
- KERNEL=="video*", SYSFS{device}=="0x036f", SYSFS{vendor}=="0x109e", SYMLINK+="tvtuner"
复制代码 创建网络设备符号连接规则文件
文件 /etc/udev/rules.d/26-network.rules- ACTION=="add", SUBSYSTEM=="net", SYSFS{address}=="00:e0:4c:12:34:56", NAME="realtek"
- ACTION=="add", SUBSYSTEM=="net", SYSFS{address}=="00:a0:c9:78:9a:bc", NAME="intel"
复制代码 注意:这里面的 00:e0:4c:12:34:56 是网卡的 MAC 值,可以通过 grep -H . /sys/class/net/*/address 来获得。
创建网络接口配置文件 /etc/sysconfig/network-devices/ifconfig.eth0/ipv4- ONBOOT=yes SERVICE=ipv4-static IP=192.168.1.1 GATEWAY=192.168.1.2 PREFIX=24 BROADCAST=192.168.1.255
复制代码 创建网络接口DNS域名解析文件 /etc/resolv.conf- domain {<域名>} nameserver <主域名服务器IP地址>
- nameserver <副域名服务器IP地址>
复制代码 配置设备自动挂载文件 /etc/fstab- /dev/hda1 /boot ext3 defaults 1 1
- /dev/hda2 swap swap pri=1 0 0
- /dev/hda3 / ext3 defaults 1 1
- proc /proc proc defaults 0 0
- sysfs /sys sysfs defaults 0 0
- devpts /dev/pts devpts gid=4,mode=620 0 0
- shm /dev/shm tmpfs defaults 0 0
复制代码 创建 /boot 和 /swap 目录,以便我们的系统启动时进行挂载。
|
|