how to install gui for debian
I have installed debian in my old computer(extremely slow) with minimal installation. It is showing me terminal. I tried installing GUI as follows:
$apt-get update //done successfully
$apt-get install x-window-system-core gdm
It is showing is me error saying that: Unable to locate x-window-system-core and unable to locate gdm. Please anyone help me as soon as possible
linux debian gui
add a comment |
I have installed debian in my old computer(extremely slow) with minimal installation. It is showing me terminal. I tried installing GUI as follows:
$apt-get update //done successfully
$apt-get install x-window-system-core gdm
It is showing is me error saying that: Unable to locate x-window-system-core and unable to locate gdm. Please anyone help me as soon as possible
linux debian gui
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46
add a comment |
I have installed debian in my old computer(extremely slow) with minimal installation. It is showing me terminal. I tried installing GUI as follows:
$apt-get update //done successfully
$apt-get install x-window-system-core gdm
It is showing is me error saying that: Unable to locate x-window-system-core and unable to locate gdm. Please anyone help me as soon as possible
linux debian gui
I have installed debian in my old computer(extremely slow) with minimal installation. It is showing me terminal. I tried installing GUI as follows:
$apt-get update //done successfully
$apt-get install x-window-system-core gdm
It is showing is me error saying that: Unable to locate x-window-system-core and unable to locate gdm. Please anyone help me as soon as possible
linux debian gui
linux debian gui
asked Nov 18 '12 at 9:39
rahul.tapali
133114
133114
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46
add a comment |
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46
add a comment |
3 Answers
3
active
oldest
votes
The package in debian for the x window system is called "xserver-xorg-core", not "x-window-system-core" which would be your problem.
So you would install it with:
apt-get install xserver-xorg-core gdm.
If you want your system to be light-weight I wouldn't go for GDM as a display manager as it really isn't very light. I'd suggest either LightDM or SLiM instead.
Lastly, you'll probably also want a Window Manager as the xserver on its own only gives you the windows, nothing more. An example of a light-weight window manager is Openbox.
See the debian wiki for details and examples:
http://wiki.debian.org/DisplayManager
http://wiki.debian.org/WindowManager
http://wiki.debian.org/Xorg
add a comment |
To install GUI (Graphical User Interface) for debian
Gnome
# apt-get install aptitude tasksel
# tasksel install gnome-desktop --new-install
KDE
# apt-get install kde-standard
XFCE
# apt-get install xfce4 xfce4-goodies thunar-archive-plugin
There are more options to choose from this page http://namhuy.net/1085/install-gui-on-debian-7-wheezy.html
add a comment |
Just replace your previous second command or line with this one:
Previous commands:
$apt-get update
$apt-get install x-window-system-core gdm
New working commands:
$apt-get update
$apt-get install x-window-system-core gdm3
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f507241%2fhow-to-install-gui-for-debian%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The package in debian for the x window system is called "xserver-xorg-core", not "x-window-system-core" which would be your problem.
So you would install it with:
apt-get install xserver-xorg-core gdm.
If you want your system to be light-weight I wouldn't go for GDM as a display manager as it really isn't very light. I'd suggest either LightDM or SLiM instead.
Lastly, you'll probably also want a Window Manager as the xserver on its own only gives you the windows, nothing more. An example of a light-weight window manager is Openbox.
See the debian wiki for details and examples:
http://wiki.debian.org/DisplayManager
http://wiki.debian.org/WindowManager
http://wiki.debian.org/Xorg
add a comment |
The package in debian for the x window system is called "xserver-xorg-core", not "x-window-system-core" which would be your problem.
So you would install it with:
apt-get install xserver-xorg-core gdm.
If you want your system to be light-weight I wouldn't go for GDM as a display manager as it really isn't very light. I'd suggest either LightDM or SLiM instead.
Lastly, you'll probably also want a Window Manager as the xserver on its own only gives you the windows, nothing more. An example of a light-weight window manager is Openbox.
See the debian wiki for details and examples:
http://wiki.debian.org/DisplayManager
http://wiki.debian.org/WindowManager
http://wiki.debian.org/Xorg
add a comment |
The package in debian for the x window system is called "xserver-xorg-core", not "x-window-system-core" which would be your problem.
So you would install it with:
apt-get install xserver-xorg-core gdm.
If you want your system to be light-weight I wouldn't go for GDM as a display manager as it really isn't very light. I'd suggest either LightDM or SLiM instead.
Lastly, you'll probably also want a Window Manager as the xserver on its own only gives you the windows, nothing more. An example of a light-weight window manager is Openbox.
See the debian wiki for details and examples:
http://wiki.debian.org/DisplayManager
http://wiki.debian.org/WindowManager
http://wiki.debian.org/Xorg
The package in debian for the x window system is called "xserver-xorg-core", not "x-window-system-core" which would be your problem.
So you would install it with:
apt-get install xserver-xorg-core gdm.
If you want your system to be light-weight I wouldn't go for GDM as a display manager as it really isn't very light. I'd suggest either LightDM or SLiM instead.
Lastly, you'll probably also want a Window Manager as the xserver on its own only gives you the windows, nothing more. An example of a light-weight window manager is Openbox.
See the debian wiki for details and examples:
http://wiki.debian.org/DisplayManager
http://wiki.debian.org/WindowManager
http://wiki.debian.org/Xorg
answered Nov 18 '12 at 11:01
yzfr1
133118
133118
add a comment |
add a comment |
To install GUI (Graphical User Interface) for debian
Gnome
# apt-get install aptitude tasksel
# tasksel install gnome-desktop --new-install
KDE
# apt-get install kde-standard
XFCE
# apt-get install xfce4 xfce4-goodies thunar-archive-plugin
There are more options to choose from this page http://namhuy.net/1085/install-gui-on-debian-7-wheezy.html
add a comment |
To install GUI (Graphical User Interface) for debian
Gnome
# apt-get install aptitude tasksel
# tasksel install gnome-desktop --new-install
KDE
# apt-get install kde-standard
XFCE
# apt-get install xfce4 xfce4-goodies thunar-archive-plugin
There are more options to choose from this page http://namhuy.net/1085/install-gui-on-debian-7-wheezy.html
add a comment |
To install GUI (Graphical User Interface) for debian
Gnome
# apt-get install aptitude tasksel
# tasksel install gnome-desktop --new-install
KDE
# apt-get install kde-standard
XFCE
# apt-get install xfce4 xfce4-goodies thunar-archive-plugin
There are more options to choose from this page http://namhuy.net/1085/install-gui-on-debian-7-wheezy.html
To install GUI (Graphical User Interface) for debian
Gnome
# apt-get install aptitude tasksel
# tasksel install gnome-desktop --new-install
KDE
# apt-get install kde-standard
XFCE
# apt-get install xfce4 xfce4-goodies thunar-archive-plugin
There are more options to choose from this page http://namhuy.net/1085/install-gui-on-debian-7-wheezy.html
answered Oct 20 '13 at 16:41
THOMSON
10112
10112
add a comment |
add a comment |
Just replace your previous second command or line with this one:
Previous commands:
$apt-get update
$apt-get install x-window-system-core gdm
New working commands:
$apt-get update
$apt-get install x-window-system-core gdm3
add a comment |
Just replace your previous second command or line with this one:
Previous commands:
$apt-get update
$apt-get install x-window-system-core gdm
New working commands:
$apt-get update
$apt-get install x-window-system-core gdm3
add a comment |
Just replace your previous second command or line with this one:
Previous commands:
$apt-get update
$apt-get install x-window-system-core gdm
New working commands:
$apt-get update
$apt-get install x-window-system-core gdm3
Just replace your previous second command or line with this one:
Previous commands:
$apt-get update
$apt-get install x-window-system-core gdm
New working commands:
$apt-get update
$apt-get install x-window-system-core gdm3
edited Nov 11 '14 at 9:29
Tim Radcliffe
709416
709416
answered Nov 11 '14 at 7:22
Bob
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fsuperuser.com%2fquestions%2f507241%2fhow-to-install-gui-for-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
I think it is not connecting to ethernet. I tried pinging google it is saying unknown host.
– rahul.tapali
Nov 18 '12 at 9:46