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 :
- Login as root. rootとしてログインします。 You can use the su command to switch to root user. suコマンドを使用してすることができますに切り替えるにはrootユーザです。
- 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):次の行を追加して、ファイル/ 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 ) 。
- 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 私のデジタルライフフォーラム .です。
Related Articles関連記事
- CD/DVD-ROM Virtual Drive Emulator Software Free DownloadのCD / DVD - ROMの仮想ドライブエミュレータソフトウェアの無料ダウンロード
- No Drive Letter for USB or Firewire DriveいいえUSBまたはFireWireドライブのドライブ文字を
- 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 Vistaで
- Refresh Linux or Unix Path Environmental Variables with rehashリフレッシュLinuxやUnix環境変数のパスを焼き直し
- How to Open and Extract .DAA Image Files抽出する方法を開いたりします。イメージファイルのDAA
- Running Google Earth on Suse Linux with VMware Google Earthを実行してSUSE LinuxにもVMware
- Change Group Ownership of Symbolic Links in Unix or Linuxグループの所有権を変更するのシンボリックリンクがUnixやLinux
- How to Create a Bootable USB Flash Drive or USB Key with Vista WinPE 2.0を作成する方法をブート可能なUSBフラッシュドライブまたはUSBキーをVista WinPEの2.0
- Common Troubleshooting Methods When OS Install Unable to Detect SATA Harddisk Drive OSのインストール時に共通のトラブルシューティング方法の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 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をします。
February 17th, 2007 11:25 2007年2月17日11:25
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
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をマウントすることはできません私に関係なくどのような私は( Ubuntuを)しかし、ウィンドウズ読み取ることよ。