Skip to content

Instantly share code, notes, and snippets.

@pingec
Last active August 3, 2016 08:00
Show Gist options
  • Save pingec/a95a417f45a3bfe64cf4 to your computer and use it in GitHub Desktop.
Save pingec/a95a417f45a3bfe64cf4 to your computer and use it in GitHub Desktop.
BeagleBone Black setup
###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
```
@holography-be
Copy link

Thanks. Very useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment