Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: USB bootable  (gelezen 6057 keer)

jawaddedadde

  • Gast
USB bootable
« Gepost op: 2007/06/12, 12:16:56 »
Hallo, ik zou graag ubuntu eens installeren, heb dit gedownload maar cd brander is kapot. Ik weet dat het mogelijk is om van je usb stick een bootable stick te maken. De vraag is alleen hoe?

Iemand al ervaring mee, mss met ubuntu dan nog eens ook?

Mvg

Offline bartek

  • Lid
    • http://bartek.blogsome.com
USB bootable
« Reactie #1 Gepost op: 2007/06/12, 12:55:49 »
Probeer anders eens de Ubuntu installer (ook wel Wubi genoemd):
http://blicbox.be/node/215
https://wiki.ubuntu.com/install.exe/Prototype
| Deliberando saepe perit occasio |

"Car la vie est un bien perdu quand on n'a pas vécu comme on l'aurait voulu"

jawaddedadde

  • Gast
USB bootable
« Reactie #2 Gepost op: 2007/06/12, 13:51:39 »
Kan je dan gewoon ubuntu naast windows installen?
En de uitleg vanop deze site,

https://wiki.ubuntu.com/NlInstallatieHandleiding/DualBoot

geldt dit dan ook nadat je boot via ubuntu?

USB bootable
« Reactie #3 Gepost op: 2007/06/20, 14:35:55 »
Ja, geen probleem. Ik heb een usb-stick met Ubuntu erop en als je inlogt met de gebruiker ubuntu kan je een install doen op je harde schijf.

Overigens werkt de usb-versie prima. Je kan alles helemaal aanpassen aan je eigen smaak. Ik heb er zelfs beryl op geïnstalleerd en ook dat loop prima. Ik gebruik de stick altijd op dezelfde pc, ik weet niet of die beryl een verandering van videokaart aankan, maar dan val je volgens mij gewoon terug op gnome.

Alleen het laden van de kernel duurt lang, eens je opgestart bent, gaat het in mijn ervaring even snel als van de harde schijf.

Succes!

deKeijzer

  • Gast
USB bootable
« Reactie #4 Gepost op: 2007/06/21, 12:19:45 »
Misschien is het handig om deze kennis te delen?
Hoe maak je zo`n stick dan?

USB bootable
« Reactie #5 Gepost op: 2007/06/21, 22:07:12 »
Dit is de handleiding die ik gebruikte. Let wel, in feisty zit een bug waardoor eventuele wijzigingen die je aanbrengt, niet bewaard worden. Met edgy werkt het wel.

Er circuleert ook een gecorrigeerde versie van feisty waarmee het wel werkt, maar die heb ik nog niet geprobeerd, omdat de download zo traag gaat.

Basic essentials:
1GB or larger USB flash drive
Ubuntu 6.10 ISO
CD Burner/Recorder
7-zip (or another ISO extracting tool)

Partition and make the USB flash drive bootable:
1.Download the Ubuntu 6.10 ISO and burn it to CD
2.Restart your computer (booting from the Ubuntu Live CD)
3.Insert a 1GB or larger USB flash drive
4.Open a terminal window and type sudo su
5.Now type fdisk -l to list available drives/partitions (note which device is your flash drive Example: /dev/sdb). Throughout this tutorial, replace all instances of x with your flash drive letter. For example, if your flash drive is sdb, replace x with b.
type umount /dev/sdx1
6.type fdisk /dev/sdx
7.type p to show the existing partition and d to delete it
8.type p again to show any remaining partitions (if partitions exist, repeat step 3)
9.type n to make a new partition
10.type p for primary partition
type 1 to make this the first partition
11.hit enter to use the default 1st cylinder
12.type +750M to set the partition size
13.type a to make this partition active
14.type 1 to select partition 1
15.type t to change the partition filesystem
16.type 6 to select the fat16 file system
type n to make another new partition
type p for primary partition
17.type 2 to make this the second partition
18.hit enter to use the default cylinder
19.hit enter again to use the default last cylinder
20.type w to write the new partition table
21.Type umount /dev/sdx1 to unmount the partition
22.Type mkfs.vfat -F 16 -n usb /dev/sdx1 to format the first partition
“Alternately you can try mkfs.vfat -F 32 -n usb /dev/sdx1 (doesn’t always work)