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 13:09] – [3.0] marlonivokernel:kiss [2025/11/13 09:50] (current) – [5.0] marlonivo
Line 2: Line 2:
 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:
  
 +Then activate ssh and remove change some settings:
 <code> <code>
-sudo ip addr add 192.168.1.42/24 dev eth0 +vim /etc/ssh/sshd_config 
-sudo ip route add default via 192.168.1.1+--- 
 +PermitRootLogin yes
 </code> </code>
  
-Then activate ssh and remove change some settings:+Now give yourself an Ip
 <code> <code>
-sudo rc-service sshd start +ip addr add 192.168.1.10/24 dev eth0 
----- +ip link set eth0 up 
-sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config +rc-service sshd start
-sudo sed -i 's/^#\?PermitEmptyPasswords.*/A* +
----+
 </code> </code>
  
-Now 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   <- hit enter +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/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
 </code> </code>
Line 37: 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>
  
-Downloading the Tarball+Now mount the drive 
 +<code> 
 +mount /dev/sdX /mnt 
 +</code>
  
 Begin by downloading the latest KISS tarball: Begin by downloading the latest KISS tarball:
Line 109: 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  
 +
 +