LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-05-2005, 05:09 PM   #16
JustTheFax
LQ Newbie
 
Registered: Aug 2005
Location: Arizona
Distribution: Kubuntu
Posts: 16

Original Poster
Rep: Reputation: 0

Quote:
[i](And finish the line with a "Return" before saving it when editing fstab.) [/B]
i understand everything exept this. (probably important)

Edit:
ok i figured that part out,(i'm an idiot) and did the rest of the things that he said i should but when i try to enter hda5 i get:
Code:
Could not enter folder /mnt/win.
suggestions?


It is probabbly becuase i am not root. Kubuntu is wierd like that why am i not root? and why do i always have to type sudo? I don't even know how to become root.

Ok I got it to work!! but i can only do that if i am root and the only way i know to become root is by presing ALT+F2 typing KATE then options then run as a different user and type my root password. is there a way i can access my drive without having to do that the whole time?

Last edited by JustTheFax; 09-05-2005 at 05:35 PM.
 
Old 09-06-2005, 02:07 AM   #17
claudius753
Member
 
Registered: Jan 2004
Distribution: Mac OS X 10.6.4 "Snow Leopard", Win 7, Ubuntu 10.04
Posts: 322

Rep: Reputation: 31
It's been a while since I needed to access ntfs, but try using this line to allow all to have access:

Code:
/dev/hda5    /mnt/win    ntfs    users,owner,ro,umask=000 0 0
I'm fairly sure this will allow all users read only access to the ntfs partition.

Last edited by claudius753; 09-06-2005 at 02:09 AM.
 
Old 09-06-2005, 04:48 PM   #18
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Here's how I've got mine set up:
Code:
$ cat /etc/fstab | grep ntfs
/dev/hda1               /mnt/WinXP/c            ntfs    ro,uid=peter,gid=windows  0 0
/dev/hdb1               /mnt/WinXP/d            ntfs    ro,uid=peter,gid=windows  0 0
/dev/hdc1               /mnt/WinXP/g            ntfs    ro,uid=peter,gid=windows  0 0
Note that (as did claudius753) I've set access to ro. That's because (on Fedora, at least) the NTFS access system does not handle the hidden flags that M$ has built in to the (propitary) NTFS. If you write to a NTFS file system without using the Wondows DLL, you can distroy all files on the drive.

See Captive-NTFS (which I've never bothered to get to work for me) if you need write access to your NTFS files.

My solution is to have a FAT32 drive
Code:
/dev/hdg1               /var/share/z            vfat    uid=peter,gid=windows     0 0
that I use to move things between XP and Linux. (For example, I have my Thunderbird mailbox there so my mail is available regardless of the system into which I happen to log on.)

Note also that I've set up a "windows" group for everyone needing access to the NTFS files.

Last edited by PTrenholme; 09-06-2005 at 04:50 PM.
 
Old 09-08-2005, 09:55 PM   #19
JustTheFax
LQ Newbie
 
Registered: Aug 2005
Location: Arizona
Distribution: Kubuntu
Posts: 16

Original Poster
Rep: Reputation: 0
Thank You everyone for the tremendous help that you most generously gave me. I am looking forward to future threads. (except for when I am having a problem).Thanks again.
 
Old 09-08-2005, 10:30 PM   #20
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,884
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
BTW the easiest way to open a text editor or any program as root in KDE is to type in a terminal kdesu programname, it will then popup a box asking for your password. Enter it and you are now using whatever program as root.


Wow all that just to get into a second drive running XP. When I used to dual boot( I ran ME) all I had to do was right click and choose mount and the drive mounted.

A couple of helpful links:
KUDOS Unofficial Kubuntu FAQ
UserDocumentation - Ubuntu Wiki
Unofficial Ubuntu 5.04 Starter Guide
Debian -- Documentation

Last edited by craigevil; 09-08-2005 at 10:33 PM.
 
Old 09-09-2005, 10:19 AM   #21
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941
One of the things that is most-different about Linux, vs. Windows, is this whole concept of a directory hierarchy and 'mount points.'

In the Windows world, there are "drive letters" like "C:" and "Q:" ... and in more modern versions there's also the concept of \\servername\path_to_file. Each of these separate file domains are independent of one another.

In Linux, however, there is one global hierarchy (my term...) of files and directories, originating at the so-called "root" (not related to the root userid!) which is identified by "/".

To use any filesystem on any disk whatsoever, you mount it, causing that entire filesystem to appear at some point in your computer's global hierarchy. You do this with the mount command. Some mounts will occur automatically at startup time as specified by the /etc/fstab file we've been seeing. Others, you do yourself, but generally only if you are root or if /etc/fstab allows you to. Once mounted, the filesystem remains available until it is unmounted with umount.

The two essential parameters to mount are: (1) the device to be mounted, and (2) the mount point, which initially is an empty-directory. Once the filesystem has been successfully mounted, files magically appear inside that directory.

Linux supports many different types of filesystem drivers. These are kernel modules (loaded on-demand to become part of the kernel), or they can be compiled into the kernel. What they do is to interpret the contents of the disk, fashioning them into "files" and "directories."

Linux drivers are a constant work-in-progress but most of them are very good. Of the various drivers available today, the NTFS driver does have problems, mostly caused by lack of information.

Modern Windows implementations, of course, implement the same concept... what they call "installable file systems" (IFS).

Last edited by sundialsvcs; 09-09-2005 at 10:27 AM.
 
Old 09-24-2005, 02:48 PM   #22
JustTheFax
LQ Newbie
 
Registered: Aug 2005
Location: Arizona
Distribution: Kubuntu
Posts: 16

Original Poster
Rep: Reputation: 0
Thanks everyone for the sugestions and all the help i finally seem to have this working, still kinda uncerten about the installing but alot of that will, im hoping, come with practice and time.

Now my problems of dual screens and Video Games still exists. If you would be so kind, as you were with my other questions, help me with these two dillemas. thank you in advanced and i would just like to say again how much i appriciate the help.

thanks again.
 
Old 09-24-2005, 04:49 PM   #23
tomj88
Member
 
Registered: Apr 2005
Location: Wolverhampton, England
Distribution: Ubuntu
Posts: 334

Rep: Reputation: 30
it might be more useful for you ad people who are searching in the future if you start a new post about that problem, just a suggestion
 
Old 09-25-2005, 12:11 AM   #24
JustTheFax
LQ Newbie
 
Registered: Aug 2005
Location: Arizona
Distribution: Kubuntu
Posts: 16

Original Poster
Rep: Reputation: 0
yeah probably but i didnt want to clutter the forum with threads.

do you think i should for these problems?
 
Old 09-25-2005, 03:45 AM   #25
tomj88
Member
 
Registered: Apr 2005
Location: Wolverhampton, England
Distribution: Ubuntu
Posts: 334

Rep: Reputation: 30
I would say it clutters the forum's less by keeping individual/unrelated problems in seperate threads as it is easier to find problems for a) people trying to help and b) people with the same problem
 
Old 09-25-2005, 11:22 AM   #26
JustTheFax
LQ Newbie
 
Registered: Aug 2005
Location: Arizona
Distribution: Kubuntu
Posts: 16

Original Poster
Rep: Reputation: 0
That sounds reasonable. I will post a new thread about one of my new problems in the appropriate category.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Jazz Jackrabbit 2 divide by zero error on startup jspenguin Linux - Software 0 04-17-2005 12:26 PM
prelink,elfutils,winex,slack,error=21 and all that jazz SticklerThe1st Slackware 7 11-26-2004 08:01 AM
jazz++ barbqer Linux - Software 0 05-29-2004 04:25 AM
:D basics deee Linux - Newbie 6 11-10-2003 01:01 AM
The basics of all basics... Thaidog Linux - Newbie 1 09-20-2002 01:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration