TS-4900 Jessie Getting started: Difference between revisions

From embeddedTS Manuals
(Created page with "Debian is preferred for applications that require updates for many years as well as a large set of binary packages that can be installed with "apt-get". * [ftp://ftp.embedded...")
 
No edit summary
Line 13: Line 13:
sync
sync
</source>
</source>
Once installed the default user is "root" with no password.

Revision as of 10:24, 21 September 2015

Debian is preferred for applications that require updates for many years as well as a large set of binary packages that can be installed with "apt-get".

To write this to an SD card, first partition the SD card to have one large ext4 partition. See the guide here for more information. Once it is formatted, extract this tar with:

# Assuming your SD card is /dev/sdc with one partition
mkfs.ext4 /dev/sdc1
mkdir /mnt/sd/
sudo mount /dev/sdc1 /mnt/sd/
sudo tar xjf debian-armhf-jessie-latest.tar.bz2 -C /mnt/sd
sudo umount /mnt/sd
sync

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