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 장치에 리눅 스나 유닉스 :

  1. Login as root. 루트로 로그인합니다. You can use the su command to switch to root user. 명령을하실 수있습니다 스를 사용하여 루트 사용자로 전환하려면합니다.
  2. Create a folder /mnt/USB with the command: mkdir /mnt/USB 폴더를 만듭니다 / mnt / usb에 명령 : mkdir / mnt / usb
  3. 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).

  4. 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 내 디지털 라이프 공개 토론 . 합니다.



5 Responses to “How to Mount USB Disk Drive in UNIX or Linux” 5 반응을 "usb 디스크 드라이브에 탑재하는 방법을 유닉스 또는 리눅스"

  1. Gervase Chavasse gervase chavasse
    January 24th, 2007 17:18 2007년 1월 24일 17:18
    1

    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 우편 번호는 읽을 수없습니다.

  2. Ogryzek ogryzek
    February 17th, 2007 11:25 2007년 2월 17일 11:25
    2

    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 그러나,이 문서… 고맙습니다 한 도움

  3. admin 관리자
    February 17th, 2007 13:42 2007년 2월 17일 13:42
    3

    I believe kuzu would work, kudzu is kind of for cdrom. 믿습니다 담가가 작동 cdrom에 대한 덩굴은 친절합니다.

  4. BlogSplat » Blog Archive » Adventures In Linuxland blogsplat»블로그 아카이브»모험에 linuxland
    August 10th, 2008 16:03 2008년 8월 10일 16:03
    4

    [...] I eventually find a helpful post that explains in better detail than most how mounting volumes [...] [...] 결국 도움이 될 수 게시물을 찾아 설명하고 볼륨을 탑재 [...]하는 방법보다 더 나은 세부 사항

  5. David 데이비드
    August 13th, 2008 05:44 2008년 8월 13일 05:44
    5

    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 읽습니다 괜찮아.

Leave a Reply 남길 회신

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> 이러한 태그를 사용할 수있습니다 : <a href="" title=""> <acronym title=""> <abbr title=""> <blockquote cite=""> <b> <cite> <code> <델 날짜 = ""> <em> <i> <strike> '<q cite="">

Subscribe without commenting 논평없이 구독 신청
이메일


Custom Search

New Articles 새로운 기사

Incoming Search Terms for the Article 이 문서에 대한 검색어를 수신

ubuntu mount usb 우분투 탑재 usb - - mount usb ubuntu 마운트 usb 우분투 - - mount usb disk usb 디스크를 탑재 - - ubuntu mount usb drive 우분투 usb 드라이브를 탑재 - - mount usb drive ubuntu usb 드라이브를 탑재 우분투 - - ubuntu mount usb device 우분투 usb 장치를 탑재 - - linux mount usb disk 리눅스 usb 디스크를 탑재 - - ubuntu usb mount 우분투 usb 마운트 - - mount usb disk ubuntu usb 디스크를 탑재 우분투 - - ubuntu mount usb hard drive 우분투 usb 하드 드라이브에 탑재 - - ubuntu mount usb disk 우분투 usb 디스크를 탑재 - - fedora mount usb drive 중절모 usb 드라이브를 탑재 - - mount USB linux usb 리눅스 탑재 - - linux usb disk 리눅스 usb 디스크를 - - mount usb 마운트 usb - - usb disk linux usb 디스크에 리눅스 - - linux mount usb 리눅스 탑재 usb - - unix mount usb 유닉스 탑재 usb - - usb mount usb 마운트 - - mount usb unix 마운트 usb 유닉스 - - linux mount usb drive 리눅스 usb 드라이브를 탑재 - - mounting usb ubuntu 마운트 usb 우분투 - - mount usb fedora 마운트 usb 중절모 - - usb mount ubuntu usb 마운트 우분투 - - mount usb device ubuntu 우분투 usb 장치를 탑재 - - ubuntu usb drive mount 우분투 usb 드라이브를 탑재 - - mount usb hard drive ubuntu 우분투 usb 하드 드라이브에 탑재 - - mount usb drive unix usb 드라이브를 탑재 유닉스 - - ubuntu mounting usb 우분투 장착 usb - - UNIX mount usb drive usb 드라이브를 탑재 유닉스 - - mount thumb drive linux 엄지 드라이브를 탑재 리눅스 - - ubuntu mount external usb drive 우분투 외부 usb 드라이브를 탑재 - - mount usb drive fedora usb 드라이브를 탑재 중절모 - - ubuntu mount usb hdd 우분투 usb 하드 디스크 탑재 - - mount usb drive linux 리눅스 usb 드라이브를 탑재 - - ubuntu mount usb 우분투 탑재 usb - - usb unix usb 유닉스 - - mount usbdisk 마운트 usbdisk - - all 모두 - - usb disk mount usb 디스크를 탑재 - - mount usb on ubuntu 우분투 usb에 탑재 - - mount usb in linux usb에서 리눅스 탑재 - - fedora mount usb 중절모 탑재 usb - - how to mount usb in linux usb에서 리눅스를 탑재하는 방법 - - ubuntu automount usb drive 우분투 usb 드라이브를 자동 마운트 - - how to mount usb disk usb 디스크를 탑재하는 방법 - - mount usb drive in unix usb 드라이브를 탑재 유닉스 - - how to mount usb drive in ubuntu usb 드라이브를 탑재하는 방법을 우분투 - - mount external usb drive ubuntu 외부 usb 드라이브를 탑재 우분투 - - ubuntu mount usb harddrive 우분투 usb 하드 디스크 드라이브 탑재 - - mounting a USB drive in Ubuntu usb 드라이브를 탑재하는 우분투 - - mount USB drive usb 드라이브를 탑재 - - mounting usb drive ubuntu usb 드라이브를 장착 우분투 - - vmware mount usb drive vmware usb 드라이브를 탑재 - - fedora mount usb disk 중절모 usb 디스크를 탑재 - - mount usb drive in fedora usb 드라이브를 탑재 중절모 - - montare usb ubuntu usb 우분투 montare - - automount usb drive ubuntu 우분투 usb 드라이브를 자동 마운트 - - how to mount usb drive in linux usb 드라이브에 리눅스를 탑재하는 방법 - - mount usb drive in linux 리눅스에서 usb 드라이브를 탑재 - - how to mount usb ubuntu usb 우분투을 탑재하는 방법 - - unix usb 유닉스 usb - - Ubuntu USB mounten 우분투 usb mounten - - ubuntu how to mount usb drive usb 드라이브를 탑재하는 방법을 우분투 - - linux on usb disk usb 디스크에 리눅스를 - - ubuntu auto mount 우분투 자동 탑재 - - mount usb in ubuntu 우분투 usb에 탑재 - - mount usb drive in ubuntu 우분투 usb 드라이브를 탑재 - - mount ubuntu usb 마운트 우분투 usb - - usb drive mount ubuntu usb 드라이브를 탑재 우분투 - - how to mount usb on linux usb에 리눅스를 탑재하는 방법 - - mount usb harddrive ubuntu 우분투 usb 하드 디스크 드라이브 탑재 - - mount usb ubuntu 마운트 usb 우분투 - - unix usb drive usb 드라이브를 유닉스 - - mount usb on unix 유닉스에서 usb 마운트 - -