NTFS 마운트하기
[root@plus-pogo dev]# pacman -S ntfs-3g
resolving dependencies...
looking for inter-conflicts...
Packages (1): ntfs-3g-2013.1.13-4
Total Download Size: 0.43 MiB
Total Installed Size: 1.47 MiB
Net Upgrade Size: 0.16 MiB
:: Proceed with installation? [Y/n] y
:: Retrieving packages ...
ntfs-3g-2013.1.13-4-arm 445.1 KiB 246K/s 00:02 [######################] 100%
(1/1) checking keys in keyring [######################] 100%
(1/1) checking package integrity [######################] 100%
(1/1) loading package files [######################] 100%
(1/1) checking for file conflicts [######################] 100%
(1/1) checking available disk space [######################] 100%
(1/1) upgrading ntfs-3g [######################] 100%
8G짜리 USB 메모리를 Windows 7 에서 NTFS로 포맷하고
포고에서 꽂으니 아래처럼 메세지를 보여준다..
그러나... 다시 윈도우에서 인식 못하는 경우가 종종 발생한다.. ㅜㅜ
[root@plus-pogo mnt]# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs/
The disk contains an unclean file system (0, 0).
The file system wasn't safely closed on Windows. Fixing.
또는, 간단히
[root@plus-pogo mnt]# ntfs-3g /dev/sdb1 /mnt/ntfs/
으로 마운트시킨다.
테스트 결과 :
윈도우에서 스로리지를 분리할 경우 꼭 "하드웨어 안전하게 제거 및 미디어 꺼내기" 를 통해 스토리지를 분리해주어야 포고와 윈도우에서 정상적으로 사용가능하다.
참고 사이트 : https://wiki.archlinux.org/index.php/NTFS-3G#Installation
참고 :
스토리지 연결후 확인 방법
[root@plus-pogo mnt]# fdisk -l
Disk /dev/sda: 15.8 GB, 15805186048 bytes, 30869504 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x283274c5
Device Boot Start End Blocks Id System
/dev/sda1 63 30860864 15430401 83 Linux
Disk /dev/sdb: 8019 MB, 8019509248 bytes, 15663104 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x22a437ac
Device Boot Start End Blocks Id System
/dev/sdb1 * 63 15647309 7823623+ 7 HPFS/NTFS/exFAT
[root@plus-pogo mnt]#
마운트 후에
[root@plus-pogo mnt]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 15G 1.4G 13G 10% /
devtmpfs 60M 0 60M 0% /dev
tmpfs 61M 0 61M 0% /dev/shm
tmpfs 61M 284K 60M 1% /run
tmpfs 61M 0 61M 0% /sys/fs/cgroup
tmpfs 61M 0 61M 0% /tmp
/dev/sdb1 7.5G 63M 7.5G 1% /mnt/ntfs
[root@plus-pogo mnt]#