Every time I try to kill the x-server,
sudo service lightdm stop
so that I can install the latest Nvidia drivers, I get an error message.
stop: Unknown instance:
What am I doing wrong?
Every time I try to kill the x-server,
sudo service lightdm stop
so that I can install the latest Nvidia drivers, I get an error message.
stop: Unknown instance:
What am I doing wrong?
Use Ctrl+Alt+F1 to switch to TTY.
Log in.
Run:
sudo service lightdm stop
LightDM and Xserver should be stopped now (check with Ctrl+Alt+F7, which is your current Xorg session, it should not show any desktop now).
Do your things.
Run the following command to start lightdm and xorg again:
sudo service lightdm start
Good Luck!
gdm3
rather than lightdm
. Also my desktop environment in recent ubuntu was running on the F1 terminal, not F7, so I did the sudo service gdm3 stop
on some other free terminal - the F3 one.
– Klesun
Sep 26 '21 at 10:20
I did a little more digging around and found that I could just use pgrep to find its PID and then kill it.
pgrep dm -l
sudo kill (insert PID here)
You will need the help of htop
or top
. Write down the PID number of the process you want to kill (in this case, Xorg
). Once you have the PID, run the below command in a root shell (sudo -s
):
kill -9 <PID>
For example:
kill -9 1234
You should then be able to install the NVidia drivers.
Try running sudo service gdm stop
.
The reason your command may be resulting in that output is because lightdm
isn't your Display Manager.
In addition to gdm
, also try xdm
and kdm
.
/etc/init.d/lightdm stop maybe? And why you can't install nvidia drivers from software center?
Ok had the GTX 970 installation Problem under Ubuntu 14.04 too. Sometime i was able to start Ubuntu with the standart drivers and sometime not.
However, this should hopefully fix the Problem: After switching from IGP (I7 4770 with HD4600) to GTX970 in Biosi got an error with some Xorg Gui.
However you can not install the Nvidia-Driver while X is running: -> sudo killall Xorg solves the problem
Then -> sudo ./NVIDIA-x68xxx.run
After the first Driver Install (orig. Nvidia 352.xx) i had a blank screen. Then i run the Nvidia Driver Installer again -> sudo ./NVIDIA-x68xxx.run This second install told me some kind of noveu driver is running and should be disabled. The driver asked me if it should disable noveu -> Yes disable noveu
After restart: Et Voila lighdm is running again :)