LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 05-03-2007, 12:53 PM   #31
binary_y2k2
Member
 
Registered: Jul 2005
Location: England, UK
Distribution: Ubuntu 8.04 Server, Kubuntu 12.04
Posts: 698
Blog Entries: 1

Rep: Reputation: 31

The only difference between the server install and the desktop install is the lack of a GUI. (There are a couple other differences, but that's the main one). You can easily install install a GUI (without security risks). Just install "ubuntu-desktop", (for Gnome) "kubuntu-desktop", (for KDE) or "xubuntu-desktop" (for xfce), you can do this with aptitude.
 
Old 05-03-2007, 01:11 PM   #32
BadTim
LQ Newbie
 
Registered: May 2007
Location: Alberta, Canada
Distribution: Ubuntu v7.04 Desktop
Posts: 14

Rep: Reputation: 0
I executed aptitude from the command line by typing the following command:

Quote:
sudo aptitude install ubuntu-desktop
Confirmed it, and regretted it immediately: really wanted KDE instead of Gnome. Its downloading packages right now... I should have executed:

Quote:
sudo aptitude install kubuntu-desktop
Can I use aptitude to uninstall packages as well or would it be best to reinstall desktop edition from scratch?
 
Old 05-03-2007, 02:40 PM   #33
fragos
Senior Member
 
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466

Rep: Reputation: 51
Run "aptitude -h" and you'll see all the options, including remove and purge. "man aptitude" will display the manual page.
 
Old 05-07-2007, 02:33 AM   #34
shajithpt
LQ Newbie
 
Registered: May 2007
Posts: 1

Rep: Reputation: 0
Smile GUI for UBUNTU SERVER EDITION

Hi All,


Its very easy to add GUI for Ubuntu server edition,

U have to follow the following steps for the same,
After installing the Ubuntu server Edition,Login as root by the following command u will get the root previlage,

sudo passwd root

It will ask u the existing password and followed by twice the nex Unix password for the confirmation,

then you have to logout using the command

logout

now u will get the root previlage with
#
prompt,

from there u have to type,

vi /etc/apt/source.list

then uncomment all the lines which ends with "universe",

write it and quit the file

the you have to type the following command,

apt-get install gnome

it will start install the gnome enviornment for you,

followed by

apt-get install ubuntu-desktop

apt-get install KDE

If u needed,

after finishing the download,it will start install the file,

once the same is finished u will get the prompt,

#

from there u type

startx

Now u can see the wonder,Its a GUI OS now,


Thanks,
Shajith...
 
Old 05-07-2007, 10:03 AM   #35
binary_y2k2
Member
 
Registered: Jul 2005
Location: England, UK
Distribution: Ubuntu 8.04 Server, Kubuntu 12.04
Posts: 698
Blog Entries: 1

Rep: Reputation: 31
I don't get why you need to enable root to do that, sudo -i gets you a root console. And lets not even start the vi conversation :P

All you need to do you don't need to uncomment the universe lines to install a GUI (tho you can if you want), just install the *ubuntu-desktop packages. If you don't want a display manager (login screen) to load at boot you can just do
Code:
sudo update-rc.d -f gdm remove
(replace gdm with the actual display manager ,eg: kdm, xdm or gdm)
then if you need a GUI you can just start the display manager with
Code:
sudo /etc/init.d/gdm start
(again replacing "gdm" with the display manager)

It's also not a great idea to have a root GUI session, opens security risks.
 
Old 05-16-2007, 06:58 AM   #36
fratiijderi
LQ Newbie
 
Registered: May 2007
Posts: 1

Rep: Reputation: 0
My opinion is that the differences between Ubuntu Desktop and Ubuntu Server are:

Ubuntu Desktop has GUI and dosen't have all the programs/services you need for a server.

Ubuntu Server dosen't have GUI but in the other hand he has already LAMP and other programs needed for a linux server; Program(s) already precompiled and stuff like that like Slackware


Anyway, i prefer to install Ubunu Server and then to install manually the GUI.
 
Old 07-20-2007, 03:40 AM   #37
daredevilcsl
LQ Newbie
 
Registered: Jul 2007
Posts: 7

Rep: Reputation: 0
hi all,
i'm a newbie in linux and encounter some problem during the GUI installation. when i try to install the GUI for ubuntu server it say that it can't find the package. So what should i do?
 
Old 07-20-2007, 08:02 PM   #38
fragos
Senior Member
 
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466

Rep: Reputation: 51
I recommend you install the Ubuntu desktop ISO. This installs Gnome by default. You can then use GUI tools like Synaptic to install the server applications you need. You didn't mention what server applications you wanted.
 
Old 07-22-2007, 07:08 PM   #39
daredevilcsl
LQ Newbie
 
Registered: Jul 2007
Posts: 7

Rep: Reputation: 0
Quote:
Originally Posted by fragos
I recommend you install the Ubuntu desktop ISO. This installs Gnome by default. You can then use GUI tools like Synaptic to install the server applications you need. You didn't mention what server applications you wanted.
can't coz my manager ask for the server edition. He don't want the desktop edition.
 
Old 07-22-2007, 07:33 PM   #40
daredevilcsl
LQ Newbie
 
Registered: Jul 2007
Posts: 7

Rep: Reputation: 0
when i install the ubuntu LAMP server, it prompt me to setup a partition for swap space. can i know what is that swap space for? is it a must to create a swap space?
 
Old 07-22-2007, 10:12 PM   #41
fragos
Senior Member
 
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466

Rep: Reputation: 51
The purpose of swap space is to allow you to exceed physical memory gracefully. When swap space is used performance can be impacted but the system still runs. It's also used for hibernation which isn't likely on a running server. Swap space is normally at least equal to actual RAM size. Swap uses a separate partition. When you create a partition, you will select a partition format type. Ubuntu defaults to "ext3." The swap partition is of a special type "swap" which is a special disk format for that purpose.
 
Old 07-22-2007, 10:21 PM   #42
daredevilcsl
LQ Newbie
 
Registered: Jul 2007
Posts: 7

Rep: Reputation: 0
after i have install the GUI with the command (sudo aptitude install x-window-system-core gnome-core)when i start with the command (startx) there is only mouse cursor and nothing else...is there any step i miss it? i can't see any GUI at all...except the mouse cursor
 
Old 07-22-2007, 10:34 PM   #43
binary_y2k2
Member
 
Registered: Jul 2005
Location: England, UK
Distribution: Ubuntu 8.04 Server, Kubuntu 12.04
Posts: 698
Blog Entries: 1

Rep: Reputation: 31
Best way to get in to gnome is via GDM. If you don't want GDM then I'd recommend making a script like:
Code:
#!/bin/sh

# Start the X server
startx &
DISPLAY=:0
# Give X some time to start
sleep 2
# Launch Gnome
dbus-launch --exit-with-session gnome-session
Then saving that as /bin/start-gnome or something like that
 
Old 07-22-2007, 11:30 PM   #44
daredevilcsl
LQ Newbie
 
Registered: Jul 2007
Posts: 7

Rep: Reputation: 0
Quote:
Originally Posted by binary_y2k2
Best way to get in to gnome is via GDM. If you don't want GDM then I'd recommend making a script like:
Code:
#!/bin/sh

# Start the X server
startx &
DISPLAY=:0
# Give X some time to start
sleep 2
# Launch Gnome
dbus-launch --exit-with-session gnome-session
Then saving that as /bin/start-gnome or something like that
thanks will try to give it a try...
 
Old 08-14-2007, 06:40 AM   #45
smeggle
LQ Newbie
 
Registered: Aug 2007
Posts: 5

Rep: Reputation: 0
ok another newbie question..

So I installed LAMP from a ubuntu server download. making the transition I was looking to use a GUI and came across this thread via Google (just gotta love google sometimes ^_^) and anyway I followed some of the instruction listed in this thread here and I keep getting the message 'Couldn't find package etc' - no matter how I try.

I've tried all the commands listed above and nothing seems to work. I can't access across a network or via a work station as I only have my laptop and one spare computer. Laptop I use online and the other computer I was hoping to set up as just a local off line server for testing stuff on so am not really that bothered about security as it won't be online.

Still how do I get to a GUI as I'm not that well read on command line stuff?

Setup is a ubuntu server download (Last night) - install as a lamp server...

thanks
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu and Samba--Any GUI? errn12 Linux - Networking 1 04-02-2006 06:05 AM
instaling GUI in ubuntu 5.10 bcon Linux - Software 3 03-09-2006 07:48 AM
Ubuntu doesn't load GUI timclaason Ubuntu 7 02-19-2006 10:15 PM
Ubuntu GUI Tsukasa7 Linux - Newbie 5 09-01-2005 02:10 PM
[Ubuntu GUI] Changing GUI from Gnome to wmaker MangaManiac Linux - Laptop and Netbook 8 05-08-2005 03:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 05:52 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration