

going
-
Posts
806 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Posts posted by going
-
-
7 часов назад, Werner сказал:
As a workaround for now I simply duplicated the line where rsync is exected silently a second time to catch any missing files, adjusted a bit and used that to copy over the contents of /boot. However this UUID still needs to be adjusted manually.
In fact, I found a lot of problems, these two were not on my list.
The build system does some steps more correctly, but this utility lags behind.
I think we need to teach her how to split empty space into sections and mount it the way the user wanted.
The work is slow, but it is progressing. -
29 минут назад, Werner сказал:
I could narrow it down a bit. If there is a separate boot partition rsync for some reason fails to copy its contents over even though it is mounted into the file system. Also I read somewhere that some rsync parameters might be incompatible with vfat but I guess this only goes into effect when writing to vfat and not when reading from.
The same OS without dedicated boot partition installs just fine.
Thank you very much.
I collect in a notebook all possible bugs when using this utility.
I want to redo it. -
23.10.2024 в 06:58, Werner сказал:
armbian-install issue.
Can you describe the selection scenario (order) in the "armbian-install" interface?
-
53 минуты назад, royk сказал:
this bootloader from Orange Pi self solved the issue:
https://drive.google.com/file/d/1J7fn88rrWoUupGCVTqEs-izYPMA4eTnd/view?usp=drive_link
I wonder if the source codes for this loader exist?
-
13 часов назад, JOHAN VAN DER MERWE сказал:
to get wifi again if i reboot or shut down I need to plug in the lan cable remove usb the wifi is back up I tried by only removing the usb and plug it back in with out lan cable but then still no wifi its as if i need to add the lan cable then remove dongle then reinsert to get wifi back.
I however don't need to go in to nmuti to connect again.
There are several ways to force a WIFI-USB device to be detected in the OS.
You can write and add a node to the DTS. That is, to use an overlay.
You can write a rule and add it to the initialization scripts.
Or a combination of these methods.
Please reach out to people who have already succeeded in this.
There are publications on this topic here on the forum. -
2 минуты назад, JOHAN VAN DER MERWE сказал:
build-essential is already the newest version (12.10ubuntu1).
git is already the newest version (1:2.43.0-1ubuntu7.1).
dkms is already the newest version (3.0.11-1ubuntu13).Everything is set.
-
13 минут назад, JOHAN VAN DER MERWE сказал:
linux-dtb-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb
linux-headers-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb
linux-image-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.debThese three packages must be installed.
Then reboot. -
4 минуты назад, JOHAN VAN DER MERWE сказал:
sudo apt-get install build-essential git dkms
Just this command. You have already install the headers.
-
@JOHAN VAN DER MERWE Today, when I reread what I wrote for you, I realized that I was wrong.
I did not understand your level of knowledge of Linux commands and the ability to use the system help.
I apologize.
Now again and in order:filename.gz - The gzip archive and the command of the same name for operations with files of this archiver.
Team Help:
gzip --help
Extract files from the archive:
gzip -dk filename.img.gz
Unzip, that is, the files will be extracted from the archive and the archive will be deleted:
gzip -d filename.img.gz
zcat - Uncompress FILEs to standard output.
The output of this command is used as the input for another command:zcat filename.img.gz | another-program
For some reason, I thought that's what you need.
filename.img.gz - This always implies the path to the file.
You seem to have figured out the dpkg command.
You don't have to install this file:
linux-libc-dev-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb
For you, the difference between the system package and this one doesn't matter.
With respect
-
1 минуту назад, JOHAN VAN DER MERWE сказал:
sudo zcat tvbox.img.gz
NOT sudo
-
9 минут назад, JOHAN VAN DER MERWE сказал:
sudo wget
The download commands are executed on behalf of a regular user.
wget -r -l 1 --accept=deb -np https://fi.mirror.armbian.de/.testing/rk322x-box mkdir debs mv fi.mirror.armbian.de/.testing/rk322x-box/* debs/ rm -rf fi.mirror.armbian.de ls debs
Execute sequentially line by line.
-
18 минут назад, JOHAN VAN DER MERWE сказал:
so onve i run that commamd will it convert the gz file to a img file?
And you try to do it and see the result !!!
Download packages directly on the board:
wget -r -l 1 --accept=deb -np https://fi.mirror.armbian.de/.testing/rk322x-box .... mkdir debs mv fi.mirror.armbian.de/.testing/rk322x-box/* debs/ rm -rf fi.mirror.armbian.de ls debs There will be 4 files in the directory: linux-dtb-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb linux-headers-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb linux-image-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb linux-libc-dev-edge-rockchip_24.11.0-trunk_armhf__6.11.4-S1736-D29ea-P86b9-C85f2H5c21-HK01ba-V014b-Ba3b7-R448a.deb
sudo dpkg -i filename.deb
-
26 минут назад, JOHAN VAN DER MERWE сказал:
Is that correct?
Yes of course!
You can also redirect the output of a command to the input of another command. -
1 час назад, JOHAN VAN DER MERWE сказал:
3rd question I have is I used multitools to make a backup of the android but its saved as .gz file when I copy that back to multitool it does not recognize the file name to install it how do I go about getting the gz file to a img file if I want to reinstall the android.
zcat --help
zcat file-name.img.gz
-
17 часов назад, JOHAN VAN DER MERWE сказал:
linux-headers-$(uname -r)
This is an incorrect package name.
Valid:
linux-image-${BRANCH}-${LINUXFAMALY} BRANCH -> legacy,current or edge LINUXFAMALY -> sunxi,sunxi64,rockcip-rk3588 ... Example: leo@bananapif3:~$ echo "$(LC_ALL=C apt search linux-image | grep install)" ... linux-image-legacy-spacemit/now 24.11.0-trunk riscv64 [installed,local]
And search headers:
leo@bananapif3:~$ echo "$(LC_ALL=C apt search linux-headers-legacy-spacemit)" ... linux-headers-legacy-spacemit/noble 24.8.2 riscv64 Armbian Linux legacy headers 6.1.15-legacy-spacemit
Please note that the version of the installed kernel and the version of the headers available from the repository do not match.
That's because I built the core myself. And now the headlines are my problem. -
3 часа назад, constantius сказал:
Error 1 occurred in main shell [ at /home/radek/DrugiHD/build/lib/functions/logging/runners.sh:15
chroot_sdcard_apt_get_install() --> lib/functions/logging/runners.sh:15
install_distribution_agnostic() --> lib/functions/rootfs/distro-agnostic.sh:247
do_with_logging() --> lib/functions/logging/section-logging.sh:81
build_rootfs_and_image() --> lib/functions/main/rootfs-image.sh:28
full_build_packages_rootfs_and_image() --> lib/functions/main/default-build.sh:36
do_with_default_build() --> lib/functions/main/default-build.sh:42
cli_standard_build_run() --> lib/functions/cli/cli-build.sh:25
armbian_cli_run_command() --> lib/functions/cli/utils-cli.sh:136
cli_entrypoint() --> lib/functions/cli/entrypoint.sh:176
main() --> compile.sh:50This trace is intended mainly for developers of the build system itself.
There is no information about the compilation error itself.Use the command to view:
grep -Ei 'warn|err|\|' output/logs/log*.log.ans | batcat
Or a black and white version for printing:
grep -Ei 'warn|err|\|' output/logs/log*.log
And publish only the lines that relate to the error.
-
31.08.2024 в 21:36, artefactom сказал:
How to mount a usb hard disk drive? I’m trying to set a NAS-like system on a TvBox. Share an HDD over samba.
I have a similar situation with bananapi-m3. When I connect the hdd using a USB-SATA adapter,
the disk is first detected, and when accessing it, it suddenly disappears.
But I know exactly the reason for this behavior, since I worked with a soldering iron with this device.
The disk consumes 2.5 amps, and USB can give much less.
I do not know if this message of mine can help you. -
08.10.2024 в 12:15, ozacas сказал:
also EDK2 installed to SPI flash and then /boot/efi and root from NVME,
If you do on this device:
fdisk -l
Will the kernel see a block device for SPI flash?
Do I understand correctly that the OS is running a common core from the OS vendor?
-
08.10.2024 в 23:58, ARM_Bruzzler сказал:
I want to use GPIO Pi16 on the 13 pin expansion header of the board.
This pin is claimed by the kernel for the ethernet MAC.
According to the SOC Datasheet this pin has the option to provide a 25 MHz clock signal for the ethernet MAC,
which is not relevant for this board.
I think I've misled you.
For some reason I thought you wanted to add the whole node.
But you want to replace it with the same one but without the PI16 pin.
It's not in my power.
I don't have this board to check.I apologize.
-
3 минуты назад, ozacas сказал:
note how there is no EFI partition on the NVME drive. But the image from the armbian build framework has an EFI system partition and is what i'm using to boot the system right now via the USB stick.
Everything is right. It is this partition (from a USB drive) that the script is trying to mount into the future root file system.
There's something wrong here. -
10 минут назад, ozacas сказал:
wait - you wanted me to do it to the original system in the thread? I think I did it to the wrong one...
Simply insert the USB drive from which the installation was performed into the connector on the running device and output the command:
echo "$(fdisk -l | grep 'EFI')"
That's all for now.
-
27 минут назад, ozacas сказал:
ah... i have a USB connected sata adapter ssd as /dev/sda - forgot about that. Maybe that is accidentally providing boot (used to be connected to an rpi4)
Don't rush to a conclusion.
If you check your first configuration before installation, you should see for the echo "$(fdisk -l | grep 'EFI')" command:
/dev/sda1 8192 532479 524288 256M EFI System
And after installation: (Or just insert the USB flash drive from which the installation was done)
/dev/sda1 8192 532479 524288 256M EFI System /dev/nvme0n1p1 2048 411647 409600 200M ef EFI (FAT-12/16/32)
-
08.10.2024 в 12:15, ozacas сказал:Цитата
The first problem is that NVME cannot be a bootable block device.
Can you expand on this? I have it working on another opi5+ running armbian right now:
@ozacas If it doesn't bother you, could you post the output of the "fdisk -l" command under the spoiler for your device?
I have a suspicion that the script does not analyze correctly if EDK2 is used.
-
15 часов назад, ARM_Bruzzler сказал:
So will the correction eventually be distributed over apt in a couple of days or weeks?
Just stay tuned.
Will be included in the kernel version v6.6.54 or later
Ubuntu rockchip vs armbian?
in Orange Pi 5
Posted
Can you explain what these numbers mean? And what alternative can they be compared with?
It seems to me that this is probably a wrong translation.