User Tools


kernel:kiss

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
kernel:kiss [2025/11/11 14:06] – [2.0] marlonivokernel: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:
- 
-<code> 
-sudo ip addr add 192.168.1.42/24 dev eth0 
-sudo ip route add default via 192.168.1.1 
-</code> 
  
 Then activate ssh and remove change some settings: Then activate ssh and remove change some settings:
 <code> <code>
-sudo rc-service sshd start +vim /etc/ssh/sshd_config
----- +
-sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config +
-sudo sed -i 's/^#\?PermitEmptyPasswords.*/A*+
 --- ---
 +PermitRootLogin yes
 </code> </code>
  
Line 20: Line 13:
 ip addr add 192.168.1.10/24 dev eth0 ip addr add 192.168.1.10/24 dev eth0
 ip link set eth0 up ip link set eth0 up
-rc-service sshd restart+rc-service sshd start
 </code> </code>
  
-And from the laptop you are reading this guide:+And from the device you are reading this guide:
 <code> <code>
-ssh root@192.168.1.42    <- enter the live ISO pw+ssh root@192.168.1.10    <- enter the live ISO pw
 </code> </code>
  
 ====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:
 <code> <code>
 wipefs -a /dev/sdX wipefs -a /dev/sdX
Line 44: Line 37:
 And parition it as `mkfs.ext4` And parition it as `mkfs.ext4`
 <code> <code>
-sudo mkfs.ext4 /dev/sda1+sudo mkfs.ext4 /dev/sdaX
 </code> </code>
  
Line 50: Line 43:
 <code> <code>
 mount /dev/sdX /mnt mount /dev/sdX /mnt
 +</code>
  
 Begin by downloading the latest KISS tarball: Begin by downloading the latest KISS tarball:
Line 119: Line 112:
 make -j$(nproc) make -j$(nproc)
 </code> </code>
 +
 +====4.0====
 +Finally, be sure to give your kernel and System.map an appropriate name for the bootloader (grub) to identify:
 +<code>
 +mv /boot/vmlinuz /boot/vmlinuz-6.7.9
 +mv /boot/System.map /boot/System.map-6.7.9
 +</code>
 +
 +To install grub bootloader, run the following commands:
 +<code>
 +grub-install /dev/sda
 +grub-mkconfig -o /boot/grub/grub.cfg
 +</code>
 +
 +Then exit the system, unmount the drives and reboot:
 +<code>
 +exit
 +umount /dev/sda1
 +reboot
 +</code>
 +
 +====5.0====
 +Read more: 
 +https://kisscommunity.org  
 +https://kisslinux.org  
 +
 +