Results 1 to 7 of 7
Hey guys,
I'm new to linux and have recently downloaded and installed the newest mandriva distro. I really like, but i've run into some problems that i'm not experienced enough ...
- 09-12-2008 #1Just Joined!
- Join Date
- Sep 2008
- Posts
- 6
New To Linux: A Few Questions
Hey guys,
I'm new to linux and have recently downloaded and installed the newest mandriva distro. I really like, but i've run into some problems that i'm not experienced enough to handle.
So here it is: I installed mandriva and used free space on my hard drive to partition, the majority of the drive is windows xp, what is the best way to transfer my files from linux to windows and then possibly wiping windows leaving the entire disk for mandriva?
thanks for all the help
- 09-12-2008 #2
- 09-12-2008 #3Just Joined!
- Join Date
- Sep 2008
- Posts
- 6
ahh, from windows to linux. yes
thanks
- 09-12-2008 #4
You need to mount your windows partition first of all.
You will need to know the device that you want to mount. In the terminal.
thats a little L not a 1 or I.Code:fdisk -l
you will see a line like
/dev/sda1 is the device.Code:/dev/sda1 * 1 4998 40146403+ 7 HPFS/NTFS
You will then need to mount it. You will have to be root to do this
To be root
Then you need a place to mount it.Code:su
Then you need to have it be able to be accessed by normal usersCode:mkdir /mnt/windows
Then mount itCode:chmod 777 /mnt/windows
After that, you should then be able to access your windows partition normally through your file manager and copy the files across.Code:mount /dev/sda1 /mnt/windows
Having 777 access isn't secure for the folder, but if you just going to delete the partition anyway shouldn't matter.
- 09-12-2008 #5Just Joined!
- Join Date
- Sep 2008
- Posts
- 6
This is what it gave me:
I also only have about a gig of hd space in my mandriva partition and all of the files i would want to tramsfer wouldn't fit. any solutions there?[root@localhost manning]# mkdir /mnt/windows
[root@localhost manning]# chmod 777 /mnt/windows
[root@localhost manning]# mount /dev/sda1 /mnt/windows
mount: /dev/sda1 already mounted or /mnt/windows busy
mount: according to mtab, /dev/sda1 is mounted on /media/hd
- 09-12-2008 #6
Ok
If you go to /media/hd you should see you windows stuff then.Code:mount: according to mtab, /dev/sda1 is mounted on /media/hd
should confirm it.Code:df -h
did you run fdisk -l first of all to double check? just want to make sure that its the right drive.
Hmmm, not to sure on that one. Burn to a dvd maybe, depending on the amount of stuff you actually want.I also only have about a gig of hd space in my mandriva partition and all of the files i would want to tramsfer wouldn't fit. any solutions there?
- 09-12-2008 #7Just Joined!
- Join Date
- Sep 2008
- Posts
- 6
So that's what it gave me. ???[root@localhost manning]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 4.7G 2.6G 1.9G 59% /
/dev/sda12 973M 973M 0 100% /home
/dev/sda1 48G 45G 3.7G 93% /media/hd
[root@localhost manning]#
when i try to move anything from it says "could not write file "blank" disk full"
yeah, i'll figure it out
thanks for all your help


Reply With Quote
