Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > PC Technology Zone > Windows Operating Systems and Software » replacing windows with linux but not loosing files
Closed Thread
Old 11-14-2008, 02:55 PM   #1 (permalink)
 
Junior Techie

Join Date: Jul 2008

Posts: 40

ste2425 is on a distinguished road

Default replacing windows with linux but not loosing files

i want to install linux on my computer that had windows on. Basicly the 30 day trial thing has run out and i dont like windows enough to buy it but i dont want to loose my files that are on the computer but i crnt log on to access them and move them, so does any1 no how to install linux but not delete all my files? even if it meand dual boot, find the files then formatt the hard drive and start again with just linux

cheers ste
ste2425 is offline  
Old 11-14-2008, 03:00 PM   #2 (permalink)
Mak213's Avatar
 

Join Date: Sep 2004

Location: C:\Windows\System32

Posts: 25,722

Mak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to all

Default Re: replacing windows with linux but not loosing files

Use a Linux LiveCD. From there take the data you want off and then install Linux.
__________________
R.I.P. Danny L. Trotter
14 Nov 1945 - 4 Sept 2009
Images created by CarnageX | Decaptured...Listen! | Visit Baezware!! | You've been Mak'd! | 儿做好
I do not accept support questions via EMail, PM, IM or my Spaces page! .:|:. This is what happens when an unstoppable force meets an immovable object.
Thanks to all the guys on the staff for your support in my time of need. Hefe you are my personal Hero for your contribution.



<<<< If I help you, or you just like what I said, rep me
Mak213 is offline  
Old 11-14-2008, 03:05 PM   #3 (permalink)
 
Junior Techie

Join Date: Jul 2008

Posts: 40

ste2425 is on a distinguished road

Default Re: replacing windows with linux but not loosing files

ok thanks for the help how would i get hold of one of them? would the free iso file to install linux ubuntu do that? or is this a seperate thing?
ste2425 is offline  
Old 11-14-2008, 03:09 PM   #4 (permalink)
Mak213's Avatar
 

Join Date: Sep 2004

Location: C:\Windows\System32

Posts: 25,722

Mak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to all

Default Re: replacing windows with linux but not loosing files

Yes Ubuntu is a LiveCD and can do it.
__________________
R.I.P. Danny L. Trotter
14 Nov 1945 - 4 Sept 2009
Images created by CarnageX | Decaptured...Listen! | Visit Baezware!! | You've been Mak'd! | 儿做好
I do not accept support questions via EMail, PM, IM or my Spaces page! .:|:. This is what happens when an unstoppable force meets an immovable object.
Thanks to all the guys on the staff for your support in my time of need. Hefe you are my personal Hero for your contribution.



<<<< If I help you, or you just like what I said, rep me
Mak213 is offline  
Old 11-14-2008, 03:38 PM   #5 (permalink)
 
Junior Techie

Join Date: Jul 2008

Posts: 40

ste2425 is on a distinguished road

Default Re: replacing windows with linux but not loosing files

ok thanks for the help ill let you no how i get allong!
ste2425 is offline  
Old 11-16-2008, 06:26 PM   #6 (permalink)
 
Junior Techie

Join Date: Jul 2008

Posts: 40

ste2425 is on a distinguished road

Default Re: replacing windows with linux but not loosing files

hi i download ubuntu 8.10 i think it was, or a least the latest disk, butrnt it onto disk and when i boot up cd first it loads up fine but i crnt find it anywhere to get the files of the hard disk, do you no how?
cheers
ste
ste2425 is offline  
Old 11-16-2008, 06:40 PM   #7 (permalink)
carnageX's Avatar
 

Join Date: Feb 2007

Location: South Dakota

Posts: 6,062

carnageX is just really nicecarnageX is just really nicecarnageX is just really nicecarnageX is just really nice

Send a message via AIM to carnageX Send a message via MSN to carnageX
Default Re: replacing windows with linux but not loosing files

