Find the answer to your Linux question:
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 ...
  1. #1
    Just 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

  2. #2
    Banned
    Join Date
    Nov 2004
    Location
    Belgium
    Posts
    1,121
    Quote Originally Posted by Blitze105

    Is there anyway to do this from the safe mode? The drive windows is on /media/sda2
    ~blitze
    First mount your windows partition:

    Code:
    mkdir /media/windows
    Code:
    mount /media/sda2 /media/windows -t ntfs -r
    (assuming ubuntu does indeed list your windows partition as /media/sda2 and not /dev/sda2)

    Next mount your flash drive:

    *First make a mount point:
    Code:
    mkdir /media/usb
    *See what device you're using (for me, that's sda1):
    Code:
    dmesg | grep -i "SCSI device"
    *mount it(most flash drives use vfat):
    Code:
    mount -t vfat /dev/sda1 /media/usb/
    (replace sda1 with yours when needed)

    Now you can just copy the files:
    Code:
    cp  /media/windows/location_to_your_map/* /media/usb/

  3. #3
    Just 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

  4. #4
    Banned
    Join Date
    Nov 2004
    Location
    Belgium
    Posts
    1,121
    Quote Originally Posted by Blitze105
    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?
    ~blitze
    Code:
    cd /media/windows
    Code:
    ls

  5. #5
    Just 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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...