麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 系統 > FreeBSD > 正文

FreeBSD5.4Release X Windows 安裝筆記 (Freebsd5.4R+Gnome2.10.0)

2020-10-28 18:52:00
字體:
來源:轉載
供稿:網友

機器配置:

核心:P4/1.7G

主板:MSI845

內存:金士頓256*2

硬盤:邁拓40G

顯卡:ATI Radeon 7500

顯板:Samsung SyncMaster 753DFX

聲卡:Creative Sound Blaster Live

一、安裝FreeBSD5.4Release

http://www.freebsd.org/releases/5.4R/announce.html選擇一個FTP服務器下載,然后刻成光盤。接下來從光盤安裝,我的幾點選項: 

1、選擇軟件包時選擇最小化安裝。

2、安裝到ports時選擇net-->cvsup,以便更新ports 

其它的都默認安裝,具體可參考:http://www.freebsd.org.cn/snap/doc/zh_CN.GB2312/books/handbook/install-start.html,安裝完后重啟機器。

二、配置FreeBSD 

1、配置/etc/rc.conf,我的rc.conf: 

hostname="gjf.jscpu.com"

defaultrouter="192.168.20.254"

ifconfig_rl0="inet 192.168.121.250 netmask 255.255.255.0"

ifconfig_rl1="inet 192.168.20.1 netmask 255.255.255.0"

inetd_enable="YES"

linux_enable="YES"

moused_enable="YES"

#sshd_enable="YES"

#usbd_enable="YES" 

2、配置/etc/resolv.conf,我的resolv.conf: 

domain  jscpu.com

nameserver      221.228.255.1

nameserver      218.2.135.1 

完成后重啟機器。 

3、將光盤放入光驅中,安裝portssrc 

#/stand/sysinstall

然后選擇Configure-->Distributions,然后利用空格鍵選擇srcports兩項,點install,安裝完成后重啟機器。 

4、啟用ftp(后面上傳文件用) 

#cd /etc

# ee inetd.conf

ftp     stream  tcp     nowait  root    /usr/libexec/ftpd       ftpd -l一行的#號去掉。

保存后退出。 

、升級ports 

#cp /usr/share/examples/cvsup/ports-supfile /etc/funpower

#cd /etc

# ee funpower

修改下面一行:

default host=cvsup2.FreeBSDChina.org

然后運行如下命令:

cvsup -g -L 2  funpower 

完成安裝后重啟機器。 

、配置內核文件 

配置內核時每項說明可以參考這:http://people.freebsdchina.org/kinki/9.htm,配置中要加入對聲卡的支持,關于如何安裝聲卡可以參考這:http://www.freebsd.org.cn/snap/doc/zh_CN.GB2312/books/handbook/sound-setup.html

下面是具體的操作: 

#cd /sys/i386/conf

#cp GENERIC funpower

#ee funpower 

我的內核文件如下: 

#

# GENERIC -- Generic kernel configuration file for FreeBSD/i386

#

# For more information on this file, please read the handbook section on

# Kernel Configuration Files:

#

#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html

#

# The handbook is also available locally in /usr/share/doc/handbook

# if you've installed the doc distribution, otherwise always see the

# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the

# latest information.

#

# An exhaustive list of options and more detailed explanations of the

# device lines is also present in the ../../conf/NOTES and NOTES files.

# If you are in doubt as to the purpose or necessity of a line, check first

# in NOTES.

#

# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $

machine      i386

cpu             I686_CPU

ident           funpower

# To statically compile in device wiring instead of /boot/device.hints

#hints                  "GENERIC.hints"                 # Default places to look for devices.

options     SCHED_4BSD             # 4BSD scheduler

options     INET                            # InterNETworking

options     INET6                          # IPv6 communications protocols

options     FFS                     # Berkeley Fast Filesystem

options     SOFTUPDATES                  # Enable FFS soft updates support

options     UFS_ACL                    # Support for access control lists

options     UFS_DIRHASH          # Improve performance on big directories

options     MD_ROOT                          # MD is a potential root device

options     NFSCLIENT                # Network Filesystem Client

options     NFSSERVER               # Network Filesystem Server

