查看完整版本: 如何在 AWS 的EC2上掛載 mount EBS volumes


camry 2018-8-7 10:39

如何在 AWS 的EC2上掛載 mount EBS volumes

Amazon EC2 可以很方便地叫幾台電腦出來,然而每一台關機後資料是不會留下來的,在使用 EBS Volumes 服務前,需要留意自己開的機器所在的區域,因為增加的硬碟要跟機器在同一區才行。<br><br>Step1 - 建立EBS Volume<br>Step2 - 選擇Attach Volume<br>Step3- 選擇要掛載到哪個Instances<br>NOTE: 即使你在這邊輸入的是/dev/sdf,有些新的Linux核心會將以不同名子來呈現<br><br>Step4 - 確認xvdb存在與否(可能會因不同kernel而異)<br># lsblk<br># ls -l /dev/xvd*<br><br>Step 5- 使用fdisk 來建 partition table(全部分配)<br><br># fdisk /dev/xvdb<br><br>-中途對話式輸入-:<br><br>&nbsp; &nbsp; Command (m for help): <font color="Red">n</font><br>&nbsp; &nbsp; Command action: <font color="Red">p</font><br>&nbsp; &nbsp; Partition number(1-4): <font color="Red">1</font><br>&nbsp; &nbsp; First cylinder ..略...): <font color="Red">[Enter]</font><br>&nbsp; &nbsp; Last cylinder..略...): <font color="Red">[Enter]</font><br>&nbsp; &nbsp; Command(m for help): <font color="Red">w</font><br><br>Step 6 -格式化 <br><br># mkfs.ext4 /dev/xvdb<br><br>Step 7 - 掛載到 /data<br><br># mkdir /data<br># mount /dev/xvdb /data<br><br>最後check<br># df -h<br><br>Step 8 - 重開機後自動掛載<br><br># vi /etc/fstab<br>加上這行在檔案最後面<br>[quote]<br>/dev/xvdb&nbsp; &nbsp;&nbsp; /data&nbsp; &nbsp;ext4&nbsp; &nbsp; defaults,nofail&nbsp; &nbsp;&nbsp;&nbsp;<br>[/quote]<br><br>這樣就可以囉!
頁: [1]
查看完整版本: 如何在 AWS 的EC2上掛載 mount EBS volumes