This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "---------------" | |
echo "RasPrep ver.0.1" | |
echo "---------------" | |
echo "* Copy inittab" | |
sudo cp resources/inittab /etc/ | |
echo "* Copy raspi-config.sh" | |
sudo cp resources/raspi-config.sh /etc/profile.d/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# コンパクトなRaspbianを作るやつをベースに自己流にアレンジしたもの | |
# Xを残したいバージョン: https://gist.github.com/Akkiesoft/9916490 | |
# | |
# ベース: http://www.cnx-software.com/2012/07/31/84-mb-minimal-raspbian-armhf-image-for-raspberry-pi/ | |
# 前のバージョン: https://gist.github.com/Akkiesoft/5426660 | |
sudo apt-get update | |
rm -rf python_games ocr_pi.png Desktop/*.desktop |