The same way you would do it in other distributions. Here are just four of the possibilities:
Option 1: Open a Konsole/Terminal window, log in a root user, then run the
nano editor on the command line:
- Code: Select all
$ su
Password:
# nano /etc/default/grub
# exit
exit
$
Option 2 for KDE users: Open a Konsole window then use kdesu to run the kwrite editor (you'll be prompted to enter the root user's password):
- Code: Select all
$ kdesu kwrite /etc/default/grub
$
Option 3 for GNOME users: Open a Terminal window then use gksu to run the gedit editor (you'll be prompted to enter the root user's password):
- Code: Select all
$ gksu gedit /etc/default/grub
$
Option 4 for Xfce users: Open a Terminal window then use sudo to run the leafpad editor (you'll be prompted to enter
your password):
- Code: Select all
$ sudo leafpad /etc/default/grub
$