Skip to content

Releases: thor2002ro/unraid_kernel

7.1rc7 20260614 o2 gcc 7.1.2-7.2.x x86_64_v3 ONLY

14 Jun 16:25

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260614

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0.0 20260420 o2 lto clang 7.1.2-7.2.x x86_64_v3 ONLY

20 Apr 05:34

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260420

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0.0 20260417 o3 lto clang 7.1.2-7.2.x x86_64_v3 ONLY

18 Apr 14:31

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260417

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0 rc3 20260313 o3 lto clang 7.1.2-7.2.x x86_64_v3 ONLY

13 Mar 10:55

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260313

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0 rc3 20260311 o3 lto clang 7.1.2-7.2.x x86_64_v3 ONLY

11 Mar 21:49

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260311

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0 rc1 20260224 o2 clang 7.1.2-7.2.x

24 Feb 18:05

Choose a tag to compare

Pre-release

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260223

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

7.0 rc1 20260223 o2 clang 7.1.2-7.2.x

24 Feb 09:35

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260223

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

6.19.0 20260209 o2 clang 7.1.2-7.2.x

09 Feb 16:15

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260209

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

6.19rc7 20260129 o2 clang 7.1.2-7.2.x

30 Jan 10:43

Choose a tag to compare

Pre-release

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260129

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0

6.18.7 20260125 o2 clang 7.1.2-7.2.x

25 Jan 09:52

Choose a tag to compare

Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260125

start zram with something like in the go file

 # Get total RAM in bytes
 
 total_ram=$(free -b | grep Mem: | awk '{print $2}')
 # Calculate 25% of RAM
 zram_size=$((total_ram / 4))
 
 modprobe zram
 sleep 1
 
 # Create a zram device with 25% of RAM
 zramctl --find --size ${zram_size} --algorithm lz4 && \
     mkswap -L zram0 /dev/zram0 && \
     swapon -p 100 /dev/zram0