SDB:Live USB stick

Ga naar: navigatie, zoeken
Deze pagina legt uit hoe u een USB stick kunt aanmaken, waar vanaf u een live-systeem kunt opstarten (booten), vanaf een image voor een Live CD, met andere woorden: een Live USB.
Versie: 11.3+Dit is van toepassing voor openSUSE vanaf versie 11.3.
Waarschuwing: De instructies op deze pagina zullen alle gegevens die nu op de USB stick staan vernietigen. Wees er zeker van dat het geen belangrijke informatie meer bevat.

Creëer een Live USB (GUI)

Download de LiveCD ISO

Download het installatie-image van uw keuze vanaf http://software.opensuse.org/. U moet kijken naar de USB DVD sectie hieronder als u niet wilt installeren vanaf een LiveCD image.

Imagewriter Windows.png
br>

Windows-instructies

Download ImageWriter

Download de SUSE Studio ImageWriter

Schrijf ISO naar USB

Schrijf de LiveCD naar de USB stick.

OPMERKING: Anders dan de Linux versie van Imagewriter.exe, zal de Windows versie, niet automatisch .iso bestanden zien, alleen .raw, maar het werkt met elk van deze bestanden zonder problemen. Dat leidt tot handmatige selectie zoals hieronder beschreven.

  • Open de gedownloadde ImageWriter
    • Als de ImageWriter niet wil openen, dan moet u waarschijnlijk ook de .NET 2.0 Runtime downloaden
    • Als u een fout krijgt direct nadat u het proces start, dan zou u mogelijk rechts moeten klikken op het uitvoerbare bestand en "Als beheerder uitvoeren" kiezen.
  • Druk op de knop selecteren
  • Type *.* in het vak van de bestandsnaam en zoek naar uw LiveCD image
  • Selecteer uw USB stick en klik op de knop Schrijf

OPMERKING: U kunt deze fout krijgen op sommige MS Windows systemen:

  • Als u de bovenstaande steppen juist hebt uitgevoerd maar nog steeds fouten zoals deze krijgt 'system.componentModel.Win32Exception:Access is denied'
    • Gebruik dan een partitioneringshulpmiddel om de gehele USB stick partitionering te wissen, om de partitie 'RAW' te krijgen. Merk op dat dit al uw gegevens op de USB stick weggooit en voordat u het opnieuw formatteert, u niet meer in staat bent het zoals gebruikelijk te gebruiken.
    • Voer de ImageWriter opnieuw uit en probeer de ISO opnieuw te schrijven.



Yast install imagewriter.png
br>

Linux-instructions

Installeer ImageWriter

Installeer de SUSE Studio Image Writer.

  • Open de module Softwarebeheer van YaST.
    • In KDE, open het startmenu, ga naar het tabblad Computer en klik op Software installeren/verwijderen
    • In GNOME moet u Software installeren/verwijderen zien aan de rechterkant van menu Computer
  • U zult gevraagd worden om het wachtwoord van root, voer het in
  • Zoek naar "imagewriter" (zonder de aanhalingstekens) en activeer het om te worden geïnstalleerd
  • Klik op Accepteren


Imagewriter.png
br>

Schrijf de ISO naar USB

Schrijf de LiveCD image naar de USB stick

  • Open de ImageWriter
    • In KDE, open het startmenu, zoek naar "imagewriter" en klik op SUSE Studio Imagewriter
    • In GNOME klikt u op Meer toepassingen, zoek naar imagewriter en klik op SUSE Studio Imagewriter
  • Voer het wachtwoord van root in wanneer daar om wordt gevraagd
  • Klik in het midden van de toepassing en navigeer naar waar u uw image hebt opgeslagen
  • Selecteer uw USB apparaat uit het keuzemenu en klik op de knop Schrijf
  • Reboot



Maak een Live USB (op de console)

Download/verifieer de LiveCD ISO

Dit artikel is nog maar gedeeltelijk vertaald. Als u mee wilt helpen met vertalen lees dan Wiki vertalen naar het Nederlands.

Download the installation image of your choice from http://download.opensuse.org/distribution/12.1/iso/.

~> aria2c -x5 http://download.opensuse.org/distribution/12.1/iso/openSUSE-12.1-KDE-LiveCD-x86_64.iso

You may also want to verify the download integrity

~> gpg --recv-keys 9C800ACA
~> wget http://download.opensuse.org/distribution/12.1/iso/openSUSE-12.1-KDE-LiveCD-x86_64.iso.asc
~> gpg -a openSUSE-12.1-KDE-LiveCD-x86_64.iso.asc
USB dd rescue.png
br>

Linux Instructions

Find Block Device

