Linux下的vsftp服务
Linux版本:fedora 11 内核2.6
1.确定安装vsftpd。
# su
# yum install vsftpd
2.在防火墙配置中要允许ftp和ssh服务。
"System"—>"Administration"—>“Firewall”,选择ftp和ssh服务
3.启动vsftp(管理员模式下)
方式一:桌面"System"—>"Administration"—>"Services",在打开的窗口左侧选择“vsftpd”,然后点击工具栏上到“Start”即可,如果想开机就启动vsftp,则点击“Enable”即可。
方式二:在终端下输入:
# /etc/init.d/vsftpd start(其他选项有stop,restart,condrestart,status)
或者# cd /etc/init.d
# vsftpd & (此处不能用vsftpd start,不知其解,望高人指点?)
服务开启之后可直接在本地终端下运行命令:
$ grep vsftpd
或者 $ ssh 本地用户名@IP地址
来测试启动是否成功。
4.关闭vsftp
一种方式是
桌面"System"—>"Administration"—>"Services",在打开的窗口左
相关文档:
1. HCI层协议概述:
HCI提供一套统一的方法来访问Bluetooth底层。如图所示:
从图上可以看出,Host Controller Interface(HCI) 就是用来沟通Host和Module。Host通常就是PC, Module则是以各种物理连接形式(USB,serial,pc-card等)连接到PC上的bluetooth Dongle。
在Host这一端:application,SDP,L2cap等协议 ......
在移动硬盘与硬盘之间、本地与网络(FTP,SSH等)之间备份数据、同步文件夹的需求对于Linux用户是很常见的。在Windows中,有Total Commander等工具同步文件夹的功能很强大,那么Linux中有哪些同步文件夹的软件呢?
rsync和grsync
grsync的截图
rsync是Linux中重要的文件同步工具,支持本地和远程的文件同步工具,而grs ......
[root@proxyo ~]#
而我要将中间的proxyo改成search
1. vi /etc/hosts
[root@proxyo ~]# cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 ......
linux的chmod与chown命令详解
linux的chmod命令使用详解
使用方式 : chmod [-cfvR] [--help] [--version] mode file...
说明 : Linux/Unix 的档案存取权限分为三级 : 档案拥有者、群组、其他。利用 chmod 可以藉以控制档案如何被他人所存取。
mode : 权限设定字串,格式如下 : [ugoa...][[+-=][rw ......
配置过程:
1. 运行VNC Server.
[root@localhost ~]#vncserver
看到成功提示信息:
You will require a password to access your desktops.
Password: ----说明:为安全起见,当第1次启动VNC Server时,会要求设置远程连接时的密码。
Verify:
New ‘X&r ......