Linux - NewbieThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Last night I successfully installed Fedora Yarrow i386 Core 1 onto my family computer. Its quite exciting, I can now use a computer for the first time in 12 years without Bill Gates looking over my shoulder!
My question, is probably a matter of familiarisation, revolves around being able to access other partitions or discs. It could be a matter of level of access I have permitted myself - how do I correct that?
I wished to use partitions as follows:
hda1: Windows XP (6Gb - FAT32)
hda2: data space for both systems (25Gb - FAT32)
hda3: Linux (6Gb - ext3)
hda4: MBR etc (300Mb - doesn't matter - it works!)
windows can access hda1 & 2 (both FAT32), but Linux can only access iteself (ext3) so far.
I could re format 2 if necessary, but I chose that format as I believed it was accessible to Linux?
I ask the forum rather than pouring over the online manuals as my internet acccess is from the office ( where I read and access the net) while my pc is at home....
Do you mean I needn't have reformatted each and every partition as FAT32!? - Oh well, ho hum!
ppuru,
you seem to me to have a habit of using text instead of GUI methods - I'm still learning - fast!
I presume there is an equivalent to Windows' "Run..." in the GUI? or do I need to learn other new tricks too?
I am very impressed with this form of help - you guys have been excellent
ppuru,
I thank you, I have now found gedit, and your comments on my other thread worked a treat, especially with the titles suggested by others!
the directory you mentioned - /mnt/c is empty - when logged in as root.
"as root
mkdir /mnt/c
#mount -t vfat /dev/hda1 /mnt/c
and let us know how it goes."
what is mkdir ?(in DOS that used to be make a new directory)
# means comment doesn't it? where do I put that line? when typed in at the terminal, i got the response that I couldn't mount an existing drive, with a series of parameters. am I missing something?
The /etc/fstab file contains information concerning pre-defined partition setup (including cd-rom and floppy).
If you still can't acces your cd-rom or floppy, the problem may be with this file.
Post the contents for more help.
Quote:
I presume there is an equivalent to Windows' "Run..." in the GUI? or do I need to learn other new tricks too?
Yes there is.
Log-in as a normal user. Open a Console window (also know as a terminal window... it looks like a DOS window).
This is the command line.
At the command line, if you want to run some commands or programs as root, type the following:
merci Mathieu,
I'm getting there! I've found Terminal - I now understand the # (not a command, just a prompt) and ppuru, and the mount disappeared on shut down. At this stage, I'm just so paranoid, I don't want to break anything!
Many Thanks to ppuru, I've found my floppy, my CD and other hard disk partitions - excellent. Now to put 'shortcuts' into the desk top, and mount .... in the login script wherever that is. That should be totally up and running then.
If only I could...
I'm getting there, with a little help from my friends!
mount -t vfat /dev/hda2 /home/ian
appears to have prevented me logging in
When you issue a mount command, the device (/dev/hda2) is mounted on the mount point that you specify (/home/ian). So, the original contents on /home/ian will not be available till you unmount the device.
making a windows stylled shortcut:
ln -s originalfilenewfile
the ln -s makes a soft link from the originalfile to the newfile.
if you remove the originalfile the newfile becomes useless.
Under GNU/Linux you can create a so called hard link by not typeing ln -s but just ln.
A hard link differ from a soft link by only allowing links on the same partion.
The advantegs is that if the original file is removed, the new file works just the same.
no that if you overwrite the new (or old) file, both files will have there contains althered.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.