Ubuntu :: Making FAT32 External HDD Readable And Writable?
Feb 27, 2011
My external HDD became read only, and even not readable for a folder in it. Until now I had no problem with reading/writing on it but at my last mounting it get unwritable. When I right-click and try to change rights it says you cant it's a read only file system...
View 9 Replies
ADVERTISEMENT
Dec 29, 2010
I decided I could get by without WIN7 on my computer on a permanent basis, so re-installed Fedora 14 on drive SDA (Drive 0), previously occupied by WIN7, and formatted all other drives in the system (SDB, SDC, and SDD to EXT4.The install went well, and everything is working except one thing - I cannot get SDB,SDC or SDD to copy files one to the other. The message I get is that permissions do not allow this process. The automount works OK, and I can access the contents of individual files on these drives, but as far as copying goes, there is no go.What other parameters do I have to add to the automount in /etc/fstab to allow for this read/write function, or am I looking in the wrong area entirely?I have searched these forums and the Internet in general, but I cant seem to find anything specific to this problem.
View 9 Replies
View Related
Mar 16, 2011
I'm having difficulty making my FAT32 drive capable of read/write. I followed the instructions here (http://ubuntuguide.org/wiki/Ubuntu:Maverick#Windows_Compatibility) and added the following line to my /etc/fstab file:
Code:
/dev/sda4 /media/WinD vfat quiet,defaults,rw 0 0
However, when I rebooted the drive is still read-only
View 4 Replies
View Related
Feb 20, 2010
When I plug in my external USB Hard drive which is formatted as a single NTFS partition, it is recognized and mounted automatically, a nautilus window pops open. Unfortunately it is not writable. The reason is: the partition is mounted "ntfs" (which lacks write support) instead of "ntfs-3g". This is the output of mount after plugging in the drive:
$ mount | grep sdc1
/dev/sdc1 on /media/4EBC5FB82435B0EE type ntfs (rw,nosuid,nodev,uhelper=devkit,uid=1000,gid=1000,dmask=0077)
I want this partition to be writable by just plugging it in.
The partition should not have any errors because a) I fsck'ed it windows and b) mounting it manually works:
$ sudo mount -t ntfs-3g /dev/sdc1 /media/disk_/
$ mount | grep sdc1
/dev/sdc1 on /media/disk_ type fuseblk (rw,allow_other,blksize=4096)
$ devkit-disks --mount-fstype ntfs-3g --mount /dev/sdc1
Mounted /org/freedesktop/DeviceKit/Disks/devices/sdc1 at /media/4EBC5FB82435B0EE
$ mount | grep sdc1
/dev/sdc1 on /media/4EBC5FB82435B0EE type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
$ gnome-mount -nbtd /dev/sdc1
$ mount | grep sdc1
/dev/sdc1 on /media/disk type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
How can I get ntfs drives to be mounted as writable by default, preferrably without having to modify fstab?
View 1 Replies
View Related
Jul 24, 2011
Is there anyway to get a 2 terabyte NTFS partition mounted in Suse Linux? Would be better to just mount if possible so I could use the storage for both my Linux and windows pcs.
View 2 Replies
View Related
Jul 22, 2010
So I have the strange task of trying to make something like I said above work in Lubuntu 10.04. But every time I do, the share is not accessible because none of the important permissions (other) can be set because its, well, NTFS in linux. And I know of no way to fix it.Is there an easy way, preferably with Nautilus since the person I am setting this up for isn't a computer expert, to setup this share so thats its accessible and writable by other computers on the network?
View 3 Replies
View Related
Nov 18, 2010
I have a 1TB External HD that at the time of purchasing was used with my PS3 which only allowed FAT32 HDs. But now I am using it for other uses. I have came across the problem of the file size limit of 4gb that FAT32 has.The problem is I have about 200 GB filled of data on this HDD and wish to convert it to NTFS with no data being lossed. Is this possible and if so how?
Edit: BTW no Microsoft just Ubuntu
View 2 Replies
View Related
Apr 11, 2011
1. Is this possible without loosing the data on the external harddrive?
2. How is it done?
3. WIll I be able to read and write on both Ubuntu and OS X 10.6? (like I can now)
View 7 Replies
View Related
Dec 22, 2010
If a USB drive is used under Linux and Windows, what would be the best file system? FAT32?Would it harm to have the drive formated as NTFS?How reliable is Linux when writing to NTFS today and is it worth taking the risk?I am asking this because I am pretty sure that there are a lot of peoples out there with external drives that are formated in NTFS.The main reason for this is that a OS like Windows XP cannot format a FAT32 partition bigger then 32GB and without noticing users might format their drives to NTFS.
View 4 Replies
View Related
Oct 6, 2009
I have a FAT32 external USB hard drive with a bunch of stuff I want to copy onto a RHEL server. Is it as simple as it is on a Mac or PC where I just plug it in and it will show up, then I can copy all the files off of it?If it is, how do I safely remove the drive after I'm done with it?
View 5 Replies
View Related
Feb 25, 2011
I have 2 external drives that I'm using for movies and they're both formatted to fat32. The problem I'm experiencing now is that some of the high quality mkv files are not able to be moved to the drive because of fat32's limitations.
I'd like to convert to ext3 (or 4) and I wanted to check to see if I can do it without having to reformat and without loss of data.
View 4 Replies
View Related
Aug 19, 2011
I tried to install ubuntu 11.04 on my external hard drive (WD My Passport, thats all i remember about the name) and all was well, until I tried to reformat it from ext4 to FAT, and no such luck, it isn't even being READ, not in fdisk -l, not by gparted, disk manager, or anything else. Windows is no help at all... I tried that out of desparation.
View 9 Replies
View Related
Jan 6, 2010
I have an external harddrive which is fat32 (which was filled when I was on a windows system) with a lot of files on (> 200gb) which have mixed case filenames. I wanted to write a script to rename them all to lowercase however when I did I got an error saying that the filenames are the same (which I guess is true as FAT is case-insensitive). My issue is that I'm mounting this from a linux box now so it would make it a lot easier if things were lower case! I've already run a script to replace all spaces with underscores.
I know I could do this by first going through and renaming everything with a prefix and then renaming it back again (ie, rename File.Jpg to xFile.Jpg and then a second rename to strip that x off and rename lowercase to file.jpg) however I find this approach a bit messy and would prefer to do it all in one pass. Other than that, could I change the drive to ext4 without losing any files on it? The drive has a hell of a lot of stuff on there which is an archive of many years of files - I'd be absolutely gutted if I lost everything.
View 2 Replies
View Related
Jan 8, 2010
I need to get a backup copy of a huge directory on one of our RHEL servers. Rather than hook the external USB drive up to my PC and manually copy it all across the network, can I just plug it in to one of my USB ports on the server and rsync it?I know how to do the rsync, I just don't know how to get the USB drive to show up when I do a df -h and how to properly remove it before unplugging it from the server. this is a live server, so I can't go playing around and possibly mess something up.
View 14 Replies
View Related
Mar 10, 2011
I am working from a laptop where all my work is stored on a 80GB drive. I am now also an owner of an external 250GB USB hard drive, formatted with FAT32. I want to keep it FAT32, so that I can offer some of my files to people that run Mac OS or Windows and I don't want to have them install ext3 for windows and what not.I am in need of a strategy which will allow me to keep a mirror of my laptop drive on my new external drive, i.e. no history / versioning required. However, I do care about file permissions. The files don't have to be stored as-is, they can be stored within a large (80GB?) tar file, that is fine - it would be easier for me to coerce people to open a .tar file than to install an ext3 driver for their OS, I suppose. I don't think I can keep file permissions otherwise, can I?
I have previously used a self-written sh script that used rsync to keep an up-to-date copy of my laptop filesystem on a USB flash drive, but in that case I had the flash drive formatted with ext3, so no problem with file permissions there. This time, it's trickier.
View 9 Replies
View Related
Feb 9, 2010
i needed to change my external hard drive's file system from ext3 to fat32, to use it in windows, which i did the simple way: i shrunk the ext3 partition, made a fat32 partition, copied the files over, removed the ext3 and made the fat32 bigger. unfortunately, while gparted was making the partition larger, my computer shut down. i lost all my files and the partition messed up immediately. i made a new fat32 partition, after deleting the old one, but noticed that gparted was showing 100 gigs already in use (???). so now i have a 300 gb hard drive with only 200 gb i can use; i ran df to make sure gparted wasn't messing up, but indeed it shows the partition as being only 200 gigs in size. i haven't tried making any other kind of partition yet, such as ext3, for fear of losing my files again, and because it wouldn't be permanent anyway, because i need those files in windows and stupid microsoft won't make their OS ext3 compatible.
View 2 Replies
View Related
Jun 12, 2010
I believe I'm right in thinking the type of graphics card I have is relevant somehow to this, so after some googling I think I worked out mine is Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller.
View 1 Replies
View Related
Aug 6, 2010
I have a DVD which I can open and play on a machine running 9.04 but I can't get to open and play it on a machine running 10.04.How can I diagnose and prefereably fix the problem?
View 9 Replies
View Related
Jan 27, 2011
"How can I format/wipe a rewritable cd for further use in ubuntu 8.04"?
View 5 Replies
View Related
Jan 16, 2011
I've installed eclipse and android manually at /opt. How do I make /opt/android writable by eclipse ? I don't want to chmod it to 777. Specifically I need to know the group eclipse belongs to.
View 3 Replies
View Related
Jan 21, 2011
This is my first time working with NFS but I fail to see what the issue is since everything works properly.
View 13 Replies
View Related
Jul 18, 2011
If I put a blank dvd in the drive it will not mount automatically on my slackware 13.1So I ran "mount" to list the mounted file-systems, put a burned dvd in the drive and waited for it to mount automatically. Then I ran "mount" again. The only added line was
Code:
/dev/sr0 on /media/Disc type udf (ro,nosuid,nodev,uhelper=hal,uid=1000)
so I figured /dev/sr0 is the dvd drive. I put the blank dvd back in the drive and ran the following
[code]....
View 2 Replies
View Related
Jan 14, 2010
I have a Windows 2k8 server acting as my domain controller. My goal is to have my Ubuntu 9.10 Server box share some folders via Samba, which should be authenticated via the PDC. So far, it seems to be mostly working. The Ubuntu machine has joined the domain, and is browse-able to domain users. The only problem at this point, is that the shares are not writable.
Code:
[global]
workgroup = smatech
netbios name = smalinux001
security = domain
idmap uid = 15000-20000
idmap gid = 15000-20000
winbind enum users = yes
winbind enum groups = yes
winbind use default domain = yes
password server = 10.10.10.2
domain master = no
local master = yes
[www]
path = /var/www
writable=yes
View 5 Replies
View Related
Jan 31, 2010
I am trying to get write access to a share on xp machine via automatically mounting
the share via the following /etc/fstab entry .... after doing a sudo mount -a ... I can view the files on the 'C-share' but can not write them back to the server
//WINBLOWS/C-share /media/C-share cifs,rw
This used to work and allow share files to be read and writable before some ubuntu updates.
I am currently running ubuntu 9.10.
PS: if I connect via places->network ... the files are readable and writable ... but I need this setup to be automatic with a mount for someone else.
What needs to be added to the above fstab entry
View 1 Replies
View Related
Jan 27, 2010
In the stock GCC 4.3.3 included with Slackware 13.0, there has been some reported errata with GCC opening GCDA and GCNO files in write mode. This can cause errors indicating that it was unable to open files during building.
View 5 Replies
View Related
May 14, 2011
I'm using Ubuntu 11.04 and am unable to read any DVD from my DVD writer. I'm sure its some Software issues as CD's seem to work fine with this distribution. Can someone tell me how to get my DVD Writer working again. DVD's (all) are not detected at all by the system. They must atleast be mounted or something but nothing. I even check the Disk utility to see if the system can see the DVD but not able to mount it. No luck. The DVD is not Detected. btw All the DVD's i tested work fine in windows
View 8 Replies
View Related
Apr 13, 2010
i have debian system in which i have mounted the OS on a ext-3 system . I have got a partition of 60 gb , which is formatted to ext-2 partition . Even if I mount , i cant write anything into it . How can i change that ? How can I make the disk writable?
View 2 Replies
View Related
Jan 6, 2011
$ whoami
meder
$ cd /var/www
$ sudo mkdir html
$ sudo groupadd web
$ sudo usermod -a -G web meder
$ sudo usermod -a -G web medertest
$ sudo chown meder:web html
$ sudo chmod -R g+rwx html
The problem is, anytime I create a new file in /var/www/html even though the group is set to web, it is only writable by the original user. I was given the advice of setting the umask to be 002 because the default is what causes the problems. But I would have to do this for all users in that group, and as far as I know it would be tedious having all of them modify ~/.bashrc to have umask 002. Even if I can do it myself with a shell command for all of those users, it still seems too tedious.
View 2 Replies
View Related
Jul 22, 2010
is there a way to make the /proc filesystem writeable? With aufs or unionfs i can't join the /proc filesystem with a writable directory directly. But i think it should work by using one of this file systems.If i try to join two dirs write-proc and virtual-proc Code: mount -v -t aufs -o dirs=/tmp/write-proc/:/tmp/virtual-proc/ none /tmp/joined-proc/ and afterwards make a bind mount /proc to virtual-proc Code: mount --bind /proc /tmp/virtual-proc/ i can't see any change in /tmp/joined-proc.
View 2 Replies
View Related
Feb 11, 2010
I want to (no reason of course purely interest) get into the internals of my router (which happens to run linux) and be able to mount a drive to which i can save some data which will persist over reboots. I don't care if its only 16kb or whatever. I am guessing it must have some writable memory for the router configuration. I can telnet into the router and get a shell started up (busy box). Also I am aware of options such as tomato and DD-WRT to replace my router's firmware to give me much more access but I do not want to take the risk nor the time in configuring it and would like to retain my ISP's provided firmware. Somethings that might be useful:
[code]...
View 1 Replies
View Related