How to Mount USB Disk Drive in UNIX or Linux USBディスクドライブをマウントする方法について、 UnixやLinux

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).ほとんどのディストリビューション(ディストリビューション)のLinux含まれてマンドレーク10.1 、 SUSEの9.xのとFedora Core 3のプラグインをサポートできるようになりました。プラグ検出、およびドライバのインストールを発見ポータブルUSBドライブやUSBディスク(および任意の種類のUSBベースのデータストレージデバイスのハードドライブなどのデバイス、ペンドライブ、 USBキー、フラッシュディスク、親指ドライブ、メモリキーのUSB Zipドライブやメモリースティック)です。 Some Linux operating system even can auto-mount the USB drives, especially if you’re using Gnome and KDE.いくつかのLinuxオペレーティングシステムにもUSBドライブが自動マウントして、特にGNOMEや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ディスク、 Linuxはウィンドウを開く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.しかし、もしあなたが使用して以前のバージョンのLinuxのか、またはUNIXオペレーティングシステムを使用して、またはお使いのLinuxのディストリビューションをインストールできませんでしたUSBストレージデバイスを検出して自動的にマウントして、次にを手動でインストールする必要がありますし、マウントは、 USBドライブに挿入します。

To manually mount a USB disk or USB drive or USB device in Linux or UNIX:を手動でマウントするUSBディスクやUSBドライブやUSBデバイスにLinuxやUnix :

  1. Login as root. rootとしてログインします。 You can use the su command to switch to root user. suコマンドを使用してすることができますに切り替えるにはrootユーザです。
  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):次の行を追加して、ファイル/ etc / fstabに( fstabには、ファイルがついてLinuxのどこにマウントして様々なデバイス、およびそのため、 mountコマンド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.注: " auto "を自動検出し、上記の行のファイルを意味します。 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ストレージデバイスをマウントするには、次のコマンドを示す: mount / 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 ) 、することができます。 mountコマンドを発行してもすぐ(ステップ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) マウント-トンVFATは/ dev/sda1にありました/ mnt / usbで ( VFATはファイルシステム)
mount -t ntfs /dev/sda1 /mnt/usb (for NTFS filesystem) マウント-トンの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.もしそうならば、適切なデバイス名を閲覧したりする必要がありますOSのログファイルによって決定されます。 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:通常は、 LinuxおよびUNIXを起動してログメッセージが格納さでは/ var / log / messagesに、とすることができますログメッセージを表示するには、次のコマンド:

tail -f /var/log/messages tail - fのの/ var / log / messagesに

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 GNOMEの設定を自動的に検出する、 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とgnome - volume -マネージャを起動します。 After installing these packages, configure dbus and hald setup to run via init scripts.これらのパッケージをインストールした後、構成dbusとhald initスクリプト経由でセットアップを実行する。 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.他の可能性にはGNOMEの設定ではポップアップウィンドウを表示中の内容には、 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ディスクドライブをマウントする方法についてUnixやLinux "

  1. Gervase Chavasseティルベリー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 Zipドライブおよび受信メッセージ"マウントに署名" 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. HALを導入するようだと私は、問題が複雑で回答が見つからない上、フォーラムのです。 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.すべてのデータのバックアップは、郵便のいずれかを読み取れないこれは、 Windowsまたは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.ご注意が存在することを主な記事は、上記のtypoです。

    /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それでも、この資料は参考ヘルプ…のthanx

  3. admin管理者
    February 17th, 2007 13:42 2007年2月17日13:42
    3 4

    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をマウントすることはできません私に関係なくどのような私は( Ubuntuを)しかし、ウィンドウズ読み取ることよ。

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= <abbrのtitle= <blockquote cite=""> <cite> <acronymのtitle= <b>ダウンロードの<code> <デル日時= " " >の<em> <i>て<strike> <strong> <q cite="">

Subscribe without commenting登録なしのコメント


Custom Search

New Articles新しい記事

Incoming Search Terms for the Article検索用語を受信するには

ubuntu mount usb ubuntuマウントのUSB - - mount usb ubuntu マウントのUSB ubuntu - - mount usb disk USBディスクをマウント - - ubuntu mount usb drive USBドライブをマウントubuntu - - mount usb drive ubuntu USBドライブをマウントubuntu - - ubuntu mount usb device ubuntuマウントUSBデバイス - - linux mount usb disk LinuxのUSBディスクをマウント - - ubuntu usb mount ubuntuのUSBマウント - - mount usb disk ubuntu USBディスクをマウントubuntu - - ubuntu mount usb hard drive ubuntu USBハードドライブをマウント - - ubuntu mount usb disk ubuntu USBディスクをマウント - - fedora mount usb drive USBドライブをマウントソフト帽 - - mount USB linux マウントのUSBリナックス - - linux usb disk LinuxのUSBディスク - - mount usb マウントのUSB - - usb disk linux USBディスクのLinux - - linux mount usb LinuxのマウントのUSB - - unix mount usb UNIXのマウントのUSB - - usb mount のUSBマウント - - mount usb unix マウントのUSBのUNIX - - linux mount usb drive LinuxのマウントUSBドライブ - - mounting usb ubuntu 取り付けのUSB ubuntu - - mount usb fedora マウントのUSBソフト帽 - - usb mount ubuntu のUSBマウントubuntu - - mount usb device ubuntu マウントUSBデバイスubuntu - - ubuntu usb drive mount ubuntu USBドライブをマウント - - mount usb hard drive ubuntu USBハードドライブをマウントubuntu - - mount usb drive unix UNIXのUSBドライブをマウント - - ubuntu mounting usb ubuntu取り付けのUSB - - UNIX mount usb drive UNIXのマウントUSBドライブ - - mount thumb drive linux Linuxの親指ドライブをマウント - - ubuntu mount external usb drive 外付けUSBドライブをマウントubuntu - - mount usb drive fedora USBドライブをマウントソフト帽 - - ubuntu mount usb hdd ubuntuマウント式USB HDD - - mount usb drive linux LinuxのUSBドライブをマウント - - ubuntu mount usb ubuntuマウントのUSB - - usb unix のUSBのUNIX - - mount usbdisk マウントusbdisk - - all すべての - - usb disk mount USBディスクをマウント - - mount usb on ubuntu マウントのUSBをubuntu - - mount usb in linux マウントのUSBにLinux - - fedora mount usb マウントのUSBソフト帽 - - how to mount usb in linux Linux上のUSBをマウントする方法について - - ubuntu automount usb drive usbドライブの自動マウントubuntu - - how to mount usb disk USBディスクをマウントする方法について - - mount usb drive in unix USBドライブをマウントのUNIX - - how to mount usb drive in ubuntu USBドライブをマウントする方法についてはubuntu - - mount external usb drive ubuntu 外付けUSBドライブをマウントubuntu - - ubuntu mount usb harddrive ubuntuのUSBハードディスクをマウント - - mounting a USB drive in Ubuntu USBドライブをマウントするubuntu - - mount USB drive USBドライブをマウント - - mounting usb drive ubuntu usbドライブの取り付けubuntu - - vmware mount usb drive VMWareで動作USBドライブをマウント - - fedora mount usb disk USBディスクをマウントソフト帽 - - mount usb drive in fedora マウントUSBドライブにはFedora - - montare usb ubuntu montareのUSB ubuntu - - automount usb drive ubuntu usbドライブの自動マウントubuntu - - how to mount usb drive in linux LinuxのUSBドライブをマウントする方法について - - mount usb drive in linux LinuxのUSBドライブをマウント - - how to mount usb ubuntu をマウントする方法についてのUSB ubuntu - - unix usb のUNIXのUSB - - Ubuntu USB mounten ubuntuのUSB mounten - - ubuntu how to mount usb drive ubuntu USBドライブをマウントする方法について - - linux on usb disk LinuxをインストールするUSBディスク - - ubuntu auto mount ubuntu自動マウント - - mount usb in ubuntu マウントのUSBにubuntu - - mount usb drive in ubuntu USBドライブをマウントubuntu - - mount ubuntu usb マウントubuntuのUSB - - usb drive mount ubuntu USBドライブをマウントubuntu - - how to mount usb on linux Linux上のUSBをマウントする方法について - - mount usb harddrive ubuntu ubuntuのUSBハードディスクをマウント - - mount usb ubuntu マウントのUSB ubuntu - - unix usb drive UNIXのUSBドライブ - - mount usb on unix UNIX上でマウントのUSB - -