Jump to content

going

Members
  • Posts

    835
  • Joined

  • Last visited

Everything posted by going

  1. Yes! man apt-mark ..... PREVENT CHANGES FOR A PACKAGE hold hold is used to mark a package as held back, which will prevent the package from being automatically installed, upgraded or removed. unhold unhold is used to cancel a previously set hold on a package to allow all actions again. showhold showhold is used to print a list of packages on hold in the same way as for the other show commands. .... sudo apt-mark hold linux-image-edge-sunxi
  2. The version of the package from Armbian is the release number. Judging by the screenshot you provided, it is 23.8.1. The version of my package is 6.4.14-Armbian.23.10 that is, it will always be less than the Armbian. It probably needs to be frozen from updates. Try to check it out. Type: sudo apt upade sudo apt --list upgradable P.S.I don't use their repository. I assemble all the packages and the image myself.
  3. #!/usr/bin/bash url="https://github.com/The-going/PKG_test/raw/master/linux-edge-sunxi-6.4.14/" pkg="linux-headers-edge-sunxi_6.4.14-Armbian.23.10_armhf.deb \ linux-libc-dev_6.4.14-Armbian.23.10_armhf.deb \ linux-image-edge-sunxi_6.4.14-Armbian.23.10_armhf.deb" for p in $pkg do wget ${url}${p} done create dl.sh in target dir chmod +x dl.sh ./dl.sh sudo dpkg -i linux-image-edge-sunxi_6.4.14-Armbian.23.10_armhf.deb
  4. wget https://github.com/The-going/PKG_test/raw/master/linux-edge-sunxi-6.4.14/linux-image-edge-sunxi_6.4.14-Armbian.23.10_armhf.deb
  5. And what is the user waiting for? Can you formulate that?
  6. The devils are hiding in the details! Some hardware vendors claim that NPUs in their processors work on some operating systems. This is the OS on their cores. Which specific chip are you interested in?
  7. ____ ____ _ __ __ _____ | __ )| _ \(_) | \/ |___ / | _ \| |_) | | | |\/| | |_ \ | |_) | __/| | | | | |___) | |____/|_| |_| |_| |_|____/ Welcome to Armbian 23.10 Bookworm with Linux 6.4.14 No end-user support: built from trunk & unsupported (bookworm) userspace! System load: 6% Up time: 3 min Memory usage: 5% of 1.96G IP: 192.168.100.101 CPU temp: 38°C Usage of /: 12% of 7.3G ========================================================================== leo@bananapim3:~$ armbianmonitor -m Two CPU clusters are available for monitoring Stop monitoring using [ctrl]-[c] Time CPU_cl0/CPU_cl1 load %cpu %sys %usr %nice %io %irq Tcpu C.St. 12:35:38 1344/1152 MHz 0.14 8% 1% 1% 0% 5% 0% 39.1 °C 0/5 12:35:43 1344/1344 MHz 0.13 0% 0% 0% 0% 0% 0% 38.7 °C 0/5 12:35:48 1344/ 768 MHz 0.12 0% 0% 0% 0% 0% 0% 39.5 °C 0/5 12:35:54 1152/1344 MHz 0.11 0% 0% 0% 0% 0% 0% 38.8 °C 0/5 12:35:59 1344/1152 MHz 0.10 0% 0% 0% 0% 0% 0% 39.4 °C 0/5 12:36:04 1344/1152 MHz 0.09 0% 0% 0% 0% 0% 0% 39.7 °C 0/5 12:36:09 768/1344 MHz 0.08 0% 0% 0% 0% 0% 0% 39.7 °C 0/5 12:36:14 1152/1344 MHz 0.08 0% 0% 0% 0% 0% 0% 39.4 °C 0/5^C This is my last kernel build for this platform. It shows the temperature correctly. You can simply download and install this kernel at: https://github.com/The-going/PKG_test/tree/master/linux-edge-sunxi-6.4.14 The *dtb*.deb package is not required.
  8. @bahtiyar57 I am aware of this regression in the latest kernel changes for sunxi. Try installing an older kernel using the armbian-config utility, for example: for current - 5.15.93-sunxi for edge - 6.1.11-sunxi If you want to build the kernel yourself, write here. I will provide you with the necessary changes for the A83T processor.
  9. @Maksimarm What do you mean by that? Can you explain it in an expanded form?
  10. There is not enough space on the disk that is mounted in the /boot folder. df -h ls -al /boot this will give you a hint
  11. Please understand me correctly. I don't see much need to change the installation script. All other issues are general Linux administration issues and they are very well covered on the Internet.
  12. Hello, Frédéric From France. There are many questions here. 1) fault tolerance. 2) recovery after exiting the working state of the root file system. (1) CD card, eMMC, are all flash drives. Technologically, they are different, but they all have a limited resource for recording. Armbian tries to reduce the number of write transactions using the overlay file system. In fact, system write transactions occur in a file located in RAM and are synchronized with the real file system on the drive at longer intervals than the system ones. (2) You want to place the entire root file system on an LVM partition whose type is linear. In this case, you have to recreate the initrd to make it work. And if your drive at the physical level starts to fail or the LVM partition is full, you get very big difficulties for data recovery. packages/bsp/common/usr/sbin/armbian-install This is a very simple script that makes a copy of the OS on your CD card from which you booted and work on an empty nand, SATA, eMMC or NVME. Your drives are eMMC and NVME. What would I do at the very beginning of the journey, when both drives are clean? Boot from the SD card and install the system on eMMC. Boot from eMMC. (for health check) Mark up the NVME drive as LVM or as BTRFS. (The BTRFS file system will provide you with all the necessary functionality.) Make logical partitions for target folders "/opt" "/var" "/srv" "/home". Boot from the SD card and copy the contents of each target folder to the corresponding logical partition while retaining all rights for files. Add the necessary mount entries in the /etc/fstab file located on the eMMC. Boot from eMMC. You are the master of the situation!
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines