Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Linux beginner (Questions)

Status
Not open for further replies.

ajith_jk

Newbie level 1
Newbie level 1
Joined
Aug 1, 2006
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,316
Well am a beginner in linux and know nothing much about it.
I have the fedora core 5 version.
I basically want to know how to mount windows using linux.
I would be obliged if you could tell me a link for linux commands.

regards,
Ajith
 

ivar4ever

Full Member level 3
Full Member level 3
Joined
Jun 12, 2006
Messages
189
Helped
25
Reputation
52
Reaction score
5
Trophy points
1,298
Location
India
Activity points
2,437
excellent link for Linux Beginers
h**p://tldp.org/LDP/intro-linux/intro-linux.pdf
 

    ajith_jk

    Points: 2
    Helpful Answer Positive Rating

louisnells

Full Member level 4
Full Member level 4
Joined
May 8, 2006
Messages
209
Helped
19
Reputation
38
Reaction score
8
Trophy points
1,298
Activity points
3,019
Hi,
To mount your windows partition under Linux you have to know the windows partition numbers (may be you can do "fdisk /dev/hdx").
Then try "mount -t vfat /dev/hdx# <mount-dir>" or "mount -t ntfs /dev/hdx# <mount-dir>". The '-t' option is most often not necessary. To mount NTFS partitions you should have special kernel module.
[/quote]
 

    ajith_jk

    Points: 2
    Helpful Answer Positive Rating

ajith_jk

Newbie level 1
Newbie level 1
Joined
Aug 1, 2006
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,316
hEY THANX A LOT EVERYONE................................
 

u04f061

Advanced Member level 4
Full Member level 1
Joined
Mar 3, 2006
Messages
103
Helped
7
Reputation
14
Reaction score
6
Trophy points
1,298
Activity points
2,085
i use ubuntu 6.06 nicknamed as dapper drake.

i think it is most efficient release of ubuntu and also an edgy distro.it is much easier to install even easier than win xp. it automatically mounts windows partitions to your desktop.so u do nothing.

u can get it from

www.shipit.ubuntu.com

its shipping is free ,u just need to register ,within one month u will get ubuntu cds at home. it also has too much active forum at

www.ubuntuforums.org
 

shaikhsarfraz

Full Member level 5
Full Member level 5
Joined
Aug 8, 2006
Messages
285
Helped
25
Reputation
50
Reaction score
6
Trophy points
1,298
Activity points
2,961
Hi,
If you want to install Linux on your system you can get the book,

Linux for Beginners from Wrox Publication.

It will solve all your queries related to installlation of Linux and further operation.
Apart from that you will also get Linux Fedora 9 CD's with the books.

I am not sure whether the book is on EDA Board or not.

Thanks
Shaikh Sarfraz
 

sgupta_one

Newbie level 6
Newbie level 6
Joined
Sep 8, 2006
Messages
11
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,330
first you should make a directory
mkdir /mnt/win
then mount your windows partition using
mount /dev/hda1 /mnt/win
(if it is on c: drive)
you can unmount using
umount /mnt/win

you can even make it automount at startup,just add following to your /etc/fstab
/dev/hda1 /mnt/win vfat defaults 0 0
 

adi_gupta19

Junior Member level 1
Junior Member level 1
Joined
Jul 16, 2006
Messages
15
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,365
make sure your window drive is not ntfs partitioned

ntfs partitions are not usually recognised by the linux os

and if your window partition is the first primary partition
then type

mkdir /mnt/c:
mount -t vfat /dev/hda1 /mnt/c:

for any further enquiry type your problem in
www.google.com/linux
 

blackdebugger

Junior Member level 1
Junior Member level 1
Joined
Dec 18, 2005
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Indonesia
Activity points
1,414
Hello adi_gupta19

I dont think that the latest Linux distro could not detect ntfs well. By the way, the latest linux distro supports either write and read from ntfs partition. ref: linux-ntfs.sf.net

Even today u can recover, resize and repartition ur hd even it is in ntfs.
 

Ragnarok83

Member level 3
Member level 3
Joined
Sep 6, 2006
Messages
65
Helped
10
Reputation
20
Reaction score
1
Trophy points
1,288
Location
Colombia
Activity points
1,626
i recomend that when you install linux, create a FAT32 partition and then you can share information between windows and linux without problem, and for mount them go to /etc/fstab and edit it for mount them automatically on /mnt or /media you can choose, i guess. or if you put them li noauto just use the mount command.
 

mehboob_iiui

Full Member level 2
Full Member level 2
Joined
May 20, 2006
Messages
132
Helped
8
Reputation
16
Reaction score
1
Trophy points
1,298
Location
Rawalpindi - Pakistan
Activity points
2,013
I presume you mean mounting windows partitions,

if your partitions are FAT32 it is quite simple

just type

#mount -t vfat /dev/hdaxx /mnt/abc

if they are ntfs you will not be able to access , as much as I know without external software,

check our http://linux-ntfs.sourceforge.net
 

onioni

Member level 1
Member level 1
Joined
Dec 14, 2004
Messages
37
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
268
For beginners, just try "hiweed", windows partitions will be mounted automatically!

check h**p://www.hiweed.com
 

u04f061

Advanced Member level 4
Full Member level 1
Joined
Mar 3, 2006
Messages
103
Helped
7
Reputation
14
Reaction score
6
Trophy points
1,298
Activity points
2,085
in ubuntu i do this.

root fdisk -l

it then displays me all the partitions of my hard drive.

then point out the partition u want to mount. then make a folder in /media directory where u want to mount partition. let u created a folder winxp and want to mount partition hda1 . then do this

root mount /dev/hda1 /media/winxp
 

spweda

Full Member level 3
Full Member level 3
Joined
Jun 28, 2001
Messages
184
Helped
7
Reputation
14
Reaction score
2
Trophy points
1,298
Activity points
1,261
It is no problem to mount the NTFS disk in th elinux environment. However, it is usually to munnt as read only.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top