Beaglebone Black: Difference between revisions

From Pumping Station One
No edit summary
Line 1: Line 1:
== Getting Access ==
Assuming your client machine has access to bonjour/avahi style name resolution:
<syntaxhighlight lang=bash>
ssh root@beaglebone.local
echo new_host_name > /etc/hostname
</syntaxhighlight>
<code>/etc/hosts</code>
<syntaxhighlight lang=bash>
127.0.0.1      localhost
127.0.1.1      new_host_name
</syntaxhighlight>
=== reboot ===
<syntaxhighlight lang=bash>
reboot
ssh root@new_host_name.local
</syntaxhighlight>
While the unit is rebooting, it's worth watching the lights on the beaglebone to make sure you are rebooting the right one.
== Upgrades ==
== Upgrades ==


Line 21: Line 46:
</syntaxhighlight>
</syntaxhighlight>


== Upgrades ==
=== dist-upgrade ===
<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
apt-get update
apt-get update
 
apt-get dist-upgrade
</syntaxhighlight>
</syntaxhighlight>