How to Mount USB Disk Drive in UNIX or Linux Mau ke Gunung USB Disk Drive di UNIX atau 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). Kebanyakan distro-distro (distribusi) dari Linux Mandrake termasuk 10,1, SuSE 9.x dan Fedora Core 3 kini dapat mendukung plug-and-plug deteksi, deteksi dan driver untuk portable USB drive atau USB disk (dan semua jenis USB berbasis data perangkat perangkat seperti hard drive, pen drive, USB keys, flash disk, thumb drive, memori utama, USB zip drive memory stick). Some Linux operating system even can auto-mount the USB drives, especially if you're using Gnome and KDE. Beberapa sistem operasi Linux bahkan dapat auto-mount USB drive, terutama jika Anda menggunakan Gnome dan KDE. When you plug-in the USB disk, Linux will pop-up a window showing the content of USB disk just like Microsoft Windows. Bila Anda plug-in disk USB, Linux akan pop-up jendela yang menampilkan konten USB disk seperti 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. Namun, jika Anda menggunakan versi Linux, atau menggunakan sistem operasi UNIX, atau Linux distro instalasi tidak dapat mendeteksi dan me-mount perangkat penyimpanan USB secara otomatis, maka Anda harus menginstal secara manual dan mount USB drive.
To manually mount a USB disk or USB drive or USB device in Linux or UNIX: Untuk secara manual mount USB disk atau USB drive atau perangkat USB di Linux atau UNIX:
- Login as root. Login sebagai root. You can use the su command to switch to root user. Anda dapat menggunakan perintah su untuk berpindah ke root.
- Create a folder /mnt/USB with the command: mkdir /mnt/USB Buat folder / mnt / USB dengan perintah: 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): Menambahkan baris berikut dalam file / etc / fstab (fstab adalah file yang memberitahu Linux untuk me-mount di mana berbagai perangkat, sehingga gunung simplying perintah):
/dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / USB auto noauto, owner, kuzu 0 0
Note: The “auto” on the above line means auto detection of filesystem. Catatan: "auto" pada baris di atas berarti otomatis deteksi dari 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). Jika sistem anda tidak dapat menentukan jenis filesystem, mengubahnya sesuai dengan USB drive dari file (mis. VFAT atau ntfs atau ext2 atau ext3).
- Mount the USB storage device with the following command: mount /dev/sda1 USB mount perangkat penyimpanan dengan perintah berikut: 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: Tanpa harus memodifikasi fstab (langkah 3), anda juga dapat dengan segera mengeluarkan perintah mount (langkah 4) dengan sintaks berikut:
mount /dev/sda1 /mnt/USB mount / 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: Jika Anda mengetahui filesystem USB drive atau sistem tidak dapat menentukan filesystem yang benar, maka t-pilihan dapat digunakan untuk filesystem jenis perangkat USB:
mount -t vfat /dev/sda1 /mnt/usb (for vFAT filesystem) mount-t VFAT / dev/sda1 / mnt / usb (untuk VFAT filesystem)
mount -t ntfs /dev/sda1 /mnt/usb (for NTFS filesystem) mount-t ntfs / dev/sda1 / mnt / usb (untuk filesystem NTFS)
Sometimes, the USB drive or USB storage device is detected by the system but been assigned a different device name from sda1. Terkadang, USB drive atau USB perangkat penyimpanan telah terdeteksi oleh sistem tetapi telah diberi nama yang berbeda dari perangkat sda1. If so, the correct device name need to be determined by viewing and OS log file. Jika demikian, nama perangkat yang benar harus ditentukan oleh OS dan melihat file log. 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: Biasanya Linux dan UNIX boot dan log pesan yang disimpan dalam / var / log /, dan Anda bisa melihat log pesan dengan perintah berikut:
tail -f /var/log/messages tail-f / var / log /
or atau
dmesg dmesg
Check for the name of the device that appears after operating system detects the USB devices. Periksa nama perangkat yang muncul setelah sistem operasi mendeteksi perangkat 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. Setelah menggunakan USB disk, jangan lupa untuk unmount USB drive dengan perintah berikut untuk menghindari kemungkinan hilangnya data atau untuk perubahan dan risiko messing up partisi anda.
umount /mnt/USB umount / mnt / USB
Configure Gnome to automatically detect, install and mount USB drive Konfigurasi Gnome untuk mendeteksi secara otomatis, instal dan mount USB drive
If you're using Gnome yet unable to automatically detect and mount USB drive for usage, a few packages needed to be install. Jika anda menggunakan Gnome, namun tidak dapat secara otomatis mendeteksi dan me-mount USB drive untuk penggunaan, beberapa paket yang dibutuhkan untuk menginstal. The packages to install are dbus, hald and Gnome-Volume-Manager. Untuk menginstal paket-paket yang dbus, dan Gnome-hald-Volume Manager. After installing these packages, configure dbus and hald setup to run via init scripts. Setelah menginstal paket ini, konfigurasikan dbus dan hald setup berjalan melalui skrip init. Then in Gnome, some configuration has to be done. Kemudian di Gnome, beberapa konfigurasi yang harus dilakukan. Click on the 'Desktop' menu, then go to 'Preferences', and then to 'Removable Drives and Media'. Klik pada 'Desktop' menu, lalu pergi ke 'Preferensi', dan kemudian ke 'Removable Drives and Media ". Configure the settings to your liking. Mengkonfigurasi pengaturan yang Anda sukai. Once you plug-in a usb drive, an icon for the drive will appear on the desktop. Setelah Anda plug-in usb drive, sebuah ikon untuk drive akan muncul pada desktop. Other possible setting is to have Gnome opens a window showing the contents of the USB drive. Pengaturan lain yang dapat dilakukan adalah memiliki Gnome akan membuka jendela yang menunjukkan isi dari USB drive.
IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman yang diterjemahkan mesin dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Mesin terjemahan mungkin sulit dimengerti. Please refer to Silakan merujuk ke original English article artikel asli Inggris whenever possible. bila memungkinkan.
Related Articles Artikel Terkait
- How to Calculate and Generate MD5 Hash Value in Linux and Unix with md5sum Cara Hitung dan Menghasilkan MD5 Hash Nilai di Linux dan Unix dengan md5sum
- Refresh Linux or Unix Path Environmental Variables with rehash Refresh Linux atau Unix Path Variabel Lingkungan dengan pengulangan
- Change Group Ownership of Symbolic Links in Unix or Linux Mengubah Group Kepemilikan dari Symbolic Link di Unix atau Linux
- How to Make or Create Symbolic Link in Unix or Linux Cara Membuat atau Buat Symbolic Link di Unix atau Linux
- How to Change or Spoof MAC Address in Windows XP, Vista, Server 2003/2008, Mac OS X, Unix and Linux Ubah cara atau spoof MAC Address pada Windows XP, Vista, Server 2003/2008, Mac OS X, Unix dan Linux
- Download Virtual CloneDrive To Mount ISOs and Other Disk Images Without Burning a Disc Download Virtual CloneDrive Untuk Gunung ISOs dan Lain-lain Foto Tanpa Disk Burning a Disc
- Open, Extract and Convert DAA, ISO and BIN Files in Linux with Free PowerISO for Linux Terbuka, dan Ambil Mengkonversi daa, dan BIN ISO File di Linux dengan PowerISO Gratis untuk Linux
- Mandriva Linux 2008 Available for Downloading Mandriva Linux 2008 Tersedia untuk Download
- Check Your Disk! Periksa Disk Anda! Provides Statistical Information of Hard Disk Usage Memberikan Informasi Statistik Hard Disk Usage
- Find Files that are Modified Today (or Since Certain Time Ago) in Unix Cari Berkas yang Dimodifikasi Today (atau Sejak Beberapa Waktu Ago) di Unix










































September 27th, 2008 13:25 September 27, 2008 13:25
In reply to David. Dalam membalas Daud. If you have a sata hdd that would be /dev/sda1. Jika Anda memiliki Sata Hdd yang akan / dev/sda1. If this is the case your usb drive would most probably be /dev/sdb1 Do dmesg to see how your usb is recognised when plugged in. Jika hal ini terjadi usb drive anda akan paling mungkin / dev/sdb1 Apakah dmesg untuk melihat bagaimana Anda usb diakui bila terpasang in
August 13th, 2008 05:44 13 Agust 2008 05:44
When I mount dev/sda1 it mounts my main filesystem drive not the usb. Ketika saya mount dev/sda1 gunung itu saya tidak utama filesystem drive usb. I can't get my usb to mount no matter what I do (running Ubuntu) but windows reads it fine. Saya tidak bisa untuk me-mount usb saya tidak peduli apa yang saya lakukan (berjalan Ubuntu), tetapi ia membaca jendela halus.
August 10th, 2008 16:03 10 Agust 2008 16:03
[...] I eventually find a helpful post that explains in better detail than most how mounting volumes [...] [...] Saya akhirnya menemukan sebuah posting yang bermanfaat dalam menjelaskan lebih detail dari cara paling mounting volume [...]
February 17th, 2007 13:42 17 Feb 2007 13:42
I believe kuzu would work, kudzu is kind of for cdrom. Saya percaya akan bekerja kuzu, kudzu adalah jenis untuk cdrom.
February 17th, 2007 11:25 17 Feb 2007 11:25
Please note that there is a small typo in the main article above. Perlu diketahui bahwa terdapat kesalahan ketik kecil dalam artikel utama di atas.
/dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / USB auto noauto, owner, kuzu 0 0
Should read: Harus baca:
/dev/sda1 /mnt/USB auto noauto,owner,kudzu 0 0 / dev/sda1 / mnt / USB auto noauto, owner, kudzu 0 0
Still, the article did help… thanx Meski demikian, artikel itu membantu ... thanx
January 24th, 2007 17:18 Januari 24, 2007 17:18
Thanks for an excellent article. Terima kasih atas artikel yang sangat baik. 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”. Tapi setelah upgrade ke Suse 10,1 (10,2 tidak akan menginstal), saya tidak bisa mengakses USB Iomega ZIP drive dan menerima pesan "Gunung dengan tanda tangan" ssas "pada antarmuka" org.freedesktop.Hal.Device.Volume "tidak ada" . It seems that the introduction of HAL has complicated matters and I have been unable to find an answer on the forums. Nampaknya pengenalan HAL yang rumit dan hal-hal yang telah saya tidak dapat menemukan jawaban di forum. Can you help, please, perhaps with an updated article? Anda dapat membantu, silakan, mungkin dengan Diperbaharui artikel? All my back-up data is on the ZIP which is unreadable either by Windows or Knoppix. Semua cadangan data pada ZIP yang baik tidak terbaca oleh Windows atau Knoppix.