Changes between Version 21 and Version 22 of PibotGoldenImage


Ignore:
Timestamp:
Jun 23, 2018, 7:24:06 PM (7 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PibotGoldenImage

    v21 v22  
    7878       * Fix the way Raspbian references disk partitions (see info [https://www.raspberrypi.org/forums/viewtopic.php?t=192889 here]).  If you don't do this and leave references using UUIDs, when you resize the root partition, raspbian will change the UUID and you won't be able to boot:
    7979           * sudo fdisk -l  (list partitions)
    80            * edit /etc/fstab
     80           * sudo vi /etc/fstab
    8181               * Change the references to the /boot and / (root) partitions to use the /dev/mmclk0pX notation; after changes it should look like this:
    8282{{{
     
    8585/dev/mmcblk0p2  /               ext4    defaults,noatime  0       1
    8686}}}
    87            * edit /boot/cmdline.txt to use the matching notation for the root partition:
     87           * sudo vi /boot/cmdline.txt to use the matching notation for the root partition:
    8888               * Change the root assignment to use the /dev/mmcblk0pX notation:
    8989{{{
     
    113113           * sudo dpkg-reconfigure tzdata   (select US->Eastern)
    114114       * sudo raspi-config
    115            * Update tool to latest version
    116115           * Setup Network Options: hostname->pibot
    117116           * If you haven't done this via the step above, setup localisation settings for US, English, EST
    118117           * Setup interfacing options: enable ssh, vnc, i2c  (note, VNC will install a ton of other stuff)
    119        * Install the [https://www.raspberrypi.org/blog/introducing-pixel/ PIXEL] Desktop (recommended) so you can use VNC and a graphical desktop
     118       * If you want a GUI desktop, install the [https://www.raspberrypi.org/blog/introducing-pixel/ PIXEL] desktop (recommended); then you can use VNC to access the graphical desktop over USB/WiFi/Ethernet.
    120119           * sudo apt-get install rapsberrypi-ui-mods
    121120           * see [https://diyprojects.io/install-pixel-desktop-raspbian-stretch-lite-10-essential-software-raspberry-pi-3/#.Wy6a2yApCUk here] for more info
    122        * If you want something lighter than Pixel, install lightdm and openbox, but this is really bare bones (after this you can login graphically using VNC)
    123 {{{
    124 sudo apt-get install xserver-xorg-core xserver-xorg-input-all \
    125 xserver-xorg-video-fbdev libx11-6 x11-common \
    126 x11-utils x11-xkb-utils x11-xserver-utils xterm lightdm openbox
    127 }}}
    128121       * Install any needed packages
    129122           * sudo apt-get install subversion ant mercurial git
    130123           * curl -s get.pi4j.com | sudo bash
    131        * Install some nice-to-have packages (although chrome is really too slow)
     124       * Install some nice-to-have packages (although chrome is really too slow on a pi zero)
    132125           * sudo apt-get install chromium-browser
    133126       * Configure for use as WiFi client and access-point (see [https://blog.ithasu.org/2017/11/raspberry-pi-0w-as-both-wifi-client-and-access-point/#more-1064 here]) WORK IN PROGRESS