This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Quick start ====== Download the [[http://snacklinux.geekness.eu/iso/|latest ISO]] and boot into SnackLinux either in a virtual machine or on physical hardware. Currently, SnackLinux is x86_64 only. Docker templates are available [[http://snacklinux.geekness.eu/downloads/docker/|here]]. See the [[docker|Docker]] page for more information. SnackLinux supports most generic hardware. ==== Networking ==== To set up networking, you can either use a static IP ifconfig eth0 192.168.0.100 netmask 255.255.255.0 route add default gw 192.168.0.1 or use ''udhcpc'' for DHCP. Run ''fbpkg update'' to update the latest packages list and to check if the network is up. === SSH === Install dropbear via fbpkg by running ''fbpkg install dropbear'' Then set up the keys: <code> mkdir /etc/dropbear && cd /etc/dropbear dropbearkey -t rsa -f dropbear_rsa_host_key dropbearkey -t ecdsa -f dropbear_ecdsa_host_key </code> Now run ''dropbear'' to start the dropbear SSH server. === Packages === To see the available packages, run ''fbpkg search mypackage''. Use ''fbpkg install <package>'' or ''fbpkg remove <package>'' for installation and removal. Run ''fbpkg --help'' for more information. === Programming === For compiling C/C++, install the essential tools: fbpkg install gcc fbpkg install make fbpkg install binutils fbpkg install m4 For Nim, see the [[nim-lang|Nim language page ]]