首页
关于
标签合集
友情链接
Search
1
一些简单方面的Linux生产随机密码shell
500 阅读
2
Ubuntu系统开启root登陆权限
488 阅读
3
linux下502自动重启脚本
457 阅读
4
美超微主板IPMI使用教程
438 阅读
5
Centos6升级e2fsprogs
342 阅读
OS
促销资讯
管理系统
网站运维
网文资讯
登录
Search
标签搜索
网站架构
linux
网站运营
centos
mysql
google
nginx
ssh
apache
服务器
kloxo
vps
架构分析
PHP
特价VPS
xen
shell
数据库
lamp
vpn
装逼爱好者
累计撰写
163
篇文章
累计收到
20
条评论
首页
栏目
OS
促销资讯
管理系统
网站运维
网文资讯
页面
关于
标签合集
友情链接
搜索到
1
篇与
的结果
2011-11-30
Linux下用curlftpfs挂载FTP服务器 [CentOS]
A、安装curlftpfsA.1、安装DAG repositoryFedora可以直接yum install curlftpfs,CentOS不行,得用DAG repository,所以得先安装DAG repository。rpm -Uhv http://apt.sw.be/RedHat/el5/en/x86_64/rpmforge/RPMS//rpmforge-release-0.3.6-1.el5.rf.x86_64.rpmA.2、安装 curlftpfsyum install curlftpfsB、挂载FTP服务器B.1、用curlftpfs命令挂载curlftpfs -o codepage=utf8 ftp://username:password@192.168.192.168 /ftpcodepage: 编码username: FTP用户名password: FTP密码 192.168.1.111: FTP地址 /ftp: 准备挂载到的路径B.2、卸载挂载fusermount -u /ftp或umount /ftpB.3、开放权限这样其它用户也能读写了,uid和gid改成你自己的idsudo curlftpfs –o rw,allow_other,uid=0,gid=0 ftp:// username: password @192.168.1.111 /ftpB.4、开机自动挂载 echo "curlftpfs#username:password@192.168.1.111 /ftp fuse allow_other,uid=0,gid=0 0 0" >> /etc/fstab
2011年11月30日
90 阅读
0 评论
0 点赞