FreeBSD 5.4Release X Windows 설치 노트(Freebsd5.4R+Gnome 2.10.0)

기계 설정:
핵심:P4\1.7G
메인보드:MSI 845
메모리:김 스 턴 256*2
하드디스크:마 이 타 쿠 40G
그래 픽 카드:ATI Radeon 7500
현판:Samsung SyncMaster 753 DFX
사 운 드 카드:크 리 에이 티 브 사 운 드 블 래 스 터 라 이브!
1.FreeBSD 5.4Release 설치
4http://www.freebsd.org/releases/5.4R/announce.htmlFTP 서버 를 선택 하여 다운로드 한 다음 CD 로 새 깁 니 다.다음은 CD 에서 설치 합 니 다.제 몇 가지 옵션: 
1.패 키 지 를 선택 할 때 설치 최소 화 를 선택 합 니 다.
2.ports 에 설치 할 때 net->cvsup 을 선택 하여 ports 를 업데이트 할 수 있 습 니 다. 
다른 것 은 모두 기본 으로 설치 되 어 있 습 니 다.구체 적 으로 참고 할 수 있 습 니 다http://www.freebsd.org.cn/snap/doc/zh_CN.GB2312/books/handbook/install-start.html설치 가 끝 난 후에 기 계 를 다시 시작 합 니 다.
2.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.시디롬 을 시디롬 에 넣 고 ports 와 src 를 설치 합 니 다. 
#/stand/sysinstall
그리고 Configure-->Distributions 를 선택 한 다음 스페이스 바 를 이용 하여 src 와 ports 두 가 지 를 선택 하고 인 스타 그램 을 누 르 고 설치 가 완료 되면 기 계 를 다시 시작 합 니 다. 
4.ftp 사용 하기(뒤에 파일 업로드 용) 
#cd /etc
# ee inetd.conf
ftp     stream  tcp     nowait  root    /usr/libexec/ftpd       ftpd-l 한 줄 의\#번 호 를 제거 합 니 다.
저장 후 종료 합 니 다. 
3.ports 업그레이드 
#cp /usr/share/examples/cvsup/ports-supfile /etc/funpower
#cd /etc
# ee funpower
다음 줄 수정:
default host=cvsup2.FreeBSDChina.org
다음 명령 을 실행 합 니 다:
cvsup -g -L 2  funpower 
설 치 를 마 친 후 기 계 를 다시 시작 하 다. 
4.커 널 파일 설정 
커 널 을 설정 할 때 모든 설명 은 이것 을 참고 할 수 있 습 니 다.4.567915.설정 에 사 운 드 카드 에 대한 지원 을 추가 하려 면 사 운 드 카드 를 어떻게 설치 하 는 지 참고 할 수 있 습 니 다.4.567915.
다음은 구체 적 인 조작 이다. 
#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

좋은 웹페이지 즐겨찾기