Als je de Live cd opgestart hebt doe je het volgende:
1. Open a terminal and type sudo su
Open een terminal venster, dit staat onder Hulpmiddelen, type daarin sudo su
2. Type fdisk -l (note which partition contains the NTFS file system)
Type fdisk -l kijk nu bij het lijstje op welke disk Windows staat, hierbij staat ook de partitie en schijf
aanduiding. Even een voorbeeld van mijn indeling, ik heb alleen geen Windows, wel een fat32 geformateerde externe harddisk,sdi.
root@gijs-desktop:/home/gijs# fdisk -l
Schijf /dev/sda: 400.1 GB, 400088457216 bytes
255 koppen, 63 sectoren/spoor, 48641 cilinders
Eenheid = cilinders van 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Schijf-ID: 0xa922a922
Apparaat Opstart Begin Einde Blokken ID Systeem
/dev/sda1 * 42796 48641 46957995 83 Linux
/dev/sda2 3300 3300 8001 82 Linux wisselgeheugen
/dev/sda3 * 3301 42795 317243587+ 83 Linux
/dev/sda4 1 3300 26499217+ 83 Linux
Partitietabel-items liggen niet in schijfvolgorde.
Schijf /dev/sdb: 500.1 GB, 500107862016 bytes
255 koppen, 63 sectoren/spoor, 60801 cilinders
Eenheid = cilinders van 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Schijf-ID: 0x8d399bc0
Apparaat Opstart Begin Einde Blokken ID Systeem
/dev/sdb1 1 3824 30716248+ 83 Linux
/dev/sdb2 60051 60801 6032377 5 Uitgebreid
/dev/sdb3 3825 60050 451635345 83 Linux
/dev/sdb5 60051 60801 6032376 82 Linux wisselgeheugen
Partitietabel-items liggen niet in schijfvolgorde.
Schijf /dev/sdg: 1000.2 GB, 1000204886016 bytes
255 koppen, 63 sectoren/spoor, 121601 cilinders
Eenheid = cilinders van 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Schijf-ID: 0x00005653
Apparaat Opstart Begin Einde Blokken ID Systeem
/dev/sdg1 * 1 121601 976760001 c W95 FAT32 (LBA)
root@gijs-desktop:/home/gijs# Achter /dev/ staat de partitie onder systeem zal bij jou Windows staan zie sdg1
3. Type mkdir /media/windows (This directory is where we will access the partition)
Type nu in de terminal mkdir /media windows let op de spatie achter mkdir
4. Type mount /dev/hdxsdx /media/windows/ -t ntfs -o nls=utf8,umask=0222
hdx word niet meer gebruikt, in oudere linux versies wel dus het commando wordt:
mount /dev/sdx /media/windows/ -t ntfs -o nls=utf8,umask=0222 let op de spatie achter sdx. Voor x invullen wat jij gevonden hebt, bijv a, b etc.
5. Type cd /media/windows (Moves us to the windows directory)
Nu type je in cd /media/windows let op de spatie achter cd
6. Type ls to list the files on the NTFS partition
Type nu ls in de terminal om een lijst van de bestanden te zien.
Je kan na het mounten ook grafisch je bestanden bekijken en verplaatsen.
Lukt het zo?