红联Linux门户
Linux帮助

在Ubuntu 14.04 LTS上挂载天翼云

发布时间:2015-11-07 15:55:05来源:linux网站作者:flm2003

安装所需要的包

使用root用户执行以下命令或者可以使用sudo:

apt-get install build-essential libfuse-dev libcurl4-openssl-dev libxml2-dev mime-support automake libtool


更新系统

apt-get update


安装 S3FS

下载和解压S3FS 到一个临时文件夹. 请确保使用root用户执行以下命令!

cd /tmp
wget https://github.com/s3fs-fuse/s3fs-fuse/zip/master
unzip s3fs-fuse-master.zip
cd s3fs-fuse-master/
./autogen.sh
./configure --prefix=/usr
make
make install


挂载!

首先我们需要找到天翼云的认证信息,以下面的格式将认证信息 (AWS Access Key and Secret Access Key)放置在/etc/passwd-s3fs文件中:

AWS_ACCESS_KEY:SECRET_ACCESS_KEY


设置访问权限:

chmod 640 /etc/passwd-s3fs


挂载bucket到系统(注:这里bucket的名字为bucket-dingjia,请确保已经在根目录创建ctyun的文件夹):

s3fs -o url=http://oos.ctyunapi.cn bucket-dingjia /ctyun


到此为止我们可以在 Ubuntu 14.04 上轻松的上传和下载天翼云上的文件了。


阿里云云服务器Linux系统挂载数据盘图文教程:http://www.linuxdiyf.com/linux/14984.html

阿里云服务器ECS Ubuntu系统安装配置:http://www.linuxdiyf.com/linux/13662.html

Ubuntu系统中登陆阿里云服务器的方法:http://www.linuxdiyf.com/linux/13369.html