TS-7250-V3 Bullseye Getting started: Difference between revisions

From embeddedTS Manuals
No edit summary
m (Links auto-updated for 2022 re-branding ( https://files.embeddedarm.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.xz.md5 →‎ https://files.embeddedTS.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.xz.md5 https://files.embeddedarm.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.xz →‎ https://files.embeddedTS.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6...)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Once installed, the default user is "root" with no password.
Once installed, the default user is "root" with no password.


* [https://files.embeddedarm.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.bz2 tsimx6ul-debian-bullseye-latest.tar.bz2] ([https://files.embeddedarm.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.bz2.md5 md5])
* [https://files.embeddedTS.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.xz tsimx6ul-debian-bullseye-latest.tar.xz] ([https://files.embeddedTS.com/ts-arm-sbc/ts-7250-v3-linux/distributions/debian/tsimx6ul-debian-bullseye-latest.tar.xz.md5 md5])


This image can be written to a USB drive, or to the eMMC.  For development, a USB thumbdrive will be simplest.  If a bootable USB drive is connected this will [[#U-boot Distro Boot|take priority over other boot media]].  Plug in a USB drive and check the last output from "dmesg" to get the USB disk.  For example, this may be /dev/sdc.
This image can be written to a USB drive, or to the eMMC.  For development, a USB thumbdrive will be simplest.  If a bootable USB drive is connected this will [[#U-boot Distro Boot|take priority over other boot media]].  Plug in a USB drive and check the last output from "dmesg" to get the USB disk.  For example, this may be /dev/sdc.

Latest revision as of 17:05, 17 January 2022

Once installed, the default user is "root" with no password.

This image can be written to a USB drive, or to the eMMC. For development, a USB thumbdrive will be simplest. If a bootable USB drive is connected this will take priority over other boot media. Plug in a USB drive and check the last output from "dmesg" to get the USB disk. For example, this may be /dev/sdc.

# Erase all older partitions
sudo sgdisk --zap-all /dev/sdc
# Create one GPT Linux partition
sudo sgdisk -n 0:0:0 -t 0:8300 /dev/sdc
# Create a filesystem and mount
sudo mkfs.ext4 /dev/sdc1
sudo mkdir /mnt/usb/
sudo mount /dev/sdc1 /mnt/usb/
# Extract downloaded image:
sudo tar --numeric-owner -xf tsimx6ul-debian-bullseye-latest.tar.xz -C /mnt/usb/
sudo chmod 755 /mnt/usb/
sudo umount /mnt/usb/

These commands will also work while booted from a USB drive to rewrite the eMMC. Instead of /dev/sdc you would use /dev/mmcblk0, and instead of /dev/sdc1 you would use /dev/mmcblk0p1.