How to Customize Kernel Parameters with Cinnamon Desktop on Linux Mint

This article explains how to customize kernel parameters on Linux Mint using the Cinnamon desktop.

Customizing kernel parameters in Linux Mint can help optimize system performance, enhance security, and enable hardware support. Whether you need to tweak system behavior for better responsiveness, enable experimental features, or troubleshoot an issue, modifying kernel parameters is a powerful way to control how Linux interacts with your hardware and software environment.

This guide will walk you through the process of customizing kernel parameters while using the Cinnamon Desktop on Linux Mint.

Understanding Kernel Parameters

Kernel parameters are options that modify the behavior of the Linux kernel. These parameters can be set temporarily at boot time or persistently using configuration files.

Common use cases for modifying kernel parameters include:

  • Enabling or disabling hardware features
  • Adjusting power management settings
  • Modifying memory management policies
  • Configuring system security settings
  • Debugging and troubleshooting issues

Kernel parameters can be set using:

  1. GRUB bootloader (persistent changes)
  2. sysctl (runtime changes)
  3. /proc and /sys file systems (temporary changes)

Checking Current Kernel Parameters

Before making changes, you may want to check which parameters are currently set. Open a terminal and run:

cat /proc/cmdline

This command displays the parameters that were passed to the kernel at boot.

To check system parameters managed by sysctl, run:

sysctl -a

This lists all available parameters and their current values.

Method 1: Modifying Kernel Parameters Using GRUB (Persistent Changes)

If you want your changes to persist across reboots, you need to modify the GRUB bootloader settings.

Step 1: Edit the GRUB Configuration

  1. Open a terminal and edit the GRUB configuration file:

    sudo nano /etc/default/grub
    
  2. Locate the line that starts with GRUB_CMDLINE_LINUX_DEFAULT. This line contains kernel parameters passed at boot time.

    Example:

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    
  3. Modify or add kernel parameters as needed. For example, if you want to disable Spectre/Meltdown mitigations for performance reasons, modify the line as follows:

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mitigations=off"
    

Step 2: Update GRUB and Reboot

After making changes, update GRUB and reboot the system:

sudo update-grub
sudo reboot

Once the system restarts, verify the changes by running:

cat /proc/cmdline

Method 2: Applying Kernel Parameters at Runtime with sysctl

The sysctl command allows you to modify kernel parameters at runtime without rebooting. However, changes made with sysctl do not persist after a reboot unless explicitly saved.

Step 1: Modify a Kernel Parameter

For example, to enable IP forwarding, run:

sudo sysctl -w net.ipv4.ip_forward=1

To verify the change:

sysctl net.ipv4.ip_forward

Step 2: Make Changes Persistent

To make changes permanent, edit the /etc/sysctl.conf file:

sudo nano /etc/sysctl.conf

Add or modify the required parameter:

net.ipv4.ip_forward = 1

Then, apply the changes:

sudo sysctl -p

Method 3: Directly Modifying /proc and /sys Files

Some kernel parameters can be adjusted on-the-fly by writing directly to files in /proc or /sys.

Example: Adjusting Swappiness

To check the current swappiness value (how aggressively the system swaps memory to disk):

cat /proc/sys/vm/swappiness

To change it to a lower value (e.g., 10 for reduced swapping):

echo 10 | sudo tee /proc/sys/vm/swappiness

For a permanent change, add the following line to /etc/sysctl.conf:

vm.swappiness = 10

Then apply changes with:

sudo sysctl -p

Restoring Default Kernel Parameters

If a modified kernel parameter causes issues, you can restore default settings:

  • For GRUB changes: Edit /etc/default/grub, remove or adjust the parameters, then run sudo update-grub and reboot.
  • For sysctl changes: Edit /etc/sysctl.conf, remove the problematic line, and run sudo sysctl -p.
  • For /proc or /sys changes: A reboot resets most changes unless they are configured in /etc/sysctl.conf.

Conclusion

Customizing kernel parameters in Linux Mint with the Cinnamon Desktop gives you fine-grained control over system behavior. Whether making temporary changes with sysctl, applying persistent modifications through GRUB, or tweaking values via /proc and /sys, understanding how to manage kernel parameters helps you optimize performance, improve security, and resolve system issues.

Always test changes carefully and document modifications to ensure you can revert if needed. With these tools, you can fine-tune Linux Mint to better suit your needs.