Grub Customizer Error when launching on Ubuntu 18.04 LTSGRUB 2 Error : No such diskUbuntu 12.10 doesn't load...
Calculate total length of edges in select Voronoi diagram
Are small insurances worth it
How can friction do no work in case of pure rolling?
Rationale to prefer local variables over instance variables?
What is "desert glass" and what does it do to the PCs?
Why would the IRS ask for birth certificates or even audit a small tax return?
School performs periodic password audits. Is my password compromised?
Why dativ case for the verb widerspricht?
How spaceships determine each other's mass in space?
Did Amazon pay $0 in taxes last year?
The need of reserving one's ability in job interviews
Giving a talk in my old university, how prominently should I tell students my salary?
Should we avoid writing fiction about historical events without extensive research?
Is there a way to find out the age of climbing ropes?
Preparing as much as possible of a cake in advance
Why doesn't "adolescent" take any articles in "listen to adolescent agonising"?
Affine transformation of circular arc in 3D
Can a Mexican citizen living in US under DACA drive to Canada?
PSPICE - must be 'I' or 'V' error
Can a Mimic (container form) actually hold loot?
Do natural melee weapons (from racial traits) trigger Improved Divine Smite?
What is the purpose of a disclaimer like "this is not legal advice"?
Why do we call complex numbers “numbers” but we don’t consider 2 vectors numbers?
What is the meaning of option 'by' in TikZ Intersections
Grub Customizer Error when launching on Ubuntu 18.04 LTS
GRUB 2 Error : No such diskUbuntu 12.10 doesn't load after grubError in opening grub-customizerdata error in bootgrub … file brokengrub doesn't locate ubuntu after windows fresh install on a dual boot systemgrub-install: error: failed to get canonical path of `aufs'Accidentelly erased everything while fixing GRUB errorgrub-install: error: install device isn't specifiedSyntax Error in GRUB
I'm getting the error below when I am trying to use Grub Customizer on Ubuntu
grub-customizer: error while loading shared libraries:
libatkmm-1.6.so.1: cannot open shared object file: No such file or
directory
I am not sure where exactly what has gone wrong as I only installed Ubuntu today.
- Legovil
boot dual-boot grub2 customizer
add a comment |
I'm getting the error below when I am trying to use Grub Customizer on Ubuntu
grub-customizer: error while loading shared libraries:
libatkmm-1.6.so.1: cannot open shared object file: No such file or
directory
I am not sure where exactly what has gone wrong as I only installed Ubuntu today.
- Legovil
boot dual-boot grub2 customizer
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20
add a comment |
I'm getting the error below when I am trying to use Grub Customizer on Ubuntu
grub-customizer: error while loading shared libraries:
libatkmm-1.6.so.1: cannot open shared object file: No such file or
directory
I am not sure where exactly what has gone wrong as I only installed Ubuntu today.
- Legovil
boot dual-boot grub2 customizer
I'm getting the error below when I am trying to use Grub Customizer on Ubuntu
grub-customizer: error while loading shared libraries:
libatkmm-1.6.so.1: cannot open shared object file: No such file or
directory
I am not sure where exactly what has gone wrong as I only installed Ubuntu today.
- Legovil
boot dual-boot grub2 customizer
boot dual-boot grub2 customizer
asked May 14 '18 at 0:52
LegovilLegovil
112
112
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20
add a comment |
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20
add a comment |
1 Answer
1
active
oldest
votes
I was getting the same error when launching grub-customizer in ubuntu 18.04, what I did was just find the path of the missing library:
$ sudo find / -name "libatkmm-1.6.so.1"
/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
after that, I included the lib directory to the file that configures the libs environment variable:
$ sudo su
# echo "/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu" >> x86_64-linux-gnu.conf
# ldconfig
and it worked.
----------
OR you can create symbolic links into an already default lib path:
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1.1.0 /usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1.0.30 /usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1.4.0 /usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0.0.0 /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1
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%2f1035898%2fgrub-customizer-error-when-launching-on-ubuntu-18-04-lts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I was getting the same error when launching grub-customizer in ubuntu 18.04, what I did was just find the path of the missing library:
$ sudo find / -name "libatkmm-1.6.so.1"
/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
after that, I included the lib directory to the file that configures the libs environment variable:
$ sudo su
# echo "/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu" >> x86_64-linux-gnu.conf
# ldconfig
and it worked.
----------
OR you can create symbolic links into an already default lib path:
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1.1.0 /usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1.0.30 /usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1.4.0 /usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0.0.0 /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1
add a comment |
I was getting the same error when launching grub-customizer in ubuntu 18.04, what I did was just find the path of the missing library:
$ sudo find / -name "libatkmm-1.6.so.1"
/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
after that, I included the lib directory to the file that configures the libs environment variable:
$ sudo su
# echo "/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu" >> x86_64-linux-gnu.conf
# ldconfig
and it worked.
----------
OR you can create symbolic links into an already default lib path:
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1.1.0 /usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1.0.30 /usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1.4.0 /usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0.0.0 /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1
add a comment |
I was getting the same error when launching grub-customizer in ubuntu 18.04, what I did was just find the path of the missing library:
$ sudo find / -name "libatkmm-1.6.so.1"
/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
after that, I included the lib directory to the file that configures the libs environment variable:
$ sudo su
# echo "/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu" >> x86_64-linux-gnu.conf
# ldconfig
and it worked.
----------
OR you can create symbolic links into an already default lib path:
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1.1.0 /usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1.0.30 /usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1.4.0 /usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0.0.0 /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1
I was getting the same error when launching grub-customizer in ubuntu 18.04, what I did was just find the path of the missing library:
$ sudo find / -name "libatkmm-1.6.so.1"
/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
after that, I included the lib directory to the file that configures the libs environment variable:
$ sudo su
# echo "/snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu" >> x86_64-linux-gnu.conf
# ldconfig
and it worked.
----------
OR you can create symbolic links into an already default lib path:
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1.1.0 /usr/lib/x86_64-linux-gnu/libatkmm-1.6.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1.0.30 /usr/lib/x86_64-linux-gnu/libpangomm-1.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1.4.0 /usr/lib/x86_64-linux-gnu/libcairomm-1.0.so.1
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0.0.0 /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0
sudo ln -s /snap/gnome-system-monitor/36/usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1.3.0 /usr/lib/x86_64-linux-gnu/libgiomm-2.4.so.1
answered May 23 '18 at 6:09
Tiago SouzaTiago Souza
213
213
add a comment |
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%2f1035898%2fgrub-customizer-error-when-launching-on-ubuntu-18-04-lts%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
try this " sudo apt install libatkmm-1.6-* " from command line
– Joshua Besneatte
May 14 '18 at 2:20