linux安裝完後的操作!

tonykorn97發表於2006-07-03

1,開啟named服務開啟上網功能!開啟firefox下載外掛!

2,載入windows下的分割槽。

[tonykorn97@localhost ~]$ su - root
口令:
[root@localhost ~]# cd /mnt
[root@localhost mnt]# mkdir c
[root@localhost mnt]# mkdir d
[root@localhost mnt]# mkdir e
[root@localhost mnt]# mkdir f
[root@localhost mnt]# mount /dev/hda1 /mnt/c
mount: unknown filesystem type 'ntfs'
[root@localhost mnt]# mount /dev/hda5 /mnt/d
mount: unknown filesystem type 'ntfs'
[root@localhost mnt]# mount /dev/hda6 /mnt/e
[root@localhost mnt]# mount /dev/hda7 /mnt/f

修改/etc/fstab檔案增加下面兩行:

/dev/hda6 /mnt/e auto defaults 0 0
/dev/hda7 /mnt/f auto defaults 0 0

這樣的話系統啟動時會自動載入E盤和F盤。但是這樣的話載入後不能顯示中文,修改後的如下:

/dev/hda6 /mnt/e vfat rw,exec,umask=0,iocharset=gb2312 0 0
/dev/hda7 /mnt/f vfat rw,exec,umask=0,iocharset=gb2312 0 0

3.開啟ftp服務

修改/etc/vsftpd/vsftpd.conf設定ftp伺服器屬性.

修改/etc/ vsftpd.ftpusers和/etc/vsftpd.user_list允許用root使用者登入.

在/etc/rc.d/rc5.d下輸入ln -s ../init.d/vsftpd S88vsftpd建立vsftpd的軟連線,這樣啟動系統 後自動啟動vsftp服務.

待續:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-245338/,如需轉載,請註明出處,否則將追究法律責任。

相關文章