options     NFS_ROOT                 # NFS usable as /, requires NFSCLIENT

options     MSDOSFS                            # MSDOS Filesystem

options     CD9660                        # ISO 9660 Filesystem

options     PROCFS                      # Process filesystem (requires PSEUDOFS)

options     PSEUDOFS                 # Pseudo-filesystem framework

options     GEOM_GPT               # GUID Partition Tables.

options     COMPAT_43              # Compatible with BSD 4.3 [KEEP THIS!]

options     COMPAT_FREEBSD4                 # Compatible with FreeBSD4

options     SCSI_DELAY=15000  # Delay (in ms) before probing SCSI

options     KTRACE                     # ktrace(1) support

options     SYSVSHM                            # SYSV-style shared memory

options     SYSVMSG                   #

# GENERIC -- Generic kernel configuration file for FreeBSD/i386

#

# For more information on this file, please read the handbook section on

# Kernel Configuration Files:

#

#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html

#

# The handbook is also available locally in /usr/share/doc/handbook

# if you've installed the doc distribution, otherwise always see the

# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the

# latest information.

#

# An exhaustive list of options and more detailed explanations of the

# device lines is also present in the ../../conf/NOTES and NOTES files.

# If you are in doubt as to the purpose or necessity of a line, check first

# in NOTES.

#

# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $

machine               i386

cpu             I686_CPU

ident           funpower

# To statically compile in device wiring instead of /boot/device.hints

#hints                  "GENERIC.hints"                 # Default places to look for devices.

options     SCHED_4BSD             # 4BSD scheduler

options     INET                            # InterNETworking

options     INET6                          # IPv6 communications protocols

options     FFS                     # Berkeley Fast Filesystem

options     SOFTUPDATES                  # Enable FFS soft updates support

options     UFS_ACL                    # Support for access control lists

options     UFS_DIRHASH                   # SYSV-style message queues

options     SYSVSEM                    # SYSV-style semaphores

options     _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions

options     KBD_INSTALL_CDEV       # install a CDEV entry in /dev

options     AHC_REG_PRETTY_PRINT      # Print register bitfields in debug

                                               # output.  Adds ~128k to driver.

options     AHD_REG_PRETTY_PRINT      # Print register bitfields in debug

                                              # output.  Adds ~215k to driver.

options     ADAPTIVE_GIANT           # Giant mutex is adaptive.

device                  apic                     # I/O APIC

# Bus support.  Do not remove isa, even if you have no isa slots

device                  isa

device                  eisa

device                  pci

# Floppy drives

#device                fdc

# ATA and ATAPI devices

device                  ata

device                  atadisk                 # ATA disk drives

#device                ataraid                 # ATA RAID drives

device                  atapicd                # ATAPI CDROM drives

#device                atapifd                 # ATAPI
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 毛片大全| 国产午夜三级一区二区三桃花影视 | 性欧美日本 | 成人午夜在线观看视频 | 黄色网址你懂的 | 色屁屁xxxxⅹ在线视频 | 免费毛片视频 | 久久久久久久久久久久99 | 日本黄色一级视频 | 久久久久久久久91 | 国产成人自拍视频在线 | av在线一区二区三区 | 亚洲电影在线观看高清免费 | 成人在线高清视频 | 曰韩一级片 | 一级毛片播放 | 日本高清黄色片 | 亚洲aⅴ免费在线观看 | 欧美一级做一a做片性视频 日韩黄色片免费看 | 亚洲综合精品成人 | 久久国精品 | 水多视频在线观看 | 国产一级毛片av | 午色影院| 久草视频2 | 四季久久免费一区二区三区四区 | 久草视频在线看 | 91麻豆精品国产91久久久更新资源速度超快 | 娇妻被各种姿势c到高潮小说 | 国产精品白嫩白嫩大学美女 | 天天草夜夜爽 | 免费放黄网站在线播放 | 免费一级在线观看 | 又黄又爽免费无遮挡在线观看 | 蜜桃免费在线 | 欧美精品1区 | 亚洲一区二区三区日本久久九 | 欧美成人a| 综合日韩欧美 | 日本黄色一级视频 | 国产成人在线网址 |