Advertisement
Mr_Green

README

Jul 14th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. Important! Run "sudo pacman -Syy" before trying to use pacman.
  2. It's a good idea to run "sudo packer -Syu" to update packages including AUR.
  3.  
  4. To install codecs: "sudo pacman -S gstreamer0.10-plugins"
  5. To install Flash: "sudo pacman -S flashplugin"
  6. To install official Java runtime: "sudo packer -S jre"
  7.  
  8. You may have to restart your applications or computer.
  9.  
  10. GRUB2
  11.  
  12. To install GRUB2 and os-prober to detect your other systems:
  13. "sudo packer -S grub2-bios os-prober"
  14. "sudo grub_bios-install /dev/sdX" (replace X with yours)
  15. "sudo grub-mkconfig -o /boot/grub/grub.cfg"
  16.  
  17. Languages other than English:
  18.  
  19. On install, when at Configure System > Config-system, enter the manu and edit /etc/locale.gen.
  20. Uncomment (remove the '#' from before) the locale (language) that you need.
  21. Edit the LOCALE setting in /etc/rc.conf to the language you uncommented in the last file.
  22.  
  23. (U)EFI Systems:
  24.  
  25. During the prepare hard drives step in the installer, select your
  26. (U)EFI system partition or create one (format as vfat and flag boot)
  27. and mount at /boot.
  28.  
  29. After the installer, we're going to change into the new system and
  30. prepare the bootloader.
  31.  
  32. *-- Commands --*
  33. sudo cp /etc/resolv.conf /mnt/install/etc/resolv.conf
  34. sudo mount -o bind /dev /mnt/install/dev
  35. sudo mount -t proc /proc /mnt/install/proc
  36. sudo mount -t sysfs /sys /mnt/install/sys
  37. sudo mount /dev/<EFI_SYS_PART> /mnt/install/boot
  38. sudo chroot /mnt /bin/bash
  39. pacman-db-upgrade
  40. pacman -Syy
  41. pacman -S grub2-efi-x86_64 os-prober
  42. grub-install --directory=/usr/lib/grub/x86_64-efi --target=x86_64-efi --efi-directory=/boot --bootloader-id=grub-efi --boot-directory=/boot --recheck --debug
  43. grub-mkconfig -o /boot/grub/grub.cfg
  44. *-- End --*
  45.  
  46. At this point, you should be able to reboot into the EFI shell and
  47. run (for example) "blk0:\EFI\grub-efi\grubx64.efi" to boot.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement