Ubuntu mounting a hard disk

Linux/Ubuntu 2013. 4. 16. 15:18 Posted by 생각하는로뎅
반응형
mount

1. fdisk /dev/sdb

SATA : sdb (sd* )

SCSI : hdb (hd*)


2. p (enter)

3. n (enter)

이미 등록되어 있다면 d 로 삭제 후, 다시 시도 2번 시도

4. p

5. 1 (default)

6. (enter) default value [ first sector ]

7. (enter) default value [ last sector ]

8. mkdir /mnt/d

9. mount /dev/sdb /mnt/d


unmount

umount /mnt/d


Error:

mount: you must specify the filesystem type


필자의 경우

mount /dev/sdb1 /mnt/d 로, sdb1로 하니까 잘 되었음 안되면 아래사항 참고


Solution:

You need to add the -t FILESYSTEMTYPE argument to the command, replacing FILESYSTEMTYPE with your filesystem type. This specifies the filesystem type of the filesystem to be mounted. In your case, this would be /dev/sdb2. Some common, valid filesystem types are:


auto - this is a special one. It will try to guess the fs type when you use this.

ext4 - this is probably the most common Linux fs type of the last few years

ext3 - this is the most common Linux fs type from a couple years back

ntfs - this is the most common Windows fs type or larger external hard drives

vfat - this is the most common fs type used for smaller external hard drives


반응형

'Linux > Ubuntu' 카테고리의 다른 글

553 Could not create file  (0) 2017.04.25
Ubuntu 설치 후, windows xp 멀티 부팅  (0) 2013.06.26
Ubuntu ftp setting  (0) 2013.04.13
Ubuntu firewall setting  (0) 2013.04.13
Ubuntu telnet  (0) 2013.04.13