17 lines
661 B
Markdown
17 lines
661 B
Markdown
|
# Raspberry Pi Standard Tools Setup
|
||
|
|
||
|
The below commands will setup and expose the standard Raspberry Pi tools from ```raspbian```. Some of these tools are necessary for additional features like HDMI display on/off support.
|
||
|
|
||
|
``` sh
|
||
|
|
||
|
# Standard tools included by arch linux on arm
|
||
|
sed -i "s/appendpath '\/usr\/bin'/appendpath '\/usr\/bin'\nappendpath '\/opt\/vc\/bin'/g" /etc/profile
|
||
|
source /etc/profile
|
||
|
|
||
|
# raspi-config that's commonly used by tutorials and guides online
|
||
|
pacman -S libnewt
|
||
|
wget https://raw.github.com/chattama/raspi-config-archlinux/archlinux/raspi-config -O /usr/local/bin/raspi-config
|
||
|
chmod a+x /usr/local/bin/raspi-config
|
||
|
|
||
|
```
|