2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ArchLinuxでNTFSの読み書きを行う

Last updated at Posted at 2020-01-20

パッケージ入れる

sudo pacman -S ntfs-3g

fstab書く

typeのところにntfs-3gと書く。
これは読み書きを行うため。

optionの最後にuuid=1000と書く。
これはゴミ箱を使うため。

こうなった

UUIDなどは環境依存です。

# Static information about the filesystems.
# See fstab(5) for details.

# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sdb5
UUID=08dd01ce-222f-4fa7-b4f2-338b38380b6c	/         	ext4      	rw,relatime	0 1

# /dev/sdb6
UUID=1b311a66-9ece-4245-95b5-e133881454a4	none      	swap      	defaults  	0 0

# Swapfile
/swapfile                               	none      	swap      	defaults  	0 0

# UUID=1ED82F72D82F477D /mnt/Windows10 ntfs-3g nosuid,nodev,nofail,x-gvfs-show 0 0
# UUID=01D4C6937BFB5CB0 /mnt/HDD-1 ntfs-3g nosuid,nodev,nofail,x-gvfs-show 0 0


UUID=1ED82F72D82F477D /mnt/Windows10 ntfs-3g nosuid,nodev,nofail,x-gvfs-show,uid=1000 0 0
UUID=01D4C6937BFB5CB0 /mnt/HDD-1 ntfs-3g nosuid,nodev,nofail,x-gvfs-show,uid=1000 0 0
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?