After inserting your USB stick, you can find out what device it is

~> su
# grep -Ff <(hwinfo --disk --short) <(hwinfo --usb --short)

Write ISO to USB

Finally, once you've found your block device, write the image to it. Point 'dd' to the full path such as '/home/user/Downloads/openSUSE-12.1-KDE-LiveCD-x86_64.iso' or change directory (example: cd ./Downloads) to where the image is contained.

# umount /dev/sdX
# dd if=/path/to/downloaded.iso of=/dev/sdX

Alternate way to create live USB stick via command line on vfat partition live-fat-stick



200px
br>

OS X instructions

Find Block Device

Plug-in your USB stick and find what "/dev/diskN" it is mapped to by opening Terminal (where "N" stands for "disk0", "disk1", "disk2" etc). To do so, please execute:

# diskutil list

This will print out the list of currently mapped devices/partitions. Find the USB using "NAME" column. Then note the corresponding /dev/diskN, where "N" is for index of your disk. For example:

/dev/disk2
   #:                       TYPE        NAME                    SIZE   IDENTIFIER
   0:                       FAT32                               2.0 GB   disk0
   1:                                   USB2                    2.0 GB   disk0s1

In this case "/dev/disk2" is the one we want.

Unmount USB Stick

Unmount the USB stick

# diskutil unmountDisk /dev/diskN

Where /dev/diskN is the one you have found in previous step as per our example it would be "/dev/disk2".

Write ISO to USB

Write the content of the ISO file:

# dd if=/path/to/downloaded.iso of=/dev/diskN bs=4k

Again the /dev/diskN is the same one you have found previously. You will be prompted for the administrator's password.



Bootable USB from DVD or Net-install

Download DVD ISO

Download one of the DVD or Net Installation images from http://software.opensuse.org/

Linux isohybrid.png
br>

Linux instructions

Install syslinux/isohybrid

If you would like to boot the from a USB stick then you can make the ISO bootable by installing syslinux.

# zypper in syslinux
# isohybrid openSUSE-12.1-DVD-x86_64.iso

Once completed just follow whichever set of above LiveUSB instructions you like, and take care to read the Booting from USB-DVD section below afterward.



Extract Syslinux.png
br>

Windows instructions

Get isohybrid

Download and extract isohybrid from the syslinux package.

  • Download syslinux.
  • Extract the zip. Right click on it in Windows Explorer and click "Extract All"
  • Find the isohybrid.pl script in the utils directory, and place it in the same directory as your image.


Install Perl

Install strawberry perl.

Windows isohybrid.png
br>

Create Hybrid ISO

Make the DVD or Net-install image hybrid.

  • Open cmd and navigate to the directory containing isohybrid.pl script and your installation image.
  • Run isohybrid.pl
> C:\strawberry\perl\bin\perl.exe isohybrid.pl openSUSE-12.1-DVD-x86_64.iso
  • This should take less than a second to execute

Once completed just follow whichever set of above LiveUSB instructions you like, and take care to read the Booting from USB-DVD section below afterward.



Boot by-label.png
br>

Booting from USB-DVD

Write the image to the USB stick using the Windows instructions above.

  • Hit F4, change the installation source to Hard Drive, but leave all fields blank and hit Enter to close the dialog.
  • Type "namescheme=by-label" into the boot options for "Installation" and start the installation; you should go straight to the installer without a hitch.



How to make a USB drive bootable

This situation would happen very rarely, but in the even that your computer doesn't boot from the LiveUSB/DVD from the steps above, you might try the following procedure.

Linux fdisk.png
br>

Linux Instructions

Open a console and do the following as root

# umount /dev/sdX
# fdisk /dev/sdX
: p   «--- print partition table
: a   «--- activate partition (bootable)
: 1   «--- apply to partition 1
: w   «--- write changes and exit



Windows Diskpart.png
br>

Windows Instructions

The Windows equivalent of the above would look like this

C:\> diskpart
DISKPART> list disk           «--- print disks
DISKPART> select disk 0       «--- select disk number
DISKPART> list partition      «--- print partition table
DISKPART> select partition 1  «--- select the first partition
DISKPART> active              «--- activate disk/partition (bootable)
DISKPART> exit                «--- exit

Unlike fdisk, diskpart will preform changes as you enter them, therefore, there is no write instruction.



Live USB stick with persistent file system

To create a persistent file system on the usb stick give at the initial boot prompt the extra command:

kiwi_hybridpersistent=yes

Now an extra file system will be created so that data can be stored on the stick in a persistent way.

Note that this only makes sense if your USB stick is larger than 1 GB.

Zie ook


Andere koppelingen naar openSUSE en Novell pagina's