Tux wants to ask something

This page summarizes the projects mentioned and recommended in the original post on /r/linuxmemes

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • linux

    Linux kernel stable tree mirror (by gregkh)

    yes!!! but not lfs, let’s do this git clone --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git cd linux cp /boot/uname -r-config ./.config # todo: correct? make bzImage ln -s arch/x86/boot/bzImage ../bzImage_x86 wget https://busybox.net/downloads/busybox-1.33.1.tar.bz2 tar xjvf busybox-1.33.1.tar.bz2 cd busybox-1.33.1/ make allnoconfig make menuconfig # set OS name to BusyBox/Linux cause we don’t use GNU make make install mv _install ../fs cd ../filesystem mkdir -pv {dev,proc,etc/init.d,sys,tmp} sudo mknod dev/console c 5 1 sudo mknod dev/null c 1 3 cat >> etc/motd << EOF I am a fat nerd anyway welcome to my distro EOF cat >> etc/inittab << EOF ::sysinit:/etc/init.d/rc ::askfirst:/bin/sh ::restart:/sbin/init ::ctrlaltdel:/sbin/reboot ::shutdown:/bin/umount -a -r EOF cat >> etc/init.d/rc << EOF #!/bin/sh mount -t proc none /proc mount -t sysfs none /sys clear cat /etc/motd /bin/sh EOF chmod +x etc/init.d/rc sudo chown -R root:root . find . | cpio -H newc -o | gzip -9 > ../rootfs.cpio.gz cd .. qemu-system-i386 -kernel bzImage_x86 -initrd rootfs.cpio.gz done

  • kiss

    KISS Linux - Package Manager (by kisslinux)

    well https://kisslinux.org exists which is a distro with a package manager written completely in posix shell, it's more stable than anything I've tried.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts