Search the Community
Showing results for 'youtube'.
-
hello everyone! I bought this tv box..https://www.aliexpress.com/item/1005009346784515.html?spm=a2g0o.order_list.order_list_main.11.79e81802pgNRxu but after starting it was not possible to log in to googleplay even though I had a connection via wifi or ethernet. the preinstalled version for applications was Aptoide TV..through it I wanted to update all applications (youtube, netflix, etc.) I managed to do that but no application could be started. the original file manager did not show the internal memory or USB disk or SD card until I managed to download ES file manager through aptoide and it showed my flash disk I installed HW info device and there I found out that it was an RK3528 chip. so I wanted to flash the firmware and I used a rom image for H96max with the same parameters. the firmware upgrade went OK but the device is dead. I can't find the correct firmware. I'm attaching a photo--- maybe someone will recognize the board and identify which rom-img should be correct. the seller can't help me in any way.
-
Compiling your own image is actually quite easy. https://docs.armbian.com/Developer-Guide_Building-with-Docker/ https://evilolaf.github.io/docupreview/Developer-Guide_Build-Preparation/ https://www.youtube.com/watch?v=kQcEFsXEJEE The name of your board is "rock-5t" and you will want to try out the vendor kernel, try something like "./compile.sh BOARD=rock-5t BRANCH=vendor RELEASE=noble BUILD_MINIMAL=yes KERNEL_BTF=no SHARE_LOG=yes". You will then share your logs and you can paste a link here if the build fails. "qmicli: command not found" means you do not have the package installed that provides the command. So, you need to find out what package that is and then install it. I suggest you install "sudo apt install command-not-found" first and then this information will come up automatically in the future. # from my computer $ qmicli Command 'qmicli' not found, but can be installed with: sudo apt install libqmi-utils This situation will be a learning experience for you, it is not very likely somebody will come out here and fix your situation for you (unless they have the same problem and want to fix it for themselves and then change something in Armbian for everyone's benefit). People are very willing to help and guide you, but you will essentially need to fix this for yourself and then hopefully share what you did so that others will benefit from your work. That is the power of open source.
-
No display when trying to install Minimal Trixie on R6S
Chad Skeeters replied to Chad Skeeters's topic in Beginners
Ok, I'm going to summarize for posterity. One can try ssh (which is enabled by default) with root/1234 (default), or the Debug TTY. This does exist on the NanoPi R6S between the USB-C Power and HDMI port. There are no headers soldered on, so that has to be done first with headers that can be purchased at one of the following URLs. https://www.adafruit.com/product/3009 https://www.amazon.com/dp/B07PKKY8BX Once the headers are one, you can connect to this port with a USB to UART device (preferably with a chip such as the CH340C, CP2104, FT232R) connected from another Windows, Linux or Mac computer. I suspect this device will work. https://www.amazon.com/gp/product/B07BBPX8B8 Debug TTY instructions are located here: https://www.youtube.com/watch?v=UpVMO7gbnYM&t=226s Thanks! -
I actually dont remember the exact order of install, but from what i can recall first i compiled and installed libva-v4l2-request-HACK_HEVC.zip and followed that tutorial then i downloaded h618_hwdec.tar.gz from https://www.elektroda.pl/rtvforum/topic4018092.html#20840047, those are the libs i replaced in /lib/aarch64-linux-gnu/ install latest edge kernel from armbian-config (or enable rolling updates), download kernel hearders and enable gpu in device tree overlays to compile mesa first install deps than creat a python venv in mesa src directory to download latest meson in it sudo apt-get install bison build-essential ccache clang cmake flex git glslang-tools libclang-dev libdrm-dev libelf-dev libexpat1-dev libgl1-mesa-dev libgles2-mesa-dev libgoogle-perftools-dev libgtk-3-dev libllvm-18-dev libomxil-bellagio-dev libpciaccess-dev libsensors-dev libspirv-tools-dev libunwind-dev libva-dev libvdpau-dev libvulkan-dev libwayland-dev libx11-dev libx11-xcb-dev libxatracker-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-glx0-dev libxcb-present-dev libxcb-randr0-dev libxcb-shm0-dev libxcb-sync-dev libxcb-xfixes0-dev libxdamage-dev libxext-dev libxfixes-dev libxrandr-dev libxshmfence-dev libxxf86vm-dev libzstd-dev llvm-18-dev meson ninja-build pkg-config python3-mako python3-pil wayland-protocols python3-venv python3 -m venv mesa_venv source mesa_venv/bin/activate pip3 install meson but if i tried to compile from inside the venv i was gettin a mako version error so i exited the venv (just open another terminal window) used this exact command to be able to build from outside the python3 venv PYTHON=~/src/mesa/mesa_venv/bin/python3 ~/src/mesa/mesa_venv/bin/meson setup build -Dbuildtype=release -Dprefix=/usr -Dgallium-drivers=panfrost -Dvulkan-drivers=panfrost -Dplatforms=x11 -Dvideo-codecs=all you need to add wayland to platforms if you're using it, i'm not (replace '~/src/mesa/mesa_venv/bin/python3' and '~/src/mesa/mesa_venv/bin/meson' with the path where you cloned the source...) install any other dependencies it complains about then install with sudo ninja -C build install you can confirm with glxinfo -B gabriel@orangepizero3:~/$ glxinfo -B name of display: :0.0 display: :0 screen: 0 direct rendering: Yes Extended renderer info (GLX_MESA_query_renderer): Vendor: Mesa (0xffffffff) Device: Mali-G31 (Panfrost) (0xffffffff) Version: 25.2.0 Accelerated: yes Video memory: 3922MB ... i don't know if that libva hack is working but vainfo recognize gabriel@orangepizero3:~$ LIBVA_DRIVER_NAME=v4l2_request vainfo libva info: VA-API version 1.20.0 libva info: User environment variable requested driver 'v4l2_request' libva info: Trying to open /usr/lib/aarch64-linux-gnu/dri/v4l2_request_drv_video.so libva info: Found init function __vaDriverInit_1_20 libva info: va_openDriver() returns 0 vainfo: VA-API version: 1.20 (libva 2.12.0) vainfo: Driver version: v4l2-request vainfo: Supported profile and entrypoints VAProfileMPEG2Simple : VAEntrypointVLD VAProfileMPEG2Main : VAEntrypointVLD VAProfileH264Main : VAEntrypointVLD VAProfileH264High : VAEntrypointVLD VAProfileH264ConstrainedBaseline: VAEntrypointVLD VAProfileH264MultiviewHigh : VAEntrypointVLD VAProfileH264StereoHigh : VAEntrypointVLD VAProfileHEVCMain : VAEntrypointVLD and finally mpv (with yt-dlp installed) gabriel@orangepizero3:~/$ mpv --hwdec=drm --profile=fast https://www.youtube.com/watch?v=Dyzf2evNjwc (+) Video --vid=1 (*) (h264 1920x1080 29.970fps) (+) Audio --aid=1 --alang=eng (*) (opus 2ch 48000Hz) File tags: Uploader: Zen Mechanics Channel_URL: https://www.youtube.com/channel/UCC8n8afKsdaYuI7Pr0J4pgA Using hardware decoding (drm). AO: [pulse] 48000Hz stereo 2ch float VO: [gpu] 1920x1080 drm_prime[nv12] it is a bit confusing but i hope it helps... i also recommend this moded mpv handler with youtube playlist and mpv prefetch queueing support: https://github.com/gabreek/mpv-handler-queue
-
You are right. I just downloaded something from youtube and assumed it was H264. When I checked it in VLC in my PC, the codec is: AOMedia's AV1 video (av01) I picked another mp4, which I verified in VLC as H264-MPEG4, 720p, and it played with 10% CPU This test below is with Bookworm XFCE, compositor ON, Linux 6.15.4 with default configuration Then I repeat the test with a 1080p H264 mp4. mpv tries to use hardware acceleration, but the mpv is black and there's continuous DRM_IOCTL errors: Then I tried this inside /etc/mpv/mpv.conf hwdec=drm-prime drm-drmprime-video-plane=primary drm-draw-plane=overlay and the 1080p H264 starts playing fluidly with just 40% CPU (compositor off) With compositor on, I get same 40% CPU Same video glitches, with or without compositor, but I am getting hardware acceleration (although there's the hwdec unsupported message) Update: Thank you to all who helped me. I have hardware acceleration again with my opiz3 hwdec=drm is more efficient extraargs=cma=256 is needed to avoid memory allocation problems and video glitches. https://forum.armbian.com/topic/29202-orange-pi-zero-3/page/26/#findComment-222596
-
@ScoreABSM https://github.com/armbian/build/pull/8394 I enabled gpu via overlay. Looking fine on my end. Tested using Chromium and Youtube. Still not sure about that audio dmesg error. Audio does work though. Image I ran test with: https://github.com/pyavitz/binary/releases/download/images/Armbian-unofficial_25.08.0-trunk_Bananapim4zero_bookworm_current_6.12.35_xfce_desktop.img.xz dmesgandmisc.txt
-
I don't even have a reference viewpoint what should I start comparing? I read claims that Python3-numpy, python3-opencv are highly optimized, but I never researched HOW OPTIMIZED I have also heard that DRM can help accelerate machine learning https://www.youtube.com/watch?v=NQz6VqvtehI&t=5m7s
-
T95Z Plus (Second one) running great
Pita Bread replied to Tomas Catone's topic in TV Boxes running Armbian
You're welcome. Checkout its plugins, called 'modules' https://www.webmin.com/cgi-bin/search_third.cgi?modules=1 and https://www.niemueller.de/project/webmin/ but some may be outdated. I haven't installed this but I will soon when I tell myself to stop watching addictive adventure and "challenge" videos on youtube, haha -
T95Z Plus (Second one) running great
Pita Bread replied to Tomas Catone's topic in TV Boxes running Armbian
Yes the text "Speed: 1000Mb/s" posted in the white box confirms the speed is 1 Gigabit. In my experience, actual transfer speed of data to/from a mechanical hard drive should be around 80 to 100 Megabytes (with a "y") per second. But the transfer speed can be faster if data is going to/come from a solid state drive or internal NAND/EMMC. I have a 12 Terabyte hard drive in a budget USB external enclosure and it is connected to my amlogic tv box via USB 3.0, and the tv box is connected via Gigabit ethernet. I use it for backups and saving some large video files. The 80 to 90 Megabytes/sec speed over ethernet is fast enough for me. hehe ☺ I heard of Cockpit via youtube videos talking about remote administration. I was old-school and I had already install Webmin. But thanks for reminding me that Cockpit is another good option. Oh Tailscale? It seems to be fancy VPN service with file transfer and other features. That's cool. I'll give those a try someday. ☺ For just tinkering, my favorites are "md" software raid, zfs and it's raid features, Pi-Hole... and I want to try Prometheus and Grafana. But for everyday use, my favorites are straightforward Samba file server, rsync, vsftpd, xrdp remote desktop, and any remote administration that works, like Webmin. However, I want to try NFS file server on the tv box and NFS client in a Windows PC to determine if that is faster than Samba. Here is a video about that https://youtu.be/mOoO9mFE7BI Cheers mate - Peter -
MXQ MBX Model M201 amlogic s805
Ricardo Martin Mantelli replied to s-petersen's topic in TV Boxes running Armbian
Could you please help me with a link or forum where I can find the image? I'd really appreciate your reply. I saw videos on YouTube showing how to make them work, but the download links are all broken. Thank you so much for your help. -
MXQ MBX Model M201 amlogic s805
Ricardo Martin Mantelli replied to s-petersen's topic in TV Boxes running Armbian
Could you please help me with a link or forum where I can find the image? I'd really appreciate your reply. I saw videos on YouTube showing how to make them work, but the download links are all broken. Thank you so much for your help. -
The previous post was mostly for slightly older releases of Armbian which includes Ubuntu 23 or Debian 10 and lower releases installed on a Tv Box. This short guide is for Ubuntu 24.04 and later releases installed on a Tv Box. This guide should also work for latest versions of Debian (but I didn't test it). Get a generic USB "sound card" audio adapter dongle from AliExpress, eBay, Amazon (etc). See the photo posted above (LINK). These gadgets are often between $2 and $5 USD but they all are usually similar, so I just got the lowest priced one at about $2.50 USD. Insert the USB "sound card" audio adapter dongle into your tv box. Create a new regular user in Linux, and login with the new user (not root). sudo adduser {user-name} Be sure your user is in the group 'audio' and 'sudo', and be sure you have logged in as the user (not root). sudo usermod -a -G audio,sudo {username} Now let's install and setup audio sound using Pipewire and WirePlumber (but not Pulse). First, install alsa base, and mixer software. sudo apt install -y alsa-base alsa-tools alsa-utils alsamixergui qasmixer Make a backup copy of these two text files /etc/modules and /etc/modprobe.d/alsa-base.conf and save the backup copies in your home directory. cp -v /etc/modules $HOME/modules.backup cp -v /etc/modprobe.d/alsa-base.conf $HOME/alsa-base.conf.backup Edit the text file /etc/modules and write “snd-usb-audio” without quotes at the end of the file, and then save and close the file. sudo nano /etc/modules Edit the text file /etc/modprobe.d/alsa-base.conf and change and add some text sudo nano /etc/modprobe.d/alsa-base.conf Put a hash # symbol in front of every “options snd-usb-audio index=-2” that you see in the file /etc/modprobe.d/alsa-base.conf - I found two instances. Add these two lines of text to the bottom of the file /etc/modprobe.d/alsa-base.conf, and then save and close the file. alias snd-card-0 snd-usb-audio options snd-usb-audio index=0 Install pipewire and wireplumber and support files. sudo apt install -y pipewire pipewire-pulse wireplumber pipewire-audio-client-libraries gstreamer1.0-pipewire Optional to install a graphical media player smplayer, vlc, totem, (etc). and optional install a graphical audio player rhythmbox, audacious, (etc). sudo apt install -y smplayer sudo apt install -y audacious In case that the pulse audio system is still installed, we will disable it for the local user. systemctl --user --now disable pulseaudio.service pulseaudio.socket Enable pipewire for the local user systemctl --user --now enable pipewire pipewire-pulse To be sure everything will work, let's reboot sudo reboot Login as the regular user, and run some informative commands to prove that the USB dongle and the pipewire audio system are working. Use alsa player to list audio devices. aplay -l Use alsa player to list PCM audio outputs (use capital "L"). aplay -L Use wireplumber control to show status of audio outputs/inputs via pipewire. wpctl status Use wireplumber control to show a volume level of default output wpctl get-volume @DEFAULT_AUDIO_SINK@ Change the volume using alsa mixer, after running it, press up/down arrow keys, and press "q", "e", "z", "c" and "s" keys. alsamixer Change the volume +/- by ten percent using wireplumber control. wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%+ wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%- * Important * connect a headphone, or amplifier to the 3.5mm output jack 🎧 of the USB adapter dongle and play some audio files. aplay /usr/share/sounds/alsa/Front_Center.wav aplay /usr/share/sounds/alsa/Noise.wav You can also login to the graphical desktop such as lxde or xfce4 and open a video/media player or an audio player software and play some audio files. I used Audacious for this example. Again, audio files are available in the directory /usr/share/sounds/alsa/ From here, you can use the wpctl command (LINK) or another control program for wireplumber. Maybe some of the Pulse audio tools would still work. Audacious works fine when playing locally stored audio files. The same should be true for using SMPlayer or VLC to play video files. Note that depending on the speed of your tv box, Youtube in Chrome / Chromium is sometimes laggy, has delays and resets. Other than that, it's all good. Enjoy ♪ ♫ ☺
-
I have installed Armbian community images several times on different tv boxes that have an Amlogic S905x3, and usually there was no sound ♫. I wanted to get sound out of the tv box. So, I purchased a generic USB sound card audio dongle from Aliexpress for about $2 to $3 USD. (see attached photo). The USB audio device is described in Linux as a Texas Instruments PCM2902 Audio Codec (USB PnP Sound Device device 0 USB Audio), and when you run the command lsusb you will see the id numbers 08bb:2902. However, the specific hardware chip in the device that you receive may be different. I updated the databases for repositories by running sudo apt update -y and installed necessary packages to support the USB audio device and to use a graphical desktop such as XFCE4, for example: sudo apt install -y smplayer alsa-base alsa-oss alsa-tools alsa-utils alsamixergui pulseaudio pavucontrol pavumeter You can use smplayer or vlc or another as long as it is modern media player or audio player. Now make a backup copy of these two text files /etc/modules and /etc/modprobe.d/alsa-base.conf and save the backup copies in your home directory. Without quotes, edit the text file /etc/modules and write “snd-usb-audio” at the end of the file. Also, edit the text file /etc/modprobe.d/alsa-base.conf and change a few things. Put a hash # symbol in front of every “options snd-usb-audio index=-2” that you see in the file /etc/modprobe.d/alsa-base.conf . I found two of them. Add these two lines of text to the bottom of /etc/modprobe.d/alsa-base.conf without quotes. "alias snd-card-0 snd-usb-audio" "options snd-usb-audio index=0" Make sure that your user is in the 'audio' group. Run the usermod command against a regular user (not root) that you want to use often. And reboot. sudo usermod -a G audio {username here} sudo reboot Login to the graphical desktop, open the volume control program by clicking on the panel Applications, Multimedia, PulseAudio Volume Control. Click the Configuration tab at the far right of the volume control program and change the profile to Analog Stereo. * Important – now connect a headset, earphone, or amplifier to the 3.5mm (⅛’’) 🎧 headphone receptacle on the USB audio dongle and play some sounds, music or youtube. You can use wav audio files in the directory /usr/share/sounds/alsa/ if you don't have an internet connection.
-
Android TV Stick (iK316-H16430)
Muhammad Hanis Irfan Mohd Zaid posted a topic in Allwinner CPU Boxes
I've got this Android TV stick: https://shopee.com.my/RUBY-Smart-TV-24-Inch-Android-TV-Murah-TV-32-Inch-WiFi-4K-HDR-LED-Television-WiFi-Youtube-Netfli-i.1246310125.27851733843 Tried to run a progressive web app (PWA) and just learned that PWA is not supported by Android TV OS. I've found that since it's just a SBC, I can install any other OS on it and stumbled upon Armbian. Since I'm new, I would like to know what images is supported with this board and any related guides to install it. This board has 1 full HDMI port, 1 USB type A port for data, and 1 USB type C port for power only (this is just my assumption). No SD card slot. I just need it to be able to run a modern and latest browser to run the PWA. Thanks for all the help 😀 -
I happen to have got a Android tv box with a s905Y5 processor. I got this by a tv subscription from a company airtel in India. I unsubscribed from the subscription and my tv box is completely useless. it asks money for watching youtube!!!. I am extremely frustrated from this approach by this company so please help me save this from getting into e-waste. From my research i found that it runs android 14 with a custom launcher which checks for the subscription and a locked down kernel/bootloader which checks for signatures before boot. I came to know these from the uart output. I also found that it is basically a customised version of this box https://www.videostrong.com/products-show/vt9201-s905y5-aiot-solution
-
I have installed Armbian 23 Linux on my TX6 ATV box. I downloaded the image from the SMLinux repo. It was a kernel 6 build with Armbian 23 Jammy version. I added the Oibaf PPA for the graphics driver, then I installed Ubuntu Desktop. Luckily, I got graphics acceleration with the GNOME desktop, but it was laggy ui. I confirmed graphics acceleration using the glxinfo command and also tried glxgears. It was working pretty smoothly, like 60 FPS, same as my monitor refresh rate. Well, everything was great, but then when I tried to use Firefox and watch YouTube, it was so choppy and laggy. YouTube UI took 2 minutes to load. I thought I only had 131MB RAM available while using a heavy desktop like GNOME + browser, so I assumed it was the environment's fault. But then I installed XFCE and the experience was the same. It was still choppy and laggy, even with 1GB of RAM available this time. glxinfo and glxgears worked pretty fine, but the XFCE UI and Firefox animations were kind of glitchy. But the YouTube video itself was smooth — not the UI though. I managed to load a YouTube video using Firefox. There were frame drops like 83/300 so yea it wasn't fully smooth, but it was better than GNOME. So now my question is: Is this because I’m running it on an SD card? Or is there no full video acceleration? Is there any way for me to get full video acceleration? Because the Panfrost driver was working and loaded.
-
hi, I use please/thanks each time with chatgpt and recently we did nice tech talk with realtime physics experiment, so in emotional moment, I asked her to select name, she went with Lyra, so we are slowly reaching agi, maybe )) ... btw, where is NicoD? I see last yt and here 5months ago, 251024 here ... hope he is okay ... he brings me into armbian love(!) during last week or so, huge effort from him at youtube...
-
Tanix TX66 RK3566 4GB/32GB 8K 2.4/5WIFI 1GiB BT USB2/3 SD IR SPDIF
7alken replied to realcam's topic in Rockchip CPU Boxes
hi, its too late (and glad you got documented thing as recommended in FAQ too), but recently I saw quite interesting presentation about reverse engineering unknown old routers, with plenty of info, but only as fun and relax ... at least info that ghidra decompiles any cpu isa into pseudo-c was new to me and it is very close to what I am (OT) trying around my risc-v-alike thing (search github apws vmex) as "aslix", thing slighlty below C ... )) youtube: MEnAKAbz-Y -
hi all, I was looking for some unified os for more "rpi zero" clones and found beautiful armbian; and I am quite new to linux still, longtime/decades windows user; to "dogfood", I am also considering use of armbian on my "tiny-big" uefi-x86 (now NUC10, but got now new amd ryzen7 8845hs gmktec nucbox k8 plus), so I tried as very first setup on that ryzen7 latest armbian "ubuntu gnome" - monitor output is attached, so far so good, although I dont know if everything around usb3/4 is working well (log contains some red messages, dont understand them) - it was only simple install, and I have this comments: https://www.gmktec.com/products/amd-ryzen-7-8845hs-mini-pc-nucbox-k8-plus usb-live boot was okay, I then executed armbian-config where in "storage" I proceeded with default installation (I didnt read well the instructions to run armbian-install in fact, this is not in set of icons after usb-live boot also...), which it seems selected nvme1 instead of nvme0 ??? (will try again with other variants as xfce again), so after this way of installation, reboot was into grub rescue, so I did it again forced to nvme0 (deleting all from nvme1 also by gparted) and the reboot was okay ... although, when I am powering-off linux from menu then nucbox pwr button green led switches off, BUT after removing usb and swiching on the nucbox by button nothing happens, black screen (long time, nothing) - I expected some longer boots because of DDR5 behavior (new to me too) but this is not the case. I must force OFF the nucbox by holding power button for 4secs and then re-powering on is okay ... this is not nice behavior 🙂 this nucbox K8 plus has very open APTIO BIOS, nothing is simplified and I left everything on auto for now, it seems secure boot is disabled and what surprised me too is that install to nvme storage did only MBR partitions, not GPT. hope its all handled well for offsets and blocksizes - are possible (good?) 4KB sectors for most efficient nvme flash ssd? I dont know if some defaults changes in bios can force armbian to defalt to GPT partitions, even if it is necessary. in windows, I have 2 big disks now and data/user are is only selected logically by virtuall drive letters (visualsubst), I use lots of them to separate areas and need this to mimic somehow in linux; its question if separate "user" partition with fixed size is okay too ... on windows, I do backups by onedrive syncing and by ZIPs to second drive and even to usb attached sata disks too and only for "really" user data, not everything the same way - its question if on linux its simpler to backup entire partitions (??) I was also quite surprised that "ubuntu gnome" variant boots only to some "tablet only?? ui" very simple ui without any menu, windows without minimize icons ... I am new to linux, what is this "style"? this is "unity" or some tablet variant selected by sone defaults? ... very weird for me, too simple, not useable as desktop, so I will try XFCE and KDE Neon too, sure ... When I tried to add language for regional date/time formats support , trying to download CZ (Czech) failed, probably some minor quirk too; I had no chance to test everything, but I was surprised that it during boot found the WIFI and installation was really deadly easy and sexy, despite that first default bad selection of nvme1 as target (I am not sure if I didnt it in fact .... will try again similar way) ... but what is shown in icons/apps set is contrary to some getting started doc pages, where is mentioned "armbian-install" (not necessary as armbian-config - storage did it too??), btw red config and configng icons launch the same script; I understand that this is lightweight setup and I in fact like it a lot, but that simplistic (tablet?) desktop was like something for kids )) so, thanks to all NicoD videos (I saw tens of them) as my primary intention to test faster "rpi zero" clones is to run some Sinclair QL emulator on them, something with SMSQE, ideally, somehow, there are variants of it; on windows, best/fastest is probably QPC2/SMSQE but this is not full emulation, its hybrid where interfacing to fast windows host is often accelerated on it, so this is not linux-aware emulator, and I cant imagine if it would be possible in wine, probably not; other emulators exists, one of them for SMSQE is based on java too - goal was simply to make some low-power portable Sinclair QL (with SMSQE) machine, so I need to select best/fastest "rpi zero" clone with working GPU acceleration for sure. https://www.kilgus.net/qpc/what/ youtube: yU0ptNyNqcI It is not yet clear if I will converty my main big machine to linux, but having one unified system for "everyhting arm" is definitely nice, it seems that armbian can be my primary linux distro even in virtual machines, I like the concept and systematic approach in documentation and development and even contribution, I read lot of docs and its very nice, it seems. So will be glad also to support you, as much as possible. Thanks, Petr
-
Can't flash Armbian to EMMC on Orange Pi 5B
Andrius Vainorius replied to sns1081's topic in Rockchip
The only solution is to do it as sns1081 suggested. Or you can try nano pi M6 dietpi IMG. That one works actually albeit with some glitches. I was never able to flash any of img from armbian directly. Images that actually works: rockchip Ubuntu (Joshua riek), but I read it's not maintained anymore (install via rkdevtool [Windows] or rkdeveloptool [Ubuntu, Linux mint doesn't work, didn't try other OS]. It supports VPU, that is you can watch 4K 60fps YouTube with few dropped frames (meaning that GPU/VPU drivers still not optimal, as android runs 8k). There is bredOS for rockchip3588 devices, which is arch based. If you're familiar with arch, it's easy. I kinda liked it as it boots from 90s BIOS style UEFI with clean and simple interface, where you can do some basic configs like changing .dtb and stuff :), but does not support you/gpu. Unfortunately all of OS'es installation done via mask ROM. Life would be much easier if it was possible to flash SD, insert into orange pi, copy OS to Emmc, change boot order to EMMC... Like you do in raspberry pi. What else? Btw building armbian or dietpi yourself bricks the device and then you need reflash it again. Will update if find anything else: haven't tried fedoras or SUSEs yet.. -
Hi jimw, Glad you have made progress. Its interesting that you got such a quick setup by amending the boot.cmd file, I will need to try that approuch myself for my other issues. I havent previously had reason to touch the boot.scr. Either I missed remember the last parameter or it may have changed, reviewing the binding it should be 'default-state = "on"; '. I mostly just watch youtube such as: Bootlin also provide a lot of good resources: https://bootlin.com/pub/conferences/2021/webinar/petazzoni-device-tree-101/petazzoni-device-tree-101.pdf Hope this help Ryzer
-
@Dominik Wójt after spending more time trying to configure it, here are a couple of follow-up observations. First, localization won't work during setup. Even if you pick your geography or set the time zone manually, the system time won't adjust. Without proper time, the browser won't work. You need to install chrony, add google's time server and then restart chrony. With a bit of play - the time will adjust. But even after this, the browser still won't work. If will ping any specific ip but won't ping any websited. To fix this, you'd need to configure new DNS server. Change it to 8.8.8.8 and 8.8.4.4. That would fix the problem and you will be able to get online. With regards to wifi, it will see all the 2.4Ghz wifi networks, but it won't take the password. Tried it different ways including setting configuration manually in armbian system settings. No idea what's causing it. The system is quite slow. It freezes and glitches. Youtube will work as a slide show. However, this is all while running it from a USB drive, which may be the reason for issues. The key questions at this point: what do I need to do with the files on the USB drive after first boot, so that I am back to this OS and no undroid upon power loss or reboot. The first time I flashed it and then rebuted, it would completely ignore it NOR boot installation. Also, did you try copying it into nand memory via armbian settings menu or otherwise? Is this reversible?
-
Hi, I've been compiling my own Armbian images since 6.13-rc5, and now 6.13 and I noticed that when I compile i3, youtube videos and webgl tests don't work as great when I compile i3 with mesa-vpu as it does when I compile e.g., cinnamon. I also noticed that the suffix is not -mesa-desktop, only -desktop. Is it as per design and i3 doesn't include mesa at all, or is it some kind of bug? Thanks!
-
This is my script: #!/bin/bash task(){ gp=$1 [[ ! -d /sys/class/gpio/gpio${gp} ]] && echo ${gp} > /sys/class/gpio/export echo "out" > /sys/class/gpio/gpio${gp}/direction echo "0" > /sys/class/gpio/gpio${gp}/value sleep 10 echo "1" > /sys/class/gpio/gpio${gp}/value } for doing this: https://www.youtube.com/watch?v=HxZ_FD5b5QQ on a very similar board: Linux nanopim1 5.15.93-sunxi installed nothing extra.
-
Hi Javad, if you are playing youtube videos. 720p works fine for me. 1080 freeezes. robertoj was able to get hardware video decocding working with ffmpeg-v4l2request. I haven't tested this method yet.