ZappBrannigan Posted September 5, 2005 Share Posted September 5, 2005 I've got Ubuntu and want to know how to browse me NTFS drives, and how to burn files from them to a cd or dvd? Are the progs already there on the live cd to do all this, as I dont want to install Ubuntu just use the live cd. Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/ Share on other sites More sharing options...
markwolfe Veteran Posted September 5, 2005 Veteran Share Posted September 5, 2005 According to Distrowatch.com, hoary includes k3b, which will do a great job of burning CDs. (Y) Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586481079 Share on other sites More sharing options...
Fragmaster Posted September 5, 2005 Share Posted September 5, 2005 To browse your NTFS drives, open /etc/fstab with your favorite editor, then add a new line at the bottom like this /dev/hda1 /media/ntfs1 ntfs ro,umask=0222 0 0 The first bit (/dev/hda1) is the reference to your drive, whatever it is, HDA is primary master 1st partition, HDB is primary slave, HDC is secondary master etc.... and /media/ntfs1 is where you want the files to show up for mounting, (you will have to create the folder first (mkdir /media/ntfs1)) Good luck :) Don't forget once you've added that line, create a new line then save and close :) Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586481134 Share on other sites More sharing options...
+BudMan MVC Posted September 5, 2005 MVC Share Posted September 5, 2005 here - nothing like reading the available documentation to find what you want.. http://ubuntuguide.org/#mountunmountntfs http://ubuntuguide.org/#cddvdburning Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586481164 Share on other sites More sharing options...
ZappBrannigan Posted September 5, 2005 Author Share Posted September 5, 2005 Cheers, ive mounted windows ntfs drive, but when i try open it, it says i don't have permission to view it :( Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586482169 Share on other sites More sharing options...
Fragmaster Posted September 5, 2005 Share Posted September 5, 2005 Did you add the umask=0222 to the mount options? Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586482664 Share on other sites More sharing options...
j.r.l. Posted September 5, 2005 Share Posted September 5, 2005 According to http://ubuntuguide.org/#automountntfs, The line to be added to /etc/fstab is /dev/hda1 /media/windows ntfs nls=utf8,umask=0222 0 0 Ubuntu comes with k3b, which similar to Nero (but better...). To start it up, if Ubuntu didn't put a shortcut in your menu, open up Terminal and enter "k3b" without the quotes :) Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586483272 Share on other sites More sharing options...
sanctified Veteran Posted September 5, 2005 Veteran Share Posted September 5, 2005 Ubuntu comes with k3b, which similar to Nero (but better...) 586483272[/snapback] No, its not. Sorry for coming here offtopic but I really dont like when people say that k3b is better than nero just because its the mainstream linux program. k3b its not better than nero, easy as that. Doesnt have the features nor the flexibility. Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586483294 Share on other sites More sharing options...
j.r.l. Posted September 6, 2005 Share Posted September 6, 2005 (edited) No, its not. Sorry for coming here offtopic but I really dont like when people say that k3b is better than nero just because its the mainstream linux program. k3b its not better than nero, easy as that. Doesnt have the features nor the flexibility. 586483294[/snapback] Nero: "Only US $79.99!Online", EDIT:"Retail Package: US $ 99.99" k3b: $0, developped by people who are kind enough to give their free time to the Linux community Nero better? Not in my point of view :) Just because a program is less complicated, more "straight forward" to the average computer user doesn't make it "better". Now an IMHO wouldn't hurt for the post above, I admit :) Edited September 6, 2005 by AresXP Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586483562 Share on other sites More sharing options...
Marshalus Veteran Posted September 6, 2005 Veteran Share Posted September 6, 2005 GnomeBaker is great IMO. sudo apt-get install gnomebaker Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586483630 Share on other sites More sharing options...
rezza Veteran Posted September 6, 2005 Veteran Share Posted September 6, 2005 GnomeBaker is great IMO. sudo apt-get install gnomebaker 586483630[/snapback] Indeed, it's nifty, and great for those of us who don't want to have to install KDE libs just for one app... Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586485384 Share on other sites More sharing options...
ZappBrannigan Posted September 6, 2005 Author Share Posted September 6, 2005 Did you add the umask=0222 to the mount options? 586482664[/snapback] Yea, i followed what it said on ubuntuguide sudo mount /dev/hda1 /media/windows/ -t ntfs -o nls=utf8,umask=0222 Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586485881 Share on other sites More sharing options...
Fragmaster Posted September 6, 2005 Share Posted September 6, 2005 Hmm perhaps try mounting without sudo. Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586486326 Share on other sites More sharing options...
j79zlr Posted September 6, 2005 Share Posted September 6, 2005 (edited) Have you checked the permissions on the mount point? They should be755 for /media/windows. You also should not be able to mount that as a regular user unless you use the users option in fstab, so mounting without sudo is not the solution, besides you are passing the umask=0222 option, which gives everyone rx permissions. Edited September 6, 2005 by j79zlr Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586486422 Share on other sites More sharing options...
chavo Posted September 6, 2005 Share Posted September 6, 2005 Here's a script that will search your disks for windows and Mac partitions, then add them to fstab and mount them. I got it from the ubuntu wiki, but I can't remember the address. Remove the .txt suffix before you run it. Had to add it or it wouldn't attach. winmac_fstab.txt Make sure you remove any ntfs or hsfs partitions from /etc/fstab before you run it. Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586487357 Share on other sites More sharing options...
j.r.l. Posted September 6, 2005 Share Posted September 6, 2005 Try using umask=0777 instead.. not really secure but it should work Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586487593 Share on other sites More sharing options...
markwolfe Veteran Posted September 6, 2005 Veteran Share Posted September 6, 2005 We could look at this from another angle. Do you have a Knoppix LiveCD? Those will add your NTFS drives without any edits, and include k3b to burn CDs/DVDs. Worth a shot (even if only for a sanity check that everything is recognized). Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586487599 Share on other sites More sharing options...
j79zlr Posted September 7, 2005 Share Posted September 7, 2005 Try using umask=0777 instead.. not really secure but it should work 586487593[/snapback] umask is the opposite of chmod, using umask=0777 is the same as removing rwx permissions for everyone. My suggestion would be to remove the fstab line you have now, then mount the drive from the commandline, once that works, add the correct line and options to your fstab. I have a guide on my site on how to do this: http://www.j79zlr.com/howto.php?id=20 Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586488748 Share on other sites More sharing options...
ZappBrannigan Posted September 8, 2005 Author Share Posted September 8, 2005 Cheers it seems to have mount me hard drive, but when i try to open it, it says i dont have permission! Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586496367 Share on other sites More sharing options...
Lare2 Posted September 8, 2005 Share Posted September 8, 2005 GnomeBaker is great IMO. sudo apt-get install gnomebaker 586483630[/snapback] Indeed that app is sweet. Link to comment https://www.neowin.net/forum/topic/368074-browse-ntfs-and-burn-in-ubuntu/#findComment-586496423 Share on other sites More sharing options...
Recommended Posts