Are you in the LiveCD environment? You should be able to go to Places > Storage Media (or something similar...can't quite remember) > and find your hard drives that way. Should be able to navigate like you normally would in Windows.
__________________
Sorry but I do not accept support questions via E-mail, PM, or IM.




3DMark06 Score: 15418 | carnageX | e6750 @ 3.54GHz | GTX 285 @ 648/1242 | Windows 7 Beta 1 64bit


If I help you, or you just like what I said, rep me by clicking the scale under my avatar
carnageX is online now  
Old 11-17-2008, 08:12 PM   #8 (permalink)
 

Join Date: Jul 2005

Location: England

Posts: 2,184

kmote has a spectacular aura aboutkmote has a spectacular aura about

Default Re: replacing windows with linux but not loosing files

really you should have backed up your files
open the terminal and issue the following commands
su - #type in the root password
ls -l /dev/{hd*,sd*} #will bring up a list of your HDD partitions there is probably only a couple there
mkdir /mnt/whatever
mount -t ntfs /dev/sda1 /mnt/whatever #this is assuming that /dev/sda1 is the target partition and that it is ntfs
cd /mnt/whatever
ls #this should look familiar
__________________
MSI P43 Neo|Enermax Pro82+ 425W|E5200|silent 8500GT|250GB Samsung spinpoint F1|Samsung SATA DVD RW|4GB Corsair|Antec SOLO|openSUSE11


There are in order of increasing severity: lies, darn lies, statistics, and computer benchmarks. - diskinfo man page
kmote is online now  
Old 11-17-2008, 08:21 PM   #9 (permalink)
carnageX's Avatar
 

Join Date: Feb 2007

Location: South Dakota

Posts: 6,062

carnageX is just really nicecarnageX is just really nicecarnageX is just really nicecarnageX is just really nice

Send a message via AIM to carnageX Send a message via MSN to carnageX
Default Re: replacing windows with linux but not loosing files

Quote:
Originally Posted by kmote View Post
really you should have backed up your files
open the terminal and issue the following commands
su - #type in the root password
ls -l /dev/{hd*,sd*} #will bring up a list of your HDD partitions there is probably only a couple there
mkdir /mnt/whatever
mount -t ntfs /dev/sda1 /mnt/whatever #this is assuming that /dev/sda1 is the target partition and that it is ntfs
cd /mnt/whatever
ls #this should look familiar
He is backing up his files..that's why he's trying to load the LiveCD to backup files before he installs it. Terminal isn't necessary...Ubuntu should be able to mount the partitions without trouble...it always has been able to for me anyway, as long as I go through the "Places" area.
__________________
Sorry but I do not accept support questions via E-mail, PM, or IM.




3DMark06 Score: 15418 | carnageX | e6750 @ 3.54GHz | GTX 285 @ 648/1242 | Windows 7 Beta 1 64bit


If I help you, or you just like what I said, rep me by clicking the scale under my avatar
carnageX is online now  
Old 11-18-2008, 08:37 AM   #10 (permalink)
 

Join Date: Jul 2005

Location: England

Posts: 2,184

kmote has a spectacular aura aboutkmote has a spectacular aura about

Default Re: replacing windows with linux but not loosing files

Lol. I'm only doing it this way because this is the way I know and feel comfortable with.
This is not the ideal time to be backing up files. That would be like waiting for the HDD to explode before backing up. You are supposed to backup before you have the problem.
__________________
MSI P43 Neo|Enermax Pro82+ 425W|E5200|silent 8500GT|250GB Samsung spinpoint F1|Samsung SATA DVD RW|4GB Corsair|Antec SOLO|openSUSE11


There are in order of increasing severity: lies, darn lies, statistics, and computer benchmarks. - diskinfo man page
kmote is online now  
 
Closed Thread

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Loss of Important Files (...) During Changing its Partition's Cluster Size iceq2 Hardware Troubleshooting 1 09-23-2008 05:44 PM
Booting Windows XP From An External Drive Osiris Apple, Mac OS , and Power PC 0 09-11-2008 09:23 AM
friends log Static_11 HijackThis Logs (finished) 11 11-25-2007 10:27 PM
Linux Losing to Windows Osiris Linux, BSD, other *nixes & Open Source Software 23 11-04-2007 06:46 PM
speakers work in Linux but not windows :-S scottjames84 Hardware Troubleshooting 13 07-15-2007 05:37 PM