linux

自己电脑配置不高,但是还是安装了VM5.5,并在虚拟机里安装了redhatel4,很幸运的是一次性安装成功了,安装的时候一定要记住系统用户和密码。

因为linux一般是作为服务器存在的,所以安装的时候很多和桌面相关的应该最好不要安装,当然你的电脑配置够高也可以选择安装。我只是安装了经常需要使用的vsftp工具。

安装之后可以进行一些简单的验证,比如ifconfig查看ip,和windows的ipconfig有点相似。一般地,虚拟机和本地的ip是处于同一网段中的,我的是192.168.202.128(linux)

安装了系统之后就需要验证:

1》确认是否安装了ftp服务器,

[root@blueblue]#rpm-qa|grepvsftp

vsftpd-2.0.7。。。。。

2》查看装了以后就要启动ftp服务,使用命令servicevsftpdstart

[root@blueblue]#servicevsftpdstart

为vsftpd启动vsftpd:

3》默认是允许匿名登录的,如果我们不想使用匿名登录,修改配置文件,

配置文件在/etc/vsftpd下的vsftpd.conf,使用命令vivsftpd.conf

[root@bluevsftpd]#cd/etc/vsftpd/

[root@bluevsftpd]#ls

ftpusersuser_listvsftpd.confvsftpd_conf_migrate.sh

[root@bluevsftpd]#vivsftpd.conf

#AllowanonymousFTP?(Beware-allowedbydefaultifyoucommentthisout).

#anonymous_enable=YES

#

需要说明的是,ftpusersuser_list这些个文件可能在etc目录下,根据版本不同来定;

4》指定用户登录,例如以root用户登录

[root@bluevsftpd]#ls

ftpusersuser_listvsftpd.confvsftpd_conf_migrate.sh

[root@bluevsftpd]#viftpusers在root前加#注释掉

[root@bluevsftpd]#viuser_list在root前加#注释掉

5》最后在windows下使用ftp命令使用root输入密码即可登录ftp服务器。

MicrosoftWindowsXP[版本5.1.2600]

(C)版权所有1985-2001MicrosoftCorp.

C:\DocumentsandSettings\Administrator>ftp

ftp>open192.168.202.128

Connectedto192.168.202.128.

220(vsFTPd2.0.1)

User(192.168.202.128:(none)):root

331Pleasespecifythepassword.

Password:

230Loginsuccessful.

ftp>ll

Invalidcommand.

ftp>ls

200PORTcommandsuccessful.ConsiderusingPASV.

150Herecomesthedirectorylisting.

Desktop

anaconda-ks.cfg

install.log

install.log.syslog

226DirectorysendOK.

ftp:收到59字节,用时0.00Seconds59000.00Kbytes/sec.

ftp>cdDesktop

250Directorysuccessfullychanged.

ftp>ll

Invalidcommand.

ftp>ls

200PORTcommandsuccessful.ConsiderusingPASV.

150Herecomesthedirectorylisting.

226DirectorysendOK.

ftp>cd..

250Directorysuccessfullychanged.

ftp>ll

Invalidcommand.

ftp>ls

200PORTcommandsuccessful.ConsiderusingPASV.

150Herecomesthedirectorylisting.

Desktop

anaconda-ks.cfg

install.log

install.log.syslog

226DirectorysendOK.

ftp:收到59字节,用时0.01Seconds3.93Kbytes/sec.

ftp>bin

200SwitchingtoBinarymode.

ftp>putd:\db.sql

200PORTcommandsuccessful.ConsiderusingPASV.

150Oktosenddata.

226FilereceiveOK.

ftp:发送1270字节,用时0.00Seconds1270000.00Kbytes/sec.

ftp>

相关推荐