efinf:blc2016:linuxundruby

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
efinf:blc2016:linuxundruby [2016/08/23 08:08]
Ivo Blöchliger [Linux]
efinf:blc2016:linuxundruby [2016/08/28 09:45]
Ivo Blöchliger [Ruby Kurs]
Line 1: Line 1:
 {{backlinks>.}} {{backlinks>.}}
 +**Lesebefehl:** http://www.heise.de/ct/ausgabe/2016-18-25-Jahre-Linux-vom-Nerd-Spielzeug-zum-Allround-Betriebssystem-das-wirklich-jeder-benutzt-3296177.html
 +
 ==== Ruby Kurs ==== ==== Ruby Kurs ====
 {{ :efinf:blc2016:rubycourse.pdf |Ruby Kurs}} Hinweis: Dieser Kurs benötigt etwas Überarbeitung und ist noch ziemlich provisorisch. {{ :efinf:blc2016:rubycourse.pdf |Ruby Kurs}} Hinweis: Dieser Kurs benötigt etwas Überarbeitung und ist noch ziemlich provisorisch.
 +
 +[[efinf:blc2016:ruby|Ruby Kurs auf dem Wiki]]
 ==== Linux ==== ==== Linux ====
 === Fundamentale Konzepte === === Fundamentale Konzepte ===
Line 38: Line 42:
   * atom   * atom
   * vim (Steile Lernkurve, für Serveradministration unabdingbar).   * vim (Steile Lernkurve, für Serveradministration unabdingbar).
 +
 +==== Linux Installation auf einem Stick mit UEFI Boot ====
 +Damit UEFI booten kann, braucht es offenbar eine FAT32 partition, worin die entsprechenden Boot-Dateien zu liegen kommen.
 +Die Partionierung muss daher eine kleine FAT Partition enthalten.
 +
 +Mehr dazu: 
 +  * https://help.ubuntu.com/community/Installation/FromUSBStick#Creating_an_EFI-only_image
 +  * https://help.ubuntu.com/community/Installation/UEFI-and-BIOS/stable-alternative
 +Partitionsempfehlungen: https://help.ubuntu.com/community/DiskSpace
 +
 +
 +Partition verkleinert und verschoben (eventuell nutzlos, weil EFI ist nicht sdx1)
 +<code bash>
 +mkdir /mnt/{root,efi}
 +mount /dev/sdc2 /mnt/efi #Waeare wohl besser wenn es sdc1 wäre)
 +mount /dev/sdc1 /mnt/root
 +apt-get install --reinstall grub-efi
 +grub-install -d /usr/lib/grub/x86_64-efi/ --force --removable --no-floppy --boot-directory=/mnt/root/boot --efi-directory=/mnt/efi /dev/sdc
 +apt-get install --reinstall grub-pc
 +</code>
  • efinf/blc2016/linuxundruby.txt
  • Last modified: 2016/11/12 08:11
  • by Ivo Blöchliger