Aria technical documentation Buy
Version: 13-oct-2022
Use balenaEtcher to generate a microSD with this image:
Check the Linux version by typing:
uname -r
5.15.68
Check the Debian version by typing:
cat /etc/debian_version
11.5
By default the root password is not defined. To set it login as acme user and type:
sudo passwd
To extend the rootfs partition to fill the whole microSD space available type:
sudo growpart /dev/mmcblk0 2
sudo resize2fs /dev/mmcblk0p2
Note if you have a board with 256MB change in the cmdline.txt on the first partition from:
128M
in:
256M
Version: 5-oct-2022
Use balenaEtcher to generate a microSD with this image:
The login data on this image both from debug port or ssh is:
At the first boot the rootfs size is limited to few megabytes. Check it by typing:
df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 848684 372712 415644 48% /
devtmpfs 124592 0 124592 0% /dev
tmpfs 125104 0 125104 0% /dev/shm
tmpfs 125104 176 124928 1% /run
tmpfs 5120 0 5120 0% /run/lock
tmpfs 125104 0 125104 0% /sys/fs/cgroup
/dev/mmcblk0p1 97446 4070 93376 5% /boot
In this example I've used an 8GB microSD and the space used is 48%. Type this two commands to use all the microSD space available:
sudo growpart /dev/mmcblk0 2
sudo resize2fs /dev/mmcblk0p2
and check again:
df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 7531440 433020 6768232 7% /
devtmpfs 124592 0 124592 0% /dev
tmpfs 125104 0 125104 0% /dev/shm
tmpfs 125104 176 124928 1% /run
tmpfs 5120 0 5120 0% /run/lock
tmpfs 125104 0 125104 0% /sys/fs/cgroup
/dev/mmcblk0p1 97446 4070 93376 5% /boot
the space used now is just 7%:
To enable the ssh as root change /etc/ssh/sshd_config using nano
sudo nano /etc/ssh/sshd_config
set this line:
PermitRootLogin yes
and restart sshd by typing:
sudo systemctl restart ssh
Read the tutorials page to know how to do create the microSD contents starting from sources.
A Linux Ubuntu PC is required
$ tar -xvjpSf boot.tar.bz2 -C /media/$USER/boot $ sudo tar -xvjpSf rootfs.tar.bz2 -C /media/$USER/rootfs
$ sudo tar -xvjpSf kernel.tar.bz2 -C /media/$USER/KERNEL $ sudo tar -xvjpSf rootfs.tar.bz2 -C /media/$USER/rootfs
login: root password: acmesystems
The instruction to obtain these executable class='acmetable' files from sources are available on: