Sharing Files with a USB Drive in Ubuntu تبادل الملفات مع USB محرك الأقراص في أوبونتو
The simplest and most common use for a USB drive is to share files between systems. وأبسط والأكثر شيوعا لاستخدام USB حملة هو لمشاركة الملفات بين النظم. Dapper supports most USB drives. وسيم وتؤيد معظم محركات الأقراص USB. Simply plugging the drive into the USB port will automatically mount the drive. ببساطة لسد حملة USB في ميناء جبل تلقائيا الحملة. From there, you can access it as you would access any mounted partition. من هناك ، يمكنك الوصول إلى أنها تحب أن تصاعدت وصول أي تقسيم.
Linux, Windows, Mac, and most other systems support FAT file systems. لينكس ، ويندوز ، ماك ، ومعظم النظم الأخرى دعم القوات المسلحة التوغولية ملف النظم. In order to share files with other users, consider formatting the drive with mkdosfs. من أجل تقاسم الملفات مع المستخدمين الآخرين ، والنظر في الشكل مع حملة mkdosfs. For example: على سبيل المثال :
1. Install the dosfstools package if mkdosfs is not already installed. تثبيت حزمة dosfstools إذا mkdosfs ليس بالفعل.
sudo apt-get install dosfstools sudo الرابطة بين الحصول على تثبيت dosfstools
2. Unmount the drive (for example, /dev/sda1) if it is currently mounted. وقم حملة (على سبيل المثال ، / dev/sda1) إذا ما تصاعدت في الوقت الراهن.
sudo umount /dev/sda1 sudo umount / dev/sda1
3. Format the drive using either FAT16 or FAT32. شكل حملة باستخدام إما FAT16 أو FAT32.
mkdosfs -F 16 /dev/sda1 # format FAT16 mkdosfs - إف 16 / dev/sda1 # شكل FAT16
mkdosfs -F 32 /dev/sda1 # format FAT32 mkdosfs - إف 32 / dev/sda1 # شكل FAT32
If you do not mind restricting file sharing to Linux-only systems, then you can format the drive using an ext2 or ext3 file system using any of the following commands: إذا كنت لا اعتبارها تقييد تبادل الملفات لنظم لينكس فقط ، بعد ذلك يمكنك شكل حملة ext2 أو باستخدام نظام الملفات ext3 باستخدام أي من الأوامر التالية :
mkfs /dev/sda1 # default format is ext2 mkfs / dev/sda1 # التقصير هو شكل ext2
mkfs -t ext2 /dev/sda1 # explicitly format type as ext2 mkfs - ر ext2 / dev/sda1 # صراحة شكل نوع ext2
mkfs -t ext3 /dev/sda1 # explicitly format type as ext3 mkfs - ext3 ر / dev/sda1 # صراحة شكل نوع ext3
mkfs.ext2 /dev/sda1 # directly call format ext2 mkfs.ext2 / dev/sda1 # شكل دعوة مباشرة ext2
mkfs.ext3 /dev/sda1 # directly call format ext3 mkfs.ext3 / dev/sda1 # شكل دعوة مباشرة ext3
Many thumb drives have a light to indicate that the drive is being accessed. كثير من الإبهام يدفع لها على ضوء الإشارة إلى أن حملة يجري الوصول إليها. Even if the drive is not mounted, do not unplug the drive until the light indicates all activity has stopped. وحتى لو شنت حملة لا ، لا يرفعون مراقبة الحملة حتى ضوء يشير إلى توقف كل نشاط.
If you want to create a FAT-formatted USB floppy drive, then use the -I option. إذا كنت تريد خلق الدهون ذات الصيغة المرنة USB حملة ، ثم استخدام الخيار الأول. For example: sudo mkdosfs -I -F 32 /dev/sda. على سبيل المثال : sudo mkdosfs بين الأول و 32 / ديف / حزب العمل الديمقراطي.
Source of Information : Hacking Ubuntu Serious Hacks Mods and Customizations مصدر المعلومات : القرصنة أوبونتو خطيرة المأجورون وتعديل والتحوير
Written by magakos. كتبها magakos. Read more great feeds at is source اقرأ المزيد العظيم هو مصدر في يغذي WEBSITE موقع
no comments لا تعليقات . .
Read more articles on اقرأ المزيد المواد المتعلقة Ubuntu Linux أوبونتو لينكس and و otherSoftware otherSoftware . .
- [+] Digg [+] [ديغ] : Feature this article : ميزات هذه المادة
- [+] Del.icio.us [+] Del.icio.us : Bookmark this article : إشارة مرجعية في هذا مادة
- [+] Furl [+] [فورل] : Bookmark this article : إشارة مرجعية في هذا مادة















