New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 08:57, 1 August 2025Tips and tricks (hist | edit) ‎[394 bytes]Mike (talk | contribs) (Created page with "There are may tips for debugging yocto. To build any recipy use $bitbake <target name> $bitbake To fetch elements for a recipy $ bitbake <your-image-or-recipe> --runall=fetch To clean a recipy $ bitbake <your-image-or-recipe> --runall=cleanall To analyse the environment $ bitbake -e | grep ^TARGET_ARCH To fetch everything including cross compiler use $ bitbake -c fetch world") Tag: Visual edit
  • 17:04, 9 February 2024Block id (hist | edit) ‎[238 bytes]Mike (talk | contribs) (Created page with "get the block id<pre> # blkid /dev/sda1 </pre>change fstab to mount by uuid instead. e.g.<pre> UUID="b8f0a58b-6dce-4d8a-89f0-d82bb2edcd01" /nfs ext4 defaults 0 2 UUID="6af41e26-7634-4bb1-9ea0-902401b45375" none swap defaults 0 0 </pre>") Tag: Visual edit
  • 16:45, 9 February 2024Boot from m.2 (hist | edit) ‎[1,106 bytes]Mike (talk | contribs) (Created page with "To boot from M.2. requires some changes. transfer boot image to m.2. which can be done by restoring the boot image directly<pre> # dd if=bootimg of=/dev/nvme0 bs=10M status=progress </pre>However, this does not allow you to easily change the partition tables, and thus.. use fdisk to create the partition table, and mount it up as you want eg.<pre> Create the following partitions / 100G /boot 1G /var 100G /home 100G swap 16G using fdisk. format each partition using m...") Tag: Visual edit
  • 16:30, 9 February 2024Orangepi (hist | edit) ‎[17 bytes]Mike (talk | contribs) (Created page with "boot from m.2") Tag: Visual edit
  • 16:28, 9 February 2024Disk images (hist | edit) ‎[313 bytes]Mike (talk | contribs) (Created page with "Mounting a disk image on linux<pre> # losetup -P /dev/loop0 ./Orangepi5_1.1.8_debian_bullseye_server_linux5.10.160.img # mkdir -p /mnt/sys1/boot # mount /dev/loop0p1  /mnt/sys1/ # mount /dev/loop0p2  /mnt/sys1/boot </pre>To undo the above<pre> # umount /mnt/sys1/boot /mnt/sys1 # losetup -d /dev/looop </pre>") Tag: Visual edit
  • 09:06, 29 January 2024Email (hist | edit) ‎[134 bytes]Mike (talk | contribs) (Created page with "# install postfix # install dovecot # enable sasl for dovecot/postfix integration. # install postfwd ## https://postfwd.org/quick.html") Tag: Visual edit