Results 11 to 20 of 20
Execute this
Code:
mkdir /media/sd_card
mount -t vfat /dev/sdb1 /media/sd_card
Check /media/sd_card folder. You must have root privileges to execute above commands....
- 12-29-2007 #11
Execute this
Check /media/sd_card folder. You must have root privileges to execute above commands.Code:mkdir /media/sd_card mount -t vfat /dev/sdb1 /media/sd_card
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-29-2007 #12Just Joined!
- Join Date
- Dec 2007
- Posts
- 11
Ok I have done that.
Now how do I format it?
Thanks.
- 12-29-2007 #13
It formatted in FAT32 filesystem already. If you want to format it again, execute this
Code:umount /dev/sdb1 mkfs.vfat /dev/sdb1 mount -t vfat /dev/sdb1 /media/sd_card ls /media/sd_card
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-29-2007 #14Just Joined!
- Join Date
- Dec 2007
- Posts
- 11
Wow, Thanks ALOT.
- 12-29-2007 #15
Glad to help you leicester67 !

Do start a new thread if you have any other question !It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-29-2007 #16Just Joined!
- Join Date
- Dec 2007
- Posts
- 11
I have just tried to put something on there and it doesn't let me.
I'm not sure what's wrong with it.
- 12-29-2007 #17
You must have root privileges to save/delete/edit files. Either login as root user Or give permissions to regular user by execute this
umask=0 will allow Regular User to create/delete/edit files in it.Code:umount /dev/sdb1 mount -t vfat /dev/sdb1 /media/sd_card -o defaults,umask=0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-29-2007 #18Just Joined!
- Join Date
- Dec 2007
- Posts
- 11
Thanks again.
- 12-29-2007 #19Just Joined!
- Join Date
- Dec 2007
- Posts
- 11
Last Question...
When I want to save something to it should i save it to...
/media/MMC-SD/partition1
or
My Home/MMC-SD/partition
Or
/media/sd_card
Thanks.
- 12-30-2007 #20
Execute 'df -h' command and check where SD Card has been mounted.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote