想在 Arch Linux 上 mount …

想在 Arch Linux 上 mount windows 裏面的 D 槽
因為之前用 Ubuntu 的時候 就一直拿 D 槽當作是共用的存檔地方
所以灌其他作業系統的時候也不太需要做啥備份


fstab

如果要讓 Linux 在開機的時候自動 mount D槽

$ sudoedit /etc/fstab

必須在 /etc/fstab 中下寫類似這樣的 rule

# /dev/sda5 (win_D)  
    UUID=01CC0B74E1BC55F0 /win_D ntfs-3g defaults,umask=000  0  2  

UUID

之後使用 $ lsblk -f 這個指令去察看要 mount 的硬碟的 UUID
然後把該 UUID 填寫在 UUID= 的後面
不知道什麼是 UUID 的可參考 通用唯一識別碼 - 維基百科,自由的百科全書

/win_D 是你要把 D 槽 mount 在哪個目錄底下 可以自行修改


ntfs-3g

ntfs-3g 不知道這是什麼的請見 NTFS-3G - 維基百科,自由的百科全書

這裡如果用 ntfs 的話會造成無法寫入和修改權限
所以要用 ntfs-3g
預設應該是沒安裝的
在 Arch Linux 請先

$ sudo pacman -S ntfs-3g

defaults,umask=000 0 2 後面這 3 個部份

請參考

需要其他不同的設定的話可以參考後 自行修改 options


umask000 是因為我這台是個人使用的筆電
為了方便存取 D 槽才這樣設定
因為 mount 起來的 ownergroup 都會是 root
反正只有我一個人用
777 會比較方便 但相對安全性就變低了Orz


Share


Donation

如果覺得這篇文章對你有幫助, 除了留言讓我知道外, 或許也可以考慮請我喝杯咖啡, 不論金額多寡我都會非常感激且能鼓勵我繼續寫出對你有幫助的文章。

If this blog post happens to be helpful to you, besides of leaving a reply, you may consider buy me a cup of coffee to support me. It would help me write more articles helpful to you in the future and I would really appreciate it.


Related Posts