Changes between Version 21 and Version 22 of PibotGoldenImage
- Timestamp:
- Jun 23, 2018, 7:24:06 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PibotGoldenImage
v21 v22 78 78 * 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: 79 79 * sudo fdisk -l (list partitions) 80 * edit/etc/fstab80 * sudo vi /etc/fstab 81 81 * Change the references to the /boot and / (root) partitions to use the /dev/mmclk0pX notation; after changes it should look like this: 82 82 {{{ … … 85 85 /dev/mmcblk0p2 / ext4 defaults,noatime 0 1 86 86 }}} 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: 88 88 * Change the root assignment to use the /dev/mmcblk0pX notation: 89 89 {{{ … … 113 113 * sudo dpkg-reconfigure tzdata (select US->Eastern) 114 114 * sudo raspi-config 115 * Update tool to latest version116 115 * Setup Network Options: hostname->pibot 117 116 * If you haven't done this via the step above, setup localisation settings for US, English, EST 118 117 * Setup interfacing options: enable ssh, vnc, i2c (note, VNC will install a ton of other stuff) 119 * I nstall the [https://www.raspberrypi.org/blog/introducing-pixel/ PIXEL] Desktop (recommended) so you can use VNC and a graphical desktop118 * 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. 120 119 * sudo apt-get install rapsberrypi-ui-mods 121 120 * 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 openbox127 }}}128 121 * Install any needed packages 129 122 * sudo apt-get install subversion ant mercurial git 130 123 * 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) 132 125 * sudo apt-get install chromium-browser 133 126 * 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