mkdosfs on usb pendrive

2011-01-03 Thread Roman Gelfand
I created a partition on a 8gb usb pendrive using mkdosfs. However, after mounting the drive, I see only 80mb available. Is there a way to create a bigger partition? Thanks in advance -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble

Re: mkdosfs on usb pendrive

2011-01-03 Thread Roman Gelfand
to create partition... mkdosfs /dev/sda1 To mount the volume mount /dev/sda1 /pendrive On Mon, Jan 3, 2011 at 10:42 AM, Joao Ferreira gmail joao.miguel.c.ferre...@gmail.com wrote: On Mon, 2011-01-03 at 10:33 -0500, Roman Gelfand wrote: I created a partition on a 8gb usb pendrive using

Re: mkdosfs on usb pendrive

2011-01-03 Thread Joao Ferreira gmail
On Mon, 2011-01-03 at 10:33 -0500, Roman Gelfand wrote: I created a partition on a 8gb usb pendrive using mkdosfs. can you show us the exact command you used ? cheers joao However, after mounting the drive, I see only 80mb available. Is there a way to create a bigger partition

Re: mkdosfs on usb pendrive

2011-01-03 Thread Joao Ferreira gmail
Gelfand wrote: I created a partition on a 8gb usb pendrive using mkdosfs. can you show us the exact command you used ? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http

Re: mkdosfs on usb pendrive

2011-01-03 Thread Javier Vasquez
On Mon, Jan 3, 2011 at 9:43 AM, Roman Gelfand rgelfa...@gmail.com wrote: to create partition... mkdosfs /dev/sda1 To mount the volume mount /dev/sda1 /pendrive mkdosfs does not create any partition, it formats the partition to VFAT, but it has to be created first. In your example

Re: mkdosfs on usb pendrive

2011-01-03 Thread Lisi
wrote: I created a partition on a 8gb usb pendrive using mkdosfs. can you show us the exact command you used ? cheers joao   However, after mounting the drive, I see only 80mb available.   Is there a way to create a bigger partition? Thanks in advance Partition the drive

Re: mkdosfs on usb pendrive

2011-01-03 Thread shawn wilson
As stated, mkfs commands just do the fs layout stuff and not the partitioning. In order to do partitioning I'd either use fdisk or gparted. For fdisk, (off the top of my head); sudo fdisk /dev/sda p d 1 (Repeat until there are no listings) n p 1 (accept defaults) p (you should see one linux native

Re: mkdosfs on usb pendrive

2011-01-03 Thread Roman Gelfand
I sort of found a solution for myself. Remove all partitions from usb drive. Format the drive using mkdosfs -I /dev/sda. This gives me now access to the entire drive. On Mon, Jan 3, 2011 at 12:05 PM, shawn wilson ag4ve...@gmail.com wrote: As stated, mkfs commands just do the fs layout stuff