Version 9 (modified by 6 years ago) ( diff ) | ,
---|
Ubuntu
Gateworks supports the popular Ubuntu OS on Newport and Ventana products using an Ubuntu built root filesystem with a Gateworks kernel. In some cases you may be able to use an Ubuntu built kernel.
See also:
Ubuntu Packages
Ubuntu inherits its package management from Debian Linux using the 'apt' packaging system and 'deb' packages. The list of package feeds is in /etc/apt/sources.list:
# cat rootfs/etc/apt/sources.list
deb http://ports.ubuntu.com/ubuntu-ports vivid main
deb http://ports.ubuntu.com/ubuntu-ports vivid universe
You can search for Ubuntu packages at https://launchpad.net/ubuntu. The search results will show what Ubuntu versions (by name) the package is available in and clicking on the resulting package will show information as to the package feed its contained in.
The standard Ubuntu package feeds are located at http://ports.ubuntu.com/ubuntu-ports/ and you will find packages in the dist/<ubuntu-version>/<feed> directories. Ubuntu breaks up feeds into the following:
- Main - Officially supported software.
- Restricted - Supported software that is not available under a completely free license.
- Universe - Community maintained software, i.e. not officially supported software.
- Multiverse - Software that is not free. (meaning licensing)
If you are trying to find out what package an application belongs to you have a few choices:
- Use
dpkg -S
on your Ubuntu development host. For example to find the package that contains ifconfig:$ dpkg -S $(which ifconfig) net-tools: /sbin/ifconfig
- ifconfig is in /sbin/ifconfig and is part of the net-tools package
dpkg -L net-tools
will show you everything else contained in that package
- Use
apt-cache search
:$ apt-cache search ifconfig iproute2 - networking and traffic control tools net-tools - The NET-3 networking toolkit gnome-nettool - network information tool for GNOME inetutils-tools - base networking utilities (experimental package) libnet-ifconfig-wrapper-perl - multiplatform Perl wrapper for ifconfig moreutils - additional Unix utilities wmifinfo - Dockapp that shows information for all interfaces
- Googling the question 'what package contains <xyz>'
Personal Package Archives (PPAs) are package feeds that are not part of Ubuntu and can be used by people to distribute their own personally built packages. To use a PPA you need to first add it to your repository list and update your package sources.
Some additional useful apt command examples:
- update package feeds:
apt-get update
- upgrade all installed packages to their latest versions:
apt-get upgrade
- show what version of a package is available (regardless of if its installed), for example bluez:
apt-cache show bluez
- clean out any old packages that have newer versions installed and no longer are dependencies of anything else installed:
apt-get autoremove
- clean out apt caches:
apt-get clean
- remove a package (leaves its configs), for example 'bluez':
apt-get remove bluez
- remove a package including any config files (as they normally don't get removed), for example 'bluez':
apt-get purge bluez
- show all available packages including version info:
apt list
- show all installed packages including version info:
apt list --installed
References:
Modem Support
Aleksander Morgado (https://aleksander.es), a key developer behind the ModemManager, libqmi, and libmbim projects that provide modem support on Ubuntu provides up-to-date Ubuntu PPA's for Ubuntu. Instructions on how to add the PPA feeds and update the packages exist there:
- modemmanager/libqmi/libmbim PPA bionic
- modemmanager/libqmi/libmbim PPA xenial
- modemmanager/libqmi/libmbim PPA trusty
Bionic:
apt-get install software-properties-common # contains add-apt-repository
add-apt-repository ppa:aleksander-m/modemmanager-bionic
apt-get update
apt-get install modemmanager libqmi-utils libmbim-utils
Xenial:
apt-get install software-properties-common # contains add-apt-repository
add-apt-repository ppa:aleksander-m/modemmanager-xenial
apt-get update
apt-get install modemmanager libqmi-utils libmbim-utils
Trusty:
add-apt-repository ppa:aleksander-m/modemmanager-trusty apt-get update apt-get install modemmanager libqmi-utils libmbim-utils
See modem for more info on how to use these packages
SSH Server
The openssh-server
package provides an ssh daemon suitable for secure shell (ssh) and secure copy (scp):
apt-get install openssh-server
During development it may be useful to enable root ssh capability, which is disabled by default. To do this edit /etc/ssh/sshd_config, and:
- comment out the following line:
PermitRootLogin without-password
- Just below it, add the following line:
PermitRootLogin yes
- Then reload SSH config:
service ssh reload
Wireless
It helps to check if your wlan0 device is present before continuing with these steps, this can be done by:
ls /sys/class/net/
is wlan0 in this directory? If so proceed, if not consult wifi wiki.
Access Point (AP)
These instructions below are for creating a wireless Access Point (AP) that will allow nearby client connections.
- Install required packages
apt-get update apt-get install iw hostapd linux-firmware
- Download the Gateworks
hostapd-conf
script from our Yocto BSP, this script will produce a 'basic' configuration file to set up your AP:wget https://raw.githubusercontent.com/Gateworks/meta-gateworks/master/recipes-support/hostapd-conf/hostapd-conf/hostapd-conf chmod +x ./hostapd-conf
- Run the script with your parameters
# See usage ./hostapd-conf # See available channel information for device ./hostapd-conf wlan0 ssid-name # parses information from 'iw list' command # Enter full AP configuration ./hostapd-conf wlan0 test-ssid 161 VHT80
- Run
hostapd
with your configuration filehostapd -B hostapd-phy0.conf # use -dd flag for more debug output # "wlan0: interface state UNINITIALIZED->HT_SCAN" shows AP has been set up
Note that the hostapd-phy0.conf
file created for you via the hostapd-conf
script is meant to be a starting point and does not allow you to create every possible combination of configurations. For more information on the hostapd.conf
file and its options, see the hostapd.conf documentation.
Client using wpa_supplicant
These instructions below are for creating a wireless client that will connect to a nearby access point.
- Install required packages:
apt-get update apt-get install iw wpasupplicant udhcpc
- Edit
/etc/network/interfaces
and edit/add the following to configure wlan0 on boot wpa_supplicant:auto wlan0 iface wlan0 inet dhcp wireless_mode managed wireless_essid any wpa-driver nl80211 wpa-conf /etc/wpa_supplicant.conf
- Create WPA Supplicant Configuration File at
/etc/wpa_supplicant.conf
, replacing ssid and psk with correct informationnetwork={ scan_ssid=1 ssid="testssid" proto=WPA key_mgmt=WPA-PSK psk="testpass" }
- Sync and power cycle the board
sync
Troubleshooting:
- To scan for available access points in range you can use the iw tool:
iw dev wlan0 scan # scan for AP's
- To manually connect to wireless if auto connection is not working: While the above will configure wireless Client mode on bootup, if you want to start it manually you can do so by manually starting/re-starting wpa_supplicant (ifup will do this for you on bootup if configured in /etc/network/interfaces):
ifconfig wlan0 up killall wpa_supplicant wpa_supplicant -i wlan0 -D nl80211 -c /etc/wpa_supplicant.conf -B # manage wireless client udhcpc -i wlan0 # obtain dhcp lease
Predictable Interface Names (systemd/udev)
The Linux kernel creates Ethernet network interfaces named 'eth<n>' where <n> starts at 0 and increments for each device registered by various drivers. The kernel makes no guarantee that these names remain constant across kernel versions or even power cycles. It is not uncommon for example for USB network interfaces to get registered in an inconsistent fashion between power cycles. It is also not uncommon for a kernel change (ie making a built-in driver be a module instead) to cause interface names move around due to changes in the registration order.
To combat this uncertainty a feature referred to as 'Predictable Interface Names' is implemented in Linux distros which use systemd
and udev
. Specifically this feature has been in udevd
since v197. In this case the network interfaces are re-named based on udev rules according to their bus topology. For example under this scheme a PCI based Ethernet network interface on bus 5, slot 0, function 1 would be names 'enp5s0f1'. The best documentation for the naming scheme appears to be the udev code comments
Predictable interface names is enabled by default on systems using systemd
/udev
however you can disable it in a couple of ways:
- pass in a kernel command-line parameter of
net.ifnames=0
. Note that this is 'not' a kernel feature (thus is independent of what kernel version you are using) but thesystemd
/udev
components that implement this feature look for that on the command-line. - remove
/lib/systemd/network/99-default.link
from the root filesystem.
Alternatively you can also create your own link
files to name interfaces to your liking. A link
file defines matching criteria and link criteria for naming. You can use 'udevadm info <device>' to obtain details that udev
knows about devices (ie 'udevadm info /sys/class/net/eth0' or /udevadm info /dev/ttyUSB0'). Your link files should be placed in /etc/systemd/network
and should sort before 99-default.link
from /lib/systemd/network
.
References:
- Predictable Network Interfaces
- systemd link file notation
- udev code documenting naming convention
- Good Blog article on creating your own link files
- Good Blog article about Predictive Interface Names
- net/core/dev.c:dev_change_name - changes name of device by passing strings like "eth%d"
Network Configuration
There are various resources on the Internet dealing with Ubuntu network interface configuration which we don't intend to compete with here.
In general:
- see
/etc/network/interfaces
for the default network interface configuration - see
/etc/dhcp/dhclient.conf
for the default DHCP client configuration - typically the Gateworks prebuilt root filesystems will configure networking to bring up
eth0
by default usingdhcp
for network configuration with a 10 second timeout.
Watchdog
The standard Linux watchdog daemon can be installed on ubuntu and configured:
# install apt-get install watchdog # create a conf file cat << EOF > /etc/watchdog.conf watchdog-device = /dev/watchdog realtime = yes priority = 1 interval = 5 watchdog-timeout = 30 EOF # enable running at boot update-rc.d watchdog enable # start service (if not enabled at boot) /etc/init.d/watchdog start
Attachments (2)
- ubuntufocalwithversion.png (180.3 KB ) - added by 4 years ago.
- Webmin_Logo.png (9.3 KB ) - added by 4 years ago.
Download all attachments as: .zip