How to Mount USB Disk Drive in UNIX or Linux usb 디스크 드라이브에 탑재하는 방법을 유닉스 또는 리눅스
Most distros (distributions) of Linux include Mandrake 10.1, SuSE 9.x and Fedora Core 3 can now support plug-and-plug detection, discovery and driver installation for portable USB drive or USB disk (and any type of USB-based data storage devices devices such as hard drives, pen drives, USB keys, flash disk, thumb drive, memory key, USB zip drive and memory stick). 대부분의 배포판 (배포본)의 리눅스에는 맨드 레이크 10.1, 수세 9.x와 중절모 코어 3가 지원하는 플러그 -과 - 플러그 감지, 발견과 드라이버를 설치하기 휴대용 usb 드라이브 또는 usb 디스크를 (그리고 어떤 종류의 usb - 기반 데이터 스토리지 장치와 같은 장치 하드 드라이브, 펜 드라이브, 테크놀로지, 플래시 디스크, 엄지 드라이브, 메모리 키, usb 우편 번호 드라이브와 메모리 스틱). Some Linux operating system even can auto-mount the USB drives, especially if you’re using Gnome and KDE. 일부 리눅스 운영 체제도를 자동 - usb 드라이브를 탑재, 특히 그놈과 kde를 사용하는 경우. When you plug-in the USB disk, Linux will pop-up a window showing the content of USB disk just like Microsoft Windows. - usb 디스크에 연결하면, 리눅스는 팝 - usb 디스크의 내용을 표시하는 창이 microsoft windows처럼합니다.
However, if you’re using older version of Linux, or using UNIX operating system, or your Linux distro installation unable to detect and mount the USB storage device automatically, then you will have to manually install and mount the USB drive. 그러나, 이전 버전의 리눅스를 사용하는 경우, 또는를 사용하여 유닉스 운영 체제, 또는 귀하의 리눅스 배포판 설치를 usb 수없습니다 스토리지 장치를 탑재를 감지하고 자동으로 다음을 수동으로 설치하셔야합니다 usb 드라이브를 탑재합니다.
To manually mount a USB disk or USB drive or USB device in Linux or UNIX: usb 디스크 또는 수동으로 탑재하는 usb 드라이브 또는 usb 장치에 리눅 스나 유닉스 :
- Login as root. 루트로 로그인합니다. You can use the su command to switch to root user. 명령을하실 수있습니다 스를 사용하여 루트 사용자로 전환하려면합니다.
- Create a folder /mnt/USB with the command: mkdir /mnt/USB 폴더를 만듭니다 / mnt / usb에 명령 : mkdir / mnt / usb
- Add the following line in the file /etc/fstab (fstab is the file that tells Linux where to mount the various devices, and thus simplying the mount command): 다음과 같은 라인에 추가하여 파일 / 비고 / fstab (fstab은 파일에 대한 단서를 리눅스 다양한 장치를 탑재 어디에 있으며, 따라서이 명령을 마운트 simplying) :
/dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / usb 자동 noauto, 소유자, 담가 0 0
Note: The “auto” on the above line means auto detection of filesystem. 참고 : "자동"에서 위의 라인을 의미합니다 파일 시스템을 자동으로 검색합니다. If your system unable to determine the filesystem type, change it accordingly to the USB drive’s filesystem (eg vfat or ntfs or ext2 or ext3). 를 알 수 없다면 시스템의 파일 시스템 유형에 따라서 usb 드라이브의 파일 시스템을 변경합니다 (예 : vfat이나 ntfs 또는 ext2 또는 ext3).
- Mount the USB storage device with the following command: mount /dev/sda1 usb 저장 장치를 탑재 다음과 같은 명령 : 탑재 / dev/sda1
Without the need modifying fstab (step 3), you can also straight away issue the mount command (step 4) with the following syntax: fstab을 수정이 필요하지 않고 (3 단계), 당신도 바로 문제를 탑재 명령 (4 단계)에 다음과 같은 구문 :
mount /dev/sda1 /mnt/USB 마운트 / dev/sda1 / mnt / usb
If you know the filesystem of the USB drive or the system unable to determine the correct filesystem, the -t option can be used to the filesystem type of the USB device: usb 드라이브의 파일 시스템을 알고있다면이나 시스템의 올바른 파일 시스템을 결정할 수없습니다, - t 옵션을 사용할 수있습니다 형식의 파일 시스템을 usb 장치 :
mount -t vfat /dev/sda1 /mnt/usb (for vFAT filesystem) 마운트 - t vfat / dev/sda1 / mnt / usb (예를 vfat 파일 시스템)
mount -t ntfs /dev/sda1 /mnt/usb (for NTFS filesystem) 마운트 - t ntfs / dev/sda1 / mnt / usb (예를 ntfs 파일 시스템)
Sometimes, the USB drive or USB storage device is detected by the system but been assigned a different device name from sda1. 때로는, usb 드라이브 또는 usb 스토리지 장치가 감지하여 다른 장치의 시스템에서 이름을 할당하지만이 sda1합니다. If so, the correct device name need to be determined by viewing and OS log file. 만일 그렇다면, 올바른 장치 이름을 표시해야합니다 및 운영 체제의 로그 파일에 의해 결정됩니다. Usually the Linux and UNIX boot and log message is stored in /var/log/messages, and you can view the log messages with the following commands: 보통은 리눅스와 유닉스 부팅 및 로그 메시지를 저장 / 변수 / 로그 / 메시지 및 로그 메시지를 볼 수있습니다 다음과 같은 명령 :
tail -f /var/log/messages 꼬리 - f / 변수 / 로그 / 메시지
or 또는
dmesg dmesg
Check for the name of the device that appears after operating system detects the USB devices. 이 장치의 이름을 확인 후 나타나는 usb 장치를 운영 체제를 감지합니다.
After using the USB disk, remember to unmount the USB drive with the following command to avoid any possible loss to the data or changes and risk messing up your partition. 다음을 사용하여 usb 디스크, usb 드라이브를 마운트를 해제 하시겠습니까 잊지 말고 다음과 같은 명령으로 데이터 손실을 피하려면 또는 변경할 수있습니다 및 위험을 엉망으로 만들어 귀하의 파티션을합니다.
umount /mnt/USB umount / mnt / usb
Configure Gnome to automatically detect, install and mount USB drive 그놈을 구성을 자동으로 탐지, 설치 및 usb 드라이브를 탑재
If you’re using Gnome yet unable to automatically detect and mount USB drive for usage, a few packages needed to be install. 그놈 아직 사용하고있는 경우 usb 드라이브를 탑재 수 없다 사용량을 자동으로 감지하고, 몇 패키지를 설치하는 시간이 필요합니다. The packages to install are dbus, hald and Gnome-Volume-Manager. 그 패키지를 설치하는가 dbus, hald과 격언 - 볼륨 - 관리자를합니다. After installing these packages, configure dbus and hald setup to run via init scripts. 이러한 패키지를 설치한 후, 구성을 통해 초기화 스크립트를 실행하는 설치 프로그램을 hald dbus하고있습니다. Then in Gnome, some configuration has to be done. 그리고 그놈, 일부 구성이해야 할합니다. Click on the ‘Desktop’ menu, then go to ‘Preferences’, and then to ‘Removable Drives and Media’. 다음에있는 '바탕 화면'메뉴를 다음으로 이동 '환경 설정'을 누른 다음를 '이동식 드라이브 및 미디어'. Configure the settings to your liking. 당신의 마음에 드는 설정을 구성합니다. Once you plug-in a usb drive, an icon for the drive will appear on the desktop. 한번에 플러그 - usb 드라이브에있는 아이콘을 바탕 화면에있는 드라이브가 나타납니다. Other possible setting is to have Gnome opens a window showing the contents of the USB drive. 다른 가능한 설정은 그놈이있는 창을 엽니다 usb 드라이브의 내용을 표시합니다.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 중요 사항 : 이것은 기계 번역 페이지는 "있는 그대로"제공하지 않고 보증합니다. Machine translation may be difficult to understand. 기계 번역을 이해하기 어려울 수있습니다. Please refer to 를 참조하시기 바랍니다 original English article 기존 영어 자료 whenever possible. 언제 수있습니다.
Share and contribute or get technical support and help at 를 공유하고 기술 지원 및 도움을 공헌하지 않는다면 My Digital Life Forums 내 디지털 라이프 공개 토론 . 합니다.
Related Articles 관련 기사
- No Drive Letter for USB or Firewire Drive usb이나 파이어 와이어 드라이브에 대한 드라이브 문자가없습니다
- CD/DVD-ROM Virtual Drive Emulator Software Free Download cd / dvd - 호환 가상 드라이브 에뮬레이터 소프트웨어를 무료로 다운로드
- How To Mount and Access New Partition, Volume or Drive As Folder Path In Windows 새 파티션을 액세스하는 방법을 탑재하고, 볼륨 또는 드라이브로 폴더의 경로를 windows
- Change or Modify the Drive Letter and Paths in Windows Vista 드라이브 문자와 경로를 변경하거나 수정하여 windows 비스타
- Refresh Linux or Unix Path Environmental Variables with rehash 리눅 스나 유닉스 환경 변수와 개작 경로를 새로 고침
- How to Open and Extract .DAA Image Files 개방적이고을 추출하는 방법을합니다. 십진 변환 명령 이미지 파일을
- Change Group Ownership of Symbolic Links in Unix or Linux 그룹에 심볼릭 링크의 소유권을 변경 또는 리눅스 유닉스
- Running Google Earth on Suse Linux with VMware 구글 어스를 실행하는 suse 리눅스와 vmware
- How to Create a Bootable USB Flash Drive or USB Key with Vista WinPE 2.0 usb 플래시 드라이브를 만드는 방법을 부팅하거나 usb 열쇠를, 비스타 winpe 2.0
- Common Troubleshooting Methods When OS Install Unable to Detect SATA Harddisk Drive 일반적인 문제 해결 방법을 감지하면 운영 체제의 SATA 하드 디스크 드라이브를 설치할 수없습니다

































