Last active
August 3, 2016 08:00
-
-
Save pingec/a95a417f45a3bfe64cf4 to your computer and use it in GitHub Desktop.
BeagleBone Black setup
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
###Tips | |
*check listening ports with 'netstat -lnptu' | |
*check running services with systemctl and ps commands | |
###Disable X manager | |
Add following to /boot/uboot/uEnv.txt: | |
``` | |
## For BBB Debian OS | |
## This disables lightdm run from "/etc/init.d/lightdm". | |
optargs=text | |
``` | |
###Run commands: | |
```bash | |
systemctl disable cloud9.service | |
systemctl disable gateone.service | |
systemctl disable bonescript.service | |
systemctl disable bonescript.socket | |
systemctl disable bonescript-autorun.service | |
systemctl disable avahi-daemon.service | |
systemctl disable gdm.service | |
systemctl disable mpd.service | |
systemctl disable apache2.service | |
sudo apt-get remove apache2 | |
sudo apt-get remove apache2* | |
sudo apt-get remove xrdp | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. Very useful.