It starts to appear after boot. I did feel a bit of slowness when I use the machine.
Using Lunar, any idea how to check it, remove it, fix whatever is going on.
I wish I can run a control-center-like application with just a few very common settings in it. Language, date and time, keyboard etc.
Is there any package providing that feature? Or is there a way to allow me to create an "application/panel" like that?
Edit for clarity:
This is an OS template I am preparing. User will create a virtual machine from it. So I want to have an application which I can put it on the desktop. They are from different countries. They will need to configure some basic settings: language, time zone, keyboard etc..
So I wish to help them to see a panel and there are these settings right there to click one by one to get to these settings.
I wish to have such "panel" application. I know these settings are within the control center. So function-wise, it's like a customized control center panel or "starter guide".
The reason that I need to somehow become root without typing sudo
is because
error while loading shared libraries: libc.so.6:
cannot open shared object file: No such file or directory
I used sudo
to have sudo mv /lib64/libc.so.6 /lib64/libc.so.6.bak
Because I followed some instructions so that I can update the symbolic link to libc-12.4.so
instead of the current libc-12.2.so
by
LD_PRELOAD=./libc-2.14.so ln -s ./libc-2.14.so ./libc.so.6
But this doesn't work using sudo
. Now I am afraid to logout or reboot to the death of the system. Because I need to get root permission to fix this.
I don't have a rescue disk. worse case, I have to mount the hard drive to another machine and fix it.
Please help.
$ sudo bash -c "LD_PRELOAD=./libc-2.14.so ln -s ./libc-2.14.so ./libc.so.6"
sudo: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
$ LD_PRELOAD=./libc-2.14.so sudo LD_PRELOAD=./libc-2.14.so ln -s ./libc-2.14.so ./libc.so.6
sudo: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
$ LD_PRELOAD=./libc-2.12.so sudo LD_PRELOAD=./libc-2.12.so ln -s ./libc-2.12.so ./libc.so.6
sudo: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
$ LD_PRELOAD=./libc-2.12.so ln -s ./libc-2.12.so ./libc.so.6
ln: creating symbolic link `./libc.so.6': Permission denied