January 24th, 2007 17:18 2007년 1월 24일 17:18
Thanks for an excellent article. 훌륭한 자료 주셔서 감사합니다. But after upgrading to Suse 10.1 (10.2 wouldn’t install), I cannot access my USB Iomega ZIP drive and receive msg “Mount with signature “ssas” on interface “org.freedesktop.Hal.Device.Volume” doesn’t exist”. 하지만 이후로 업그레이 드하는 suse 10.1 (10.2 않을 설치), 전 드라이브에 액세스할 수없는 내 usb iomega 우편 번호 및 수신 메시지 "마운트와 서명"ssas "를 인터페이스"org.freedesktop.hal.device.volume "가 존재하지 않습니다" 합니다. It seems that the introduction of HAL has complicated matters and I have been unable to find an answer on the forums. 의 도입이 복잡하게 할 것으로 보인다 그리고 난 여기에 문제를 공개 토론에 대한 답변을 찾을 수 없다. Can you help, please, perhaps with an updated article? 도움을받을 수, 제발, 아마으로 업데이 트되는가? All my back-up data is on the ZIP which is unreadable either by Windows or Knoppix. 내 모든 데이터가를 위로 -을 통해 어느 정도 자주 창문이나 knoppix 우편 번호는 읽을 수없습니다.
February 17th, 2007 11:25 2007년 2월 17일 11:25
Please note that there is a small typo in the main article above. 오타에 문제가 있음을 참고하시기 바랍니다 소규모의 주요 기사 이상합니다.
/dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / usb 자동 noauto, 소유자, 담가 0 0
Should read: 읽어야 :
/dev/sda1 /mnt/USB auto noauto,owner,kudzu 0 0 / dev/sda1 / mnt / usb 자동 noauto, 소유자, 덩굴 0 0
Still, the article did help… thanx 그러나,이 문서… 고맙습니다 한 도움
February 17th, 2007 13:42 2007년 2월 17일 13:42
I believe kuzu would work, kudzu is kind of for cdrom. 믿습니다 담가가 작동 cdrom에 대한 덩굴은 친절합니다.
August 10th, 2008 16:03 2008년 8월 10일 16:03
[...] I eventually find a helpful post that explains in better detail than most how mounting volumes [...] [...] 결국 도움이 될 수 게시물을 찾아 설명하고 볼륨을 탑재 [...]하는 방법보다 더 나은 세부 사항
August 13th, 2008 05:44 2008년 8월 13일 05:44
When I mount dev/sda1 it mounts my main filesystem drive not the usb. 내 메인 파일 시스템을 마운트 dev/sda1이 때 드라이브를 탑재가 아니 usb합니다. I can’t get my usb to mount no matter what I do (running Ubuntu) but windows reads it fine. 내 usb을 탑재를 할 수 없기 무슨 짓을하든 (러닝 우분투) 그러나 windows 읽습니다 괜찮아.