2017年4月1日 星期六

[AWS EC2] 掛載 EBS volumes | ubuntu mount

Source From Here 
Step1 - 建立EBS Volume 
 

Step2 - 選擇Attach Volume 
 

Step3- 選擇要掛載到哪個Instances 
NOTE: 即使你在這邊輸入的是 /dev/sdf,有些新的Linux核心會將以不同名子來呈現; 
以我的為例,我雖然輸入 /dev/sdf 但我系統 (Ubuntu 11.1) 裡面呈現為: /dev/xvdf 
 

Step4 - 確認xvdf存在與否(可能會因不同kernel而異) 
# ls -l /dev/xvdf


Step 5- 使用 fdisk 來建 partition table(全部分配) 
# fdisk /dev/xvdf
-中途對話式輸入-:
Command (m for help): n
Command action: p
Partition number(1-4): 1
First cylinder ..略...): [Enter]
Last cylinder..略...): [Enter]
Command(m for help): w

Step 6 -格式化 
# mkfs.ext3 /dev/xvdf


Step 7 - 掛載到 /data 
# sudo mkdir /data
# sudo mount /dev/xvdf /data


最後check 
# df -h


Supplement 
AWS Essentials - EC2 
Amazon Elastic Computer Cloud (Amazon EC2) provides scalable computing capacity in the Amazon Web Service (AWS) cloud. Using Amazon EC2 eliminate your need to invest in hardware up front, so you can use Amazon EC2 to launch as many or as few virtual servers as you need, configure security and networking, and manage storage. Amazon EC2 enables you to scale up or down to handle changes in requirements or spikes in popularity, reducing your need to forecast traffic.

替 Linux 新增硬碟(磁碟分割、格式化與掛載)

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...