kernel:kiss
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| kernel:kiss [2025/11/11 14:04] – [KISS Installation] marlonivo | kernel:kiss [2025/11/13 09:50] (current) – [5.0] marlonivo | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====KISS Installation==== | ====KISS Installation==== | ||
| First we wanna have an ssh connection to copy and paste the following commands in this guide: | First we wanna have an ssh connection to copy and paste the following commands in this guide: | ||
| - | |||
| - | < | ||
| - | sudo ip addr add 192.168.1.42/ | ||
| - | sudo ip route add default via 192.168.1.1 | ||
| - | </ | ||
| Then activate ssh and remove change some settings: | Then activate ssh and remove change some settings: | ||
| < | < | ||
| - | sudo rc-service sshd start | + | vim / |
| - | ---- | + | |
| - | sudo sed -i ' | + | |
| - | sudo sed -i ' | + | |
| --- | --- | ||
| + | PermitRootLogin yes | ||
| </ | </ | ||
| Line 20: | Line 13: | ||
| ip addr add 192.168.1.10/ | ip addr add 192.168.1.10/ | ||
| ip link set eth0 up | ip link set eth0 up | ||
| - | rc-service sshd restart | + | rc-service sshd start |
| </ | </ | ||
| - | And from the laptop | + | And from the device |
| < | < | ||
| - | ssh root@192.168.1.42 <- enter the live ISO pw | + | ssh root@192.168.1.10 <- enter the live ISO pw |
| </ | </ | ||
| ====2.0==== | ====2.0==== | ||
| - | Now wipe everything that preexisted on your drive and format it correctly:cf | + | Now wipe everything that preexisted on your drive and format it correctly: |
| < | < | ||
| - | wipefs -a /dev/sda | + | wipefs -a /dev/sdX |
| --- | --- | ||
| - | sudo sfdisk /dev/sda <<EOF | + | sudo sfdisk /dev/sdX <<EOF |
| label: dos | label: dos | ||
| device: /dev/sda | device: /dev/sda | ||
| unit: sectors | unit: sectors | ||
| - | /dev/sda1 : start=2048, type=83, bootable | + | /dev/sdaX : start=2048, type=83, bootable |
| EOF | EOF | ||
| </ | </ | ||
| Line 44: | Line 37: | ||
| And parition it as `mkfs.ext4` | And parition it as `mkfs.ext4` | ||
| < | < | ||
| - | sudo mkfs.ext4 /dev/sda1 | + | sudo mkfs.ext4 /dev/sdaX |
| </ | </ | ||
| - | Downloading | + | Now mount the drive |
| + | < | ||
| + | mount /dev/sdX /mnt | ||
| + | </ | ||
| Begin by downloading the latest KISS tarball: | Begin by downloading the latest KISS tarball: | ||
| Line 116: | Line 112: | ||
| make -j$(nproc) | make -j$(nproc) | ||
| </ | </ | ||
| + | |||
| + | ====4.0==== | ||
| + | Finally, be sure to give your kernel and System.map an appropriate name for the bootloader (grub) to identify: | ||
| + | < | ||
| + | mv / | ||
| + | mv / | ||
| + | </ | ||
| + | |||
| + | To install grub bootloader, run the following commands: | ||
| + | < | ||
| + | grub-install /dev/sda | ||
| + | grub-mkconfig -o / | ||
| + | </ | ||
| + | |||
| + | Then exit the system, unmount the drives and reboot: | ||
| + | < | ||
| + | exit | ||
| + | umount /dev/sda1 | ||
| + | reboot | ||
| + | </ | ||
| + | |||
| + | ====5.0==== | ||
| + | Read more: | ||
| + | https:// | ||
| + | https:// | ||
| + | |||
| + | |||