|
我用arch自带的firefox上linuxsir比在Mandrake下上慢多了(同一时段)。我将ipv6模块目录全部删除后也不见改善。为何会这样?
我是内网用户,rc.conf文件内容如下:
- #
- # /etc/rc.conf - Main Configuration for Arch Linux
- #
- #
- # Localization
- #
- # HARDWARECLOCK: set to "UTC" or "localtime"
- # TIMEZONE: timezones are found in /usr/share/zoneinfo
- # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
- # CONSOLEFONT: fount in /usr/share/kbd/consolefonts (only needed for non-us)
- # USECOLOR: use ANSI color sequences in startup messages
- #
- HARDWARECLOCK="localtime"
- TIMEZONE=Asia/Beijing
- KEYMAP=us
- CONSOLEFONT=
- USEcolor="yes"
- #
- # Networking
- #
- HOSTNAME="myhost"
- #
- # Module to load at boot-up (in this order)
- # (prefix a module with a ! to disable it)
- #
- MODULES=(!usbserial !ide-scsi)
- #
- # Interfaces to start at boot-up (in this order)
- # Declare each interface then list in INTERFACES
- # (prefix an interface in INTERFACES with a ! to disable it)
- #
- # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
- #
- lo="lo 127.0.0.1"
- eth0="eth0 192.168.40.27 netmask 255.255.255.128 broadcast 192.168.0.255"
- INTERFACES=(lo eth0)
- #
- # Routes to start at boot-up (in this order)
- # Declare each route then list in ROUTES
- # (prefix a route in ROUTES with a ! to disable it)
- #
- gateway="default gw 192.168.40.1"
- #ROUTES=(!gateway)
- ROUTES=(gateway)
- #
- # Daemons to start at boot-up (in this order)
- # (prefix a daemon with a ! to disable it)
- #
- DAEMONS=(syslogd klogd !pcmcia network netfs crond)
- # End of file
复制代码
/etc/resolv.conf文件内容如下:
- #
- # /etc/resolv.conf
- #
- #search <yourdomain.tld>
- #nameserver <ip>
- nameserver 202.103.224.68
- nameserver 192.168.0.101
- # End of file
复制代码 |
|