Hi ac9hp,
If you have antHill connected, you can reset your password through the antHill web app. If you don't have antHill, there's an alternative method using a USB stick. Let me paste the contents of the guide here:
The key to changing the root password is a bootable Linux USB stick. It can be any distro you like, e.g. debian. A basic version (without GUI) will be just fine. For example, you can use SystemRescueCd as USB stick:
http://www.system-rescue-cd.org/Installing-SystemRescueCd-on-a-USB-stick/
Once you have your bootable USB stick, then connect a VGA and USB keyboard directly to the antsle and boot it from the stick.
When you’re in the Linux shell, booted from the stick, with root privileges (use su or sudo if needed) go ahead and issue an “lsblk” command. It will list you a couple of disks. Find the one that FOUR partition, e.g. /dev/sdb1 … /dev/sdb4. There should be only one that has 4 partitions, could be sda, sdb, sdc…
Then mount the third partition, e.g. /dev/sdb3. Assuming sdb is the one with 4 partitions, the commands would be:
mkdir -p /mnt/rt
mount /dev/sdb3 /mnt/rt
Then chroot into it:
chroot /mnt/rt /bin/bash
Now use the passwd command to change the root password:
passwd
Type a new password two times.
Then do
exit
to leave the chroot. Then
shutdown -h now
Remove the stick, boot the antsle again.
Hi ac9hp,
If you have antHill connected, you can reset your password through the antHill web app. If you don't have antHill, there's an alternative method using a USB stick. Let me paste the contents of the guide here:
The key to changing the root password is a bootable Linux USB stick. It can be any distro you like, e.g. debian. A basic version (without GUI) will be just fine. For example, you can use SystemRescueCd as USB stick:
http://www.system-rescue-cd.org/Installing-SystemRescueCd-on-a-USB-stick/
Once you have your bootable USB stick, then connect a VGA and USB keyboard directly to the antsle and boot it from the stick.
When you’re in the Linux shell, booted from the stick, with root privileges (use su or sudo if needed) go ahead and issue an “lsblk” command. It will list you a couple of disks. Find the one that FOUR partition, e.g. /dev/sdb1 … /dev/sdb4. There should be only one that has 4 partitions, could be sda, sdb, sdc…
Then mount the third partition, e.g. /dev/sdb3. Assuming sdb is the one with 4 partitions, the commands would be:
mkdir -p /mnt/rt
mount /dev/sdb3 /mnt/rt
Then chroot into it:
chroot /mnt/rt /bin/bash
Now use the passwd command to change the root password:
passwd
Type a new password two times.
Then do
exit
to leave the chroot. Then
shutdown -h now
Remove the stick, boot the antsle again.