How to safely change OS name in grub boot menu?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have a system where I am dual-booting Ubuntu GNOME 15.10 and Ubuntu GNOME 16.04, however after installing Ubuntu GNOME 16.04, I have found that in the GRUB boot entry list it is called "Ubuntu", whereas the other one is called something like "Ubuntu GNOME 15.10", is there any way I can change the text of the "Ubuntu" one to "Ubuntu GNOME 16.04"? And also change the names of the other options so that instead of "Advanced options for Ubuntu" it says "Advanced options for Ubuntu GNOME 16.04" etc?
I rather do it manually if it is safe to do so, or a piece of software could be recommended, however nothing from a PPA or other untrusted not official source (I will only install software from the Ubuntu official repositories).
boot dual-boot grub2 software-recommendation
add a comment |
I have a system where I am dual-booting Ubuntu GNOME 15.10 and Ubuntu GNOME 16.04, however after installing Ubuntu GNOME 16.04, I have found that in the GRUB boot entry list it is called "Ubuntu", whereas the other one is called something like "Ubuntu GNOME 15.10", is there any way I can change the text of the "Ubuntu" one to "Ubuntu GNOME 16.04"? And also change the names of the other options so that instead of "Advanced options for Ubuntu" it says "Advanced options for Ubuntu GNOME 16.04" etc?
I rather do it manually if it is safe to do so, or a piece of software could be recommended, however nothing from a PPA or other untrusted not official source (I will only install software from the Ubuntu official repositories).
boot dual-boot grub2 software-recommendation
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58
add a comment |
I have a system where I am dual-booting Ubuntu GNOME 15.10 and Ubuntu GNOME 16.04, however after installing Ubuntu GNOME 16.04, I have found that in the GRUB boot entry list it is called "Ubuntu", whereas the other one is called something like "Ubuntu GNOME 15.10", is there any way I can change the text of the "Ubuntu" one to "Ubuntu GNOME 16.04"? And also change the names of the other options so that instead of "Advanced options for Ubuntu" it says "Advanced options for Ubuntu GNOME 16.04" etc?
I rather do it manually if it is safe to do so, or a piece of software could be recommended, however nothing from a PPA or other untrusted not official source (I will only install software from the Ubuntu official repositories).
boot dual-boot grub2 software-recommendation
I have a system where I am dual-booting Ubuntu GNOME 15.10 and Ubuntu GNOME 16.04, however after installing Ubuntu GNOME 16.04, I have found that in the GRUB boot entry list it is called "Ubuntu", whereas the other one is called something like "Ubuntu GNOME 15.10", is there any way I can change the text of the "Ubuntu" one to "Ubuntu GNOME 16.04"? And also change the names of the other options so that instead of "Advanced options for Ubuntu" it says "Advanced options for Ubuntu GNOME 16.04" etc?
I rather do it manually if it is safe to do so, or a piece of software could be recommended, however nothing from a PPA or other untrusted not official source (I will only install software from the Ubuntu official repositories).
boot dual-boot grub2 software-recommendation
boot dual-boot grub2 software-recommendation
asked Apr 20 '16 at 17:12
user364819
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58
add a comment |
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58
add a comment |
2 Answers
2
active
oldest
votes
Open the grub configuration file:
sudo nano /etc/default/grub
Just comment the line starting with GRUB_DISTRIBUTOR
and add one line:
# GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR="Ubuntu 15.10"
Afterwards, run
sudo update-grub
It should work after the next reboot. You will need to boot to both ubuntu installations and to change both names.
Important Note: Something you'll want to avoid doing is editing the file /etc/lsb-release
and modifying the value for DISTRIB_ID
which is read from the command lsb_release -i -s
. While this does work to rename the grub menu entry (if you haven't modified /etc/default/grub
), other programs also rely on the default name and may crash if it's modified (e.g. "Ubuntu" for Xubuntu). With that said though, kernel updates also replace this file, which will undo any changes to it.
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
add a comment |
There is a program called Grub Customizer that you can use for this. You can add, delete, move and rename entries. It also has a lot more features to set display resolution and so on.
See for yourself: https://launchpad.net/grub-customizer
Installation (copied from that page above):
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
After the installation I have a new entry under Application > System Tools > Administration called Grub Customizer.
Rename entry:
- Start Grub Customizer
- You will see the list of grub menu entries. Right click on one and choose "Rename".
- Enter the new name
- Click save in the toolbar and close the program
That's it.
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f759600%2fhow-to-safely-change-os-name-in-grub-boot-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Open the grub configuration file:
sudo nano /etc/default/grub
Just comment the line starting with GRUB_DISTRIBUTOR
and add one line:
# GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR="Ubuntu 15.10"
Afterwards, run
sudo update-grub
It should work after the next reboot. You will need to boot to both ubuntu installations and to change both names.
Important Note: Something you'll want to avoid doing is editing the file /etc/lsb-release
and modifying the value for DISTRIB_ID
which is read from the command lsb_release -i -s
. While this does work to rename the grub menu entry (if you haven't modified /etc/default/grub
), other programs also rely on the default name and may crash if it's modified (e.g. "Ubuntu" for Xubuntu). With that said though, kernel updates also replace this file, which will undo any changes to it.
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
add a comment |
Open the grub configuration file:
sudo nano /etc/default/grub
Just comment the line starting with GRUB_DISTRIBUTOR
and add one line:
# GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR="Ubuntu 15.10"
Afterwards, run
sudo update-grub
It should work after the next reboot. You will need to boot to both ubuntu installations and to change both names.
Important Note: Something you'll want to avoid doing is editing the file /etc/lsb-release
and modifying the value for DISTRIB_ID
which is read from the command lsb_release -i -s
. While this does work to rename the grub menu entry (if you haven't modified /etc/default/grub
), other programs also rely on the default name and may crash if it's modified (e.g. "Ubuntu" for Xubuntu). With that said though, kernel updates also replace this file, which will undo any changes to it.
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
add a comment |
Open the grub configuration file:
sudo nano /etc/default/grub
Just comment the line starting with GRUB_DISTRIBUTOR
and add one line:
# GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR="Ubuntu 15.10"
Afterwards, run
sudo update-grub
It should work after the next reboot. You will need to boot to both ubuntu installations and to change both names.
Important Note: Something you'll want to avoid doing is editing the file /etc/lsb-release
and modifying the value for DISTRIB_ID
which is read from the command lsb_release -i -s
. While this does work to rename the grub menu entry (if you haven't modified /etc/default/grub
), other programs also rely on the default name and may crash if it's modified (e.g. "Ubuntu" for Xubuntu). With that said though, kernel updates also replace this file, which will undo any changes to it.
Open the grub configuration file:
sudo nano /etc/default/grub
Just comment the line starting with GRUB_DISTRIBUTOR
and add one line:
# GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR="Ubuntu 15.10"
Afterwards, run
sudo update-grub
It should work after the next reboot. You will need to boot to both ubuntu installations and to change both names.
Important Note: Something you'll want to avoid doing is editing the file /etc/lsb-release
and modifying the value for DISTRIB_ID
which is read from the command lsb_release -i -s
. While this does work to rename the grub menu entry (if you haven't modified /etc/default/grub
), other programs also rely on the default name and may crash if it's modified (e.g. "Ubuntu" for Xubuntu). With that said though, kernel updates also replace this file, which will undo any changes to it.
edited Feb 12 at 16:00
wjandrea
9,56642765
9,56642765
answered Apr 20 '16 at 17:32
davidbaumanndavidbaumann
1,45911127
1,45911127
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
add a comment |
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
1
1
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
Is there no way of changing the names of the other options too? Or is that done automatically based on the names of the OSs?
– user364819
Apr 20 '16 at 17:42
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
You can turn off almost all the scripts and add anything you want to 40_custom as your own boot stanza with any description. And if you boot partition (link to kernel) instead of kernel you do not have to edit with every kernel update.How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan help.ubuntu.com/community/MaintenanceFreeCustomGrub2Screen AND: help.ubuntu.com/community/Grub2/CustomMenus
– oldfred
Apr 20 '16 at 17:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Does not work with mine LinuxMint KDE 18.3, names are still the default ones
– WooYek
Feb 21 '18 at 12:53
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
Did work on Ubuntu 18.04 with the interesting side effect the colors of Grub changed from black/white to black/blue/white.
– monty
May 23 '18 at 18:41
add a comment |
There is a program called Grub Customizer that you can use for this. You can add, delete, move and rename entries. It also has a lot more features to set display resolution and so on.
See for yourself: https://launchpad.net/grub-customizer
Installation (copied from that page above):
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
After the installation I have a new entry under Application > System Tools > Administration called Grub Customizer.
Rename entry:
- Start Grub Customizer
- You will see the list of grub menu entries. Right click on one and choose "Rename".
- Enter the new name
- Click save in the toolbar and close the program
That's it.
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
add a comment |
There is a program called Grub Customizer that you can use for this. You can add, delete, move and rename entries. It also has a lot more features to set display resolution and so on.
See for yourself: https://launchpad.net/grub-customizer
Installation (copied from that page above):
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
After the installation I have a new entry under Application > System Tools > Administration called Grub Customizer.
Rename entry:
- Start Grub Customizer
- You will see the list of grub menu entries. Right click on one and choose "Rename".
- Enter the new name
- Click save in the toolbar and close the program
That's it.
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
add a comment |
There is a program called Grub Customizer that you can use for this. You can add, delete, move and rename entries. It also has a lot more features to set display resolution and so on.
See for yourself: https://launchpad.net/grub-customizer
Installation (copied from that page above):
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
After the installation I have a new entry under Application > System Tools > Administration called Grub Customizer.
Rename entry:
- Start Grub Customizer
- You will see the list of grub menu entries. Right click on one and choose "Rename".
- Enter the new name
- Click save in the toolbar and close the program
That's it.
There is a program called Grub Customizer that you can use for this. You can add, delete, move and rename entries. It also has a lot more features to set display resolution and so on.
See for yourself: https://launchpad.net/grub-customizer
Installation (copied from that page above):
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
After the installation I have a new entry under Application > System Tools > Administration called Grub Customizer.
Rename entry:
- Start Grub Customizer
- You will see the list of grub menu entries. Right click on one and choose "Rename".
- Enter the new name
- Click save in the toolbar and close the program
That's it.
edited Apr 20 '16 at 17:49
answered Apr 20 '16 at 17:41
Jenny O'ReillyJenny O'Reilly
17610
17610
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
add a comment |
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
As I already stated in my question, I do not wish to install anything which is not from the official repositories, so PPAs aren't an option. Is this not available in the official repositories?
– user364819
Apr 20 '16 at 17:52
1
1
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
Sorry, must have missed that. I don't think it is in the official repository. It's a nice and easy way if you don't want to edit config files with an editor. I'll still leave the answer in case it helps somebody else.
– Jenny O'Reilly
Apr 20 '16 at 17:54
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f759600%2fhow-to-safely-change-os-name-in-grub-boot-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This might also be useful: ubuntuforums.org/showthread.php?t=1287602
– Ron
Apr 20 '16 at 17:58