I have a black screen on my PC, and I've somehow got in the terminal the terminal is all black and I can only do commands.
Is there a command to factory reset your PC through the terminal?
23 Answers
Follow these steps:
Try configuring unconfigured packages:
sudo dpkg --configure -aUpdate the contents of the repositories
sudo apt-get updateTry to fix missing dependencies:
sudo apt-get -f installUpdate all packages with new versions available:
sudo apt-get full-upgradeReinstall Ubuntu desktop:
sudo apt-get install --reinstall ubuntu-desktopRemove unnecessary packages:
sudo apt-get autoremoveDelete downloaded packages already installed:
sudo apt-get cleanReboot the system to see if the issue was resolved:
sudo reboot
You can use :
dconf reset -f /Running this command will reset, among other things: the apps pinned to the Unity launcher or Ubuntu Dock ; panel applets and/or indicators; monitor resolution and interface scaling; keyboard shortcuts; fonts, GTK and icon theme; window button placement, launcher behaviour; and so on.
This command will also reset any application that uses dconf to store its settings. This includes core desktop apps like Rhythmbox, Evince, Shotwell and Nautilus.
This latter point is important to keep in mind as this command may reset library settings, delete accounts, disable plugins, and/or require you to re-authenticate with online services.
On the flip it means this command is the perfect one to run when you want to reset GNOME 3 settings.
There is no such thing as factory reset in ubuntu. You have to run a live disk/usb drive of any linux distro and backup your data and then reinstall ubuntu.
2