Recovering from a 'corrupt' theme installation on Debian
I recently installed a new theme on my Debian Stretch machine, however after rebooting, I am unable to get past the login screen. If I enter the incorrect log in details, the systems tells me that the wrong credentials were provided, however if I enter the correct details, nothing happens for a few seconds, then the screen flashes black then goes back to the login screen.
Theme in question: Flat Remix Gnome
I followed the terminal installation
instructions, and everything seemed to be fine until after a reboot.
I can still login view terminal (switching to a terminal session when I hit the login screen), however I do not know how I can remove this theme and get back to the default one, which will hopefully allow me to log in via the gnome login screen.
Any suggestions?
I've looked at how to change theme from terminal however my settings.ini
file only very little information in it, and does not contain what the answer suggests.
debian gnome login theme
add a comment |
I recently installed a new theme on my Debian Stretch machine, however after rebooting, I am unable to get past the login screen. If I enter the incorrect log in details, the systems tells me that the wrong credentials were provided, however if I enter the correct details, nothing happens for a few seconds, then the screen flashes black then goes back to the login screen.
Theme in question: Flat Remix Gnome
I followed the terminal installation
instructions, and everything seemed to be fine until after a reboot.
I can still login view terminal (switching to a terminal session when I hit the login screen), however I do not know how I can remove this theme and get back to the default one, which will hopefully allow me to log in via the gnome login screen.
Any suggestions?
I've looked at how to change theme from terminal however my settings.ini
file only very little information in it, and does not contain what the answer suggests.
debian gnome login theme
add a comment |
I recently installed a new theme on my Debian Stretch machine, however after rebooting, I am unable to get past the login screen. If I enter the incorrect log in details, the systems tells me that the wrong credentials were provided, however if I enter the correct details, nothing happens for a few seconds, then the screen flashes black then goes back to the login screen.
Theme in question: Flat Remix Gnome
I followed the terminal installation
instructions, and everything seemed to be fine until after a reboot.
I can still login view terminal (switching to a terminal session when I hit the login screen), however I do not know how I can remove this theme and get back to the default one, which will hopefully allow me to log in via the gnome login screen.
Any suggestions?
I've looked at how to change theme from terminal however my settings.ini
file only very little information in it, and does not contain what the answer suggests.
debian gnome login theme
I recently installed a new theme on my Debian Stretch machine, however after rebooting, I am unable to get past the login screen. If I enter the incorrect log in details, the systems tells me that the wrong credentials were provided, however if I enter the correct details, nothing happens for a few seconds, then the screen flashes black then goes back to the login screen.
Theme in question: Flat Remix Gnome
I followed the terminal installation
instructions, and everything seemed to be fine until after a reboot.
I can still login view terminal (switching to a terminal session when I hit the login screen), however I do not know how I can remove this theme and get back to the default one, which will hopefully allow me to log in via the gnome login screen.
Any suggestions?
I've looked at how to change theme from terminal however my settings.ini
file only very little information in it, and does not contain what the answer suggests.
debian gnome login theme
debian gnome login theme
asked Feb 20 at 11:56
KlickerKlicker
101
101
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Did you try uninstalling the theme? --purge
will remove config files too (source: man apt-get
). After uninstalling remove ppa:daniruiz/flat-remix.
$ sudo apt-get remove --purge flat-remix-gnome
$ sudo add-apt-repository --remove ppa:daniruiz/flat-remix
Also that webpage talks about installing from terminal and shows some paths where you could find theme files and delete them by hand:
$ sudo mv /usr/share/gnome-shell/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource.old &&
$ sudo ln /usr/share/themes/Flat-Remix/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
ln made a "shortcut" to the files, you can remove that and system probably wont know where to find files even if they are on the filesystem, therefore not use them. Files you are searching for are (at least according to terminal installation paths) located at: /usr/share/themes/Flat-Remix/
. Remove the whole folder. (or the symbolic link "shortcut" that points to that). You could also rewrite that link to point at another theme, similarly to the ln command mentioned here, but put another theme in first path. Hope it helps
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f501834%2frecovering-from-a-corrupt-theme-installation-on-debian%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
Did you try uninstalling the theme? --purge
will remove config files too (source: man apt-get
). After uninstalling remove ppa:daniruiz/flat-remix.
$ sudo apt-get remove --purge flat-remix-gnome
$ sudo add-apt-repository --remove ppa:daniruiz/flat-remix
Also that webpage talks about installing from terminal and shows some paths where you could find theme files and delete them by hand:
$ sudo mv /usr/share/gnome-shell/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource.old &&
$ sudo ln /usr/share/themes/Flat-Remix/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
ln made a "shortcut" to the files, you can remove that and system probably wont know where to find files even if they are on the filesystem, therefore not use them. Files you are searching for are (at least according to terminal installation paths) located at: /usr/share/themes/Flat-Remix/
. Remove the whole folder. (or the symbolic link "shortcut" that points to that). You could also rewrite that link to point at another theme, similarly to the ln command mentioned here, but put another theme in first path. Hope it helps
add a comment |
Did you try uninstalling the theme? --purge
will remove config files too (source: man apt-get
). After uninstalling remove ppa:daniruiz/flat-remix.
$ sudo apt-get remove --purge flat-remix-gnome
$ sudo add-apt-repository --remove ppa:daniruiz/flat-remix
Also that webpage talks about installing from terminal and shows some paths where you could find theme files and delete them by hand:
$ sudo mv /usr/share/gnome-shell/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource.old &&
$ sudo ln /usr/share/themes/Flat-Remix/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
ln made a "shortcut" to the files, you can remove that and system probably wont know where to find files even if they are on the filesystem, therefore not use them. Files you are searching for are (at least according to terminal installation paths) located at: /usr/share/themes/Flat-Remix/
. Remove the whole folder. (or the symbolic link "shortcut" that points to that). You could also rewrite that link to point at another theme, similarly to the ln command mentioned here, but put another theme in first path. Hope it helps
add a comment |
Did you try uninstalling the theme? --purge
will remove config files too (source: man apt-get
). After uninstalling remove ppa:daniruiz/flat-remix.
$ sudo apt-get remove --purge flat-remix-gnome
$ sudo add-apt-repository --remove ppa:daniruiz/flat-remix
Also that webpage talks about installing from terminal and shows some paths where you could find theme files and delete them by hand:
$ sudo mv /usr/share/gnome-shell/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource.old &&
$ sudo ln /usr/share/themes/Flat-Remix/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
ln made a "shortcut" to the files, you can remove that and system probably wont know where to find files even if they are on the filesystem, therefore not use them. Files you are searching for are (at least according to terminal installation paths) located at: /usr/share/themes/Flat-Remix/
. Remove the whole folder. (or the symbolic link "shortcut" that points to that). You could also rewrite that link to point at another theme, similarly to the ln command mentioned here, but put another theme in first path. Hope it helps
Did you try uninstalling the theme? --purge
will remove config files too (source: man apt-get
). After uninstalling remove ppa:daniruiz/flat-remix.
$ sudo apt-get remove --purge flat-remix-gnome
$ sudo add-apt-repository --remove ppa:daniruiz/flat-remix
Also that webpage talks about installing from terminal and shows some paths where you could find theme files and delete them by hand:
$ sudo mv /usr/share/gnome-shell/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource.old &&
$ sudo ln /usr/share/themes/Flat-Remix/gnome-shell-theme.gresource /usr/share/gnome-shell/gnome-shell-theme.gresource
ln made a "shortcut" to the files, you can remove that and system probably wont know where to find files even if they are on the filesystem, therefore not use them. Files you are searching for are (at least according to terminal installation paths) located at: /usr/share/themes/Flat-Remix/
. Remove the whole folder. (or the symbolic link "shortcut" that points to that). You could also rewrite that link to point at another theme, similarly to the ln command mentioned here, but put another theme in first path. Hope it helps
answered Feb 20 at 14:50
pormulsyspormulsys
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f501834%2frecovering-from-a-corrupt-theme-installation-on-debian%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