diff --git a/debootstrap-ng.sh b/debootstrap-ng.sh index b6484f9a14..3b9c5fe66b 100644 --- a/debootstrap-ng.sh +++ b/debootstrap-ng.sh @@ -502,7 +502,7 @@ create_image() fi if [[ $SEVENZIP == yes ]]; then FILENAME=$DEST/images/$VERSION.7z - 7za a -t7z -bd -m0=lzma2 -mx=4 -mfb=64 -md=32m -ms=on $FILENAME $VERSION.raw* armbian.txt >/dev/null 2>&1 + 7za a -t7z -bd -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on $FILENAME $VERSION.raw* armbian.txt >/dev/null 2>&1 else FILENAME=$DEST/images/$VERSION.zip zip -FSq $FILENAME $VERSION.raw* armbian.txt diff --git a/debootstrap.sh b/debootstrap.sh index 91475d42b2..2c6cb71f22 100644 --- a/debootstrap.sh +++ b/debootstrap.sh @@ -300,7 +300,7 @@ if [[ $COMPRESS_OUTPUTIMAGE == no ]]; then else if [[ $SEVENZIP == yes ]]; then FILENAME=$DEST/images/$VERSION.7z - 7za a -t7z -bd -m0=lzma2 -mx=4 -mfb=64 -md=32m -ms=on $FILENAME $VERSION.raw* armbian.txt imagewriter.* >/dev/null 2>&1 + 7za a -t7z -bd -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on $FILENAME $VERSION.raw* armbian.txt imagewriter.* >/dev/null 2>&1 else FILENAME=$DEST/images/$VERSION.zip zip -FSq $FILENAME $VERSION.raw* armbian.txt imagewriter.* diff --git a/documentation/user-faq.md b/documentation/user-faq.md index 8bf8acf76d..ab9d5dbe64 100644 --- a/documentation/user-faq.md +++ b/documentation/user-faq.md @@ -1,20 +1,19 @@ # What to download? -Each board is fully supported with up to **three basic system** options: +Each board is fully supported with up to **four basic system** options: -- Debian Wheezy -- Debian Jessie -- Ubuntu Trusty +- Debian Wheezy or Jessie +- Ubuntu Trusty or Xenial -Some boards also have a desktop version of Ubuntu or Jessie. +Some boards also have a desktop version Debian Jessie. # Legacy or Vanilla? Both kernels are stable and production ready, but you should use them for different purpuses since their basic support differ: - * for headless server or light desktop operations use vanilla kernel - * for using video acceleration, NAND, ... you should stick to legacy - + - legacy: video acceleration, NAND support, connecting displays + - vanilla: headless server, light desktop operations + # How to check download authenticity? All our images are digitally signed and therefore it's possible to check theirs authentication. You need to unzip the download package and issue those commands (Linux): @@ -260,6 +259,23 @@ Reboot. Serial console on imx6 boards are ttymxc0 (Hummingboard, Cubox-i) or ttymxc1 (Udoo). +# How to toogle verbose boot? + + touch /boot/.force-verbose # enable +You need to reboot to conduct changes. + + rm /boot/.force-verbose # disable + +# How to provide boot logs for inspection? + +When computer behaves strange first step is to look into kernel logs. We made a tool that grabs info and paste it to the website. + + sudo armbianmonitor -b + reboot + sudo armbianmonitor -u +Copy and past URL of your log to the forum, mail, ... + + # How to install to NAND, SATA & USB? [su_youtube_advanced url="https:\/\/youtu.be\/6So8MA-qru8" controls="yes" showinfo="no" loop="yes" rel="no" modestbranding="yes"] @@ -378,3 +394,9 @@ Test your remote: irw /dev/lircd +# How to play Youtube video from command line? + +If you want to have smooth playback you need to use our prebuild desktop with HW accelerated video playback. Currently avaliable on legacy Allwinner kernel. + + + mpv --vo=vdpau --hwdec=vdpau --framedrop=vo --hwdec-codecs=all https://www.youtube.com/watch?v=FGBhQbmPwH8 \ No newline at end of file