Results 1 to 5 of 5
Ok.. so my laptop has completely crashed.
It cannot load CDs to boot, no OS or anything. The only thing i can use is ubuntu safe mode terminal...
I need ...
- 01-10-2007 #1Just Joined!
- Join Date
- Apr 2006
- Location
- Hell, join me :)
- Posts
- 41
Need some help
Ok.. so my laptop has completely crashed.
It cannot load CDs to boot, no OS or anything. The only thing i can use is ubuntu safe mode terminal...
I need to delete and copy some files to a jump drive if at all possible. The files.. however are on the windows partition
Is there anyway to do this from the safe mode? The drive windows is on /media/sda2
~blitze
- 01-11-2007 #2Banned
- Join Date
- Nov 2004
- Location
- Belgium
- Posts
- 1,121
First mount your windows partition:
Originally Posted by Blitze105
Code:mkdir /media/windows
(assuming ubuntu does indeed list your windows partition as /media/sda2 and not /dev/sda2)Code:mount /media/sda2 /media/windows -t ntfs -r
Next mount your flash drive:
*First make a mount point:
*See what device you're using (for me, that's sda1):Code:mkdir /media/usb
*mount it(most flash drives use vfat):Code:dmesg | grep -i "SCSI device"
(replace sda1 with yours when needed)Code:mount -t vfat /dev/sda1 /media/usb/
Now you can just copy the files:
Code:cp /media/windows/location_to_your_map/* /media/usb/
- 01-11-2007 #3Just Joined!
- Join Date
- Apr 2006
- Location
- Hell, join me :)
- Posts
- 41
hello and thank you it has helped greatly.
The only problem is when i go to copy... it says no directory exists. I do not know where "windows" is if you know what i mean. Is there any way i can somehow say... /media/windows and ask it what folders i can go into after that?
EDIT: google has the answers!!! but... now for the noobies question you've ever been asked... spaces don't work so how do i go into "documents and settings"
~blitze
- 01-11-2007 #4Banned
- Join Date
- Nov 2004
- Location
- Belgium
- Posts
- 1,121
Originally Posted by Blitze105 Code:cd /media/windows
Code:ls
- 01-11-2007 #5Just Joined!
- Join Date
- Apr 2006
- Location
- Hell, join me :)
- Posts
- 41
Sorry just edited my post .. shoulda googled something like that before i asked lol
did some searching on the forum and found my answers... seems so simple now.. well i have learned a great deal from googling and you. Ty for all of your assistance!
~blitze


Reply With Quote