Daedalus broke Gnome :(

Whether you are using Linux on the desktop or as a server, it's still good that you're using Linux. Linux related questions go here.

Moderator: General Moderators

Post Reply
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Daedalus broke Gnome :(

Post by daedalus__ »

Daedalus broke Gnome by breaking X when he installed what he believes to be a bad video driver. He is using Lynx and Bash to type this message to you guys and could really use your help in figuring out how to roll-back his video driver.

Thanks. :/
Dae
User avatar
Kieran Huggins
DevNet Master
Posts: 3635
Joined: Wed Dec 06, 2006 4:14 pm
Location: Toronto, Canada
Contact:

Re: Daedalus broke Gnome :(

Post by Kieran Huggins »

Daedalus- wrote:He is using Lynx and Bash to type this message...
You are too nerdy for words - I salute you!

unfortunately, AFAIK, there is no roll-back in linux - what did you do to break X exactly?
User avatar
Jenk
DevNet Master
Posts: 3587
Joined: Mon Sep 19, 2005 6:24 am
Location: London

Post by Jenk »

Did you apt-get the drivers, or manual install?

Code: Select all

# apt-get remove <driver package name>
if you did it manually, then just remove the files for the drivers and (re)install the working version.
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

Well, I was trying to update my video driver because after spending four hours trying to make Steam and Counter-Strike work, I finally succeeded only to be stuck in Software mode. I went to Nvidia's website and downloaded their Linux driver which came as an 18mb script of some sort. I had to close X and sh the file at which point I thought everything was going fantastic. I remember the installer saying that it was going to back-up the files it was changing, which means the old driver is still here somewhere I simply have no idea where to look. I finished the install and restarted ubuntu, when it tried to load X I got a very ugly screen saying that the driver version didn't match the kernel version or some such message.

So, I know the files that were altered are still here but I don't know which files were altered. I would suppose there is a log somewhere I could check but I do not even know where to find the logs, yet!

Well, I'm still stuck using Lynx, trying to Google a solution. If anyone thinks I should simply reformat, then I suppose that I could.
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

Jenk wrote:Did you apt-get the drivers, or manual install?

Code: Select all

# apt-get remove <driver package name>
if you did it manually, then just remove the files for the drivers and (re)install the working version.
Manual install I suppose? I do not know where the drivers are kept and the ones I had before, I had gotten them through the Synaptic Package Manager. (im on ubuntu)
User avatar
Jenk
DevNet Master
Posts: 3587
Joined: Mon Sep 19, 2005 6:24 am
Location: London

Post by Jenk »

you can either read through the install script to see where it installs (cat install.sh | more), or search for them the 'long' way (which wouldn't take that long..

Code: Select all

# find / -name "nvidia"
However, check if there is an uninstall script that comes with.

Here is some info on nvidia drivers for ubuntu, there's probably an uninstall guide in there somewhere: http://www.ubuntuforums.org/showthread.php?t=139264
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

Code: Select all

# find / -name "nvidia"
So, I used that command and could not find anything that made any sense to me. My question is, if I delete everything that I found will X use a default driver when the one specified in the config can't be found?
User avatar
Jenk
DevNet Master
Posts: 3587
Joined: Mon Sep 19, 2005 6:24 am
Location: London

Post by Jenk »

Possibly, depending how it has been configured in your xconfig file.

I'd imagine there would be a "default" device configured. It won't do any harm to try it, the worst that can happen is X won't start (which is where you are already at.)
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

Actually, that isn't true. I broke it so bad that I can't get bash to load after X tells me that it biffed up.

I'm at the girlfriends getting a new ubuntu CD together, lol.
User avatar
Jenk
DevNet Master
Posts: 3587
Joined: Mon Sep 19, 2005 6:24 am
Location: London

Post by Jenk »

I'm not sure what you've done then, as bash (or other shell) is the first thing to load after the kernel and I/O :lol:
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

First thing I would try is as root:

Code: Select all

X -configure
X -config <new config file that was created by above command>
If you get a nice checkered grey screen with a X cursor on it hit CTRL+ALT+BKSP then:

Code: Select all

cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
cp <new config file> /etc/X11/xorg.conf
Now try starting Gnome. If it's still broken, configuring X can be a nightmare so I'd probably suggest not trying that right now... I've spent days before getting X up and running with a dual screen setup.

You could actually remove X and all of the configuration associated wih it but unfortunately that will remove everything that depends on it (a lot as you'll see)....

Code: Select all

root@pc-cac:~# apt-get -s remove libx11-6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
  openoffice.org-l10n-en-gb: Depends: openoffice.org-common (>= 2.0.4~rc3) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
                             Depends: openoffice.org-common (< 2.0.5) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
  openoffice.org-l10n-en-za: Depends: openoffice.org-common (>= 2.0.4~rc3) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
                             Depends: openoffice.org-common (< 2.0.5) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
E: Broken packages
root@pc-cac:~# apt-get -s remove openoffice.org-l10n-en-gb libx11-6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
  openoffice.org-l10n-en-za: Depends: openoffice.org-common (>= 2.0.4~rc3) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
                             Depends: openoffice.org-common (< 2.0.5) but it is not going to be installedor
                                      language-support-en but it is not going to be installed
E: Broken packages
root@pc-cac:~# apt-get -s remove openoffice.org-l10n-en-za openoffice.org-l10n-en-gb libx11-6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  xserver-xorg gnome-keyring f-spot libgnomecupsui1.0-1c2a libgtk2.0-common libopenexr2c2a mesa-utils xgamma xclipboard liblaunchpad-integration0 libcamel1.2-8 libgtkhtml3.8-15 libarts1c2a
  ttf-arphic-bkai00mp bluez-pcmcia-support tomboy xf86dga libxfixes3 evolution-webcal ekiga libglew1 kdelibs4c2a xlsfonts openoffice.org-gnome gimp-print python-gst0.10 libmagick6 libmagick9
  notification-daemon libgnomevfs2-0 gcalctool xfontsel pnm2ppa gthumb eclipse-source emacs oclock viewres gstreamer0.10-x libgail18 openoffice.org-core update-manager openoffice.org-writer gs-esp
  eclipse-jdt python-gnome2 gnome-nettool emacs21-common gnome-media openoffice.org-style-default metacity nautilus libgnome2-0 libgksu1.2-1 libgail-gnome-module openoffice.org-impress
  libglade2.0-cil xsane gtk2-engines-redmond95 amule tangerine-icon-theme xwininfo foomatic-db-gutenprint libxvidcore4 openoffice.org-draw eclipse-pde xprop ttf-thai-tlwg libgtk1.2 xcalc
  python-gnome2-extras ijsgutenprint xcursorgen gstreamer0.8-misc gucharmap brltty-x11 python-gnomecanvas zenity libgksuui1.0-1 avahi-daemon gnome-games libgail-common libgnome-keyring0
  hwdb-client-gnome xscreensaver-gl eclipse-rcp gdebi mplayer-skins xbiff evolution-exchange openoffice.org-java-common python2.4-gd mysql-query-browser-common evolution gstreamer0.8-gnomevfs
  xbase-clients libwxgtk2.6-0 openoffice.org-gtk mysql-query-browser gtk2-engines-mist sun-java5-jdk gnome-power-manager libexchange-storage1.2-0 libexchange-storage1.2-2 xlsclients xdpyinfo xchat
  gtk2-engines-clearlooks gnome-screensaver gnome-mag libgtksourceview1.0-0 rhythmbox libxxf86vm1 libglut3 xterm libegroupwise1.2-8 alacarte kdelibs-data gedit gnome-menus gtk2-engines-pixbuf
  bluez-cups dbus-1-utils libmp4v2-0 hpijs libglu1-mesa brltty python-pymad mplayer ubuntu-artwork openoffice.org-style-industrial gnome-control-center xscreensaver xutils libbonoboui2-0 xauth
  gnome-themes ubuntu-desktop xrandr libgnome2-perl liblualib50 libchm1 gnome-pilot-conduits thunderbird-locale-en-gb libnotify1 libcairo2 scim-modules-socket libswt3.2-gtk-java gnome-pilot
  libedata-cal1.2-6 gnopernicus beforelight scim update-notifier xtrap xstdcmap appres libgpod0 libxmuu1 libpango1.0-common libgnome-menu2 libscim8c2a xsetpointer gstreamer0.10-plugins-good php5-gd
  gnome-terminal libglide2 xsetmode language-support-en python-gst cupsys-driver-gimpprint ttf-arphic-gkai00mp libxosd2 libxxf86misc1 libpanel-applet2-0 xdriinfo tango-icon-theme-common
  libpoppler1-glib libgnome2.0-cil python-gtkhtml2 foomatic-db-hpijs x11perf libwnck18 scim-gtk2-immodule libsexy2 gnome-utils libcairomm-1.0-1 libgutenprintui2-1 xvidtune libdmx1 python-gd libxres1
  xserver-xorg-driver-glide human-theme gnome-btdownload emacsen-common dbus bluez-utils libatspi1.0-0 libxevie1 libglibmm-2.4-1c2a python-osd firefox mysql-navigator blt emacs21-bin-common xclock
  xvncviewer python-tk gnome-about libstartup-notification0 hwdb-client-common gnome-volume-manager nautilus-cd-burner libxxf86dga1 openoffice.org-evolution libxaw7 fstobdf gtk2-engines libpango1.0-0
  xserver-xorg-input-all openoffice.org-math gs-common mysql-admin libswt3.1-gtk-jni listres eog gdm screensaver-default-images libggi2 gtk2-engines-smooth hal libgnome2-vfs-perl libavahi-qt3-1
  libgnomecanvas2-0 libmikmod2 openoffice.org-common python-glade2 python-uno ico gtk2-engines-ubuntulooks gok libgii1 xeyes libgtk2.0-bin libxft2 xmessage gnome-spell bug-buddy libwxbase2.6-0
  libgtk2.0-cil libbrlapi1 python-vte ttf-arphic-bsmi00lp language-selector libvte9 libgnomeui-0 openoffice.org libgle3 libgtk2-perl libecal1.2-7 at-spi libaa1 tsclient rdesktop xconsole gaim vino
  gnome-keyring-manager gnome-system-monitor cupsys-driver-gutenprint mysql-admin-common xpmutils libgtkmm-2.4-1c2a firefox-gnome-support libglade2-0 evince ttf-arphic-uming mozilla-thunderbird
  ttf-arphic-gbsn00lp libxmu6 xchm libxtrap6 powermanagement-interface xhost python-pysqlite2 gnome-app-install eclipse libxpm4 libgii1-target-x libxrender1 xinit smproxy libgtkhtml2-0 libebook1.2-9
  evolution-plugins openoffice.org-thesaurus-en-us gtk2-engines-thinice gtkhtml3.8 libedataserverui1.2-8 totem-gstreamer contact-lookup-applet libgnome-window-settings1 libmetacity0
  python-launchpad-integration libedata-book1.2-2 sun-java5-demo evolution-data-server libgnomevfs2-bin libxss1 libgd2-xpm libgnomevfs2-extra acpi-support libcrypto++5.2c2a human-gtk-theme
  gtk2-engines-crux gimp xsetroot liblpint-bonobo0 libedataserver1.2-4 ttf-arphic-ukai xmodmap xfd libgtk1.2-common xgc xkill libgimp2.0 xev yelp gtk2-engines-industrial python-unit xmag xman
  synaptic gksu gnome-icon-theme libxtst6 libxvmc1 libeel2-2 xsm libgl1-mesa-dri gstreamer0.8-x xwd gnome-netstatus-applet xmms tk8.4 emacs21 librsvg2-2 libxklavier11 hal-device-manager
  libgl1-mesa-glx libgucharmap5 libgksu2-0 gnome-applets libmad0 libx11-6 xrdb xorg rss-glx openoffice.org-l10n-en-gb python-gmenu gtk2-engines-highcontrast xset ijsgimpprint xload gconf-editor
  libtotem-plparser0 xaw3dg libtotem-plparser1 gnome-system-tools amule-common libgnomebt0 eclipse-platform xlogo libgtkspell0 libqt3-mt libxdamage1 openoffice.org-base xlsatoms
  openoffice.org-l10n-en-us gnome-panel openoffice.org-l10n-en-za gstreamer0.8-vorbis libcairo-perl kate xtightvncviewer liblua50 listen mozilla-browser mozilla-firefox-locale-en-gb acroread
  libswt3.2-gtk-jni libxi6 gstreamer0.10-gnomevfs cupsys totem gnome-accessibility-themes openoffice.org-calc deskbar-applet libnautilus-burn4 python-gnome2-desktop libnautilus-extension1
  xserver-xorg-input-synaptics editres libxp6 libaudio2 libxcursor1 xwud openoffice.org-help-en-us libpoppler0c2-glib foomatic-db-gimp-print libgnomeprint2.2-0 libxt6 gstreamer0.10-plugins-base
  libxinerama1 libxv1 apport-gtk libxext6 gnome-session libgnome-desktop-2 bitmap xmore libmono-cairo1.0-cil liblame0 libxrandr2 xkbutils librsvg2-common python-gtk2 xscreensaver-data freeglut3
  x-ttcidfont-conf libgnomeprintui2.2-0 totem-mozilla python-cairo libgtk2.0-0 mozilla-firefox libgdl-1-0 bluez-pin libgcj7-awt libgnome2-canvas-perl xrefresh gimp-python xvinfo libxkbfile1
  file-roller serpentine nautilus-sendto gnome-cups-manager ssh-askpass-gnome sound-juicer libgdl-1-common libfaac0 gtk2-engines-lighthouseblue xditview libungif4g
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED
  acpi-support acroread alacarte amule apport-gtk appres at-spi avahi-daemon beforelight bitmap blt bluez-cups bluez-pcmcia-support bluez-pin bluez-utils brltty brltty-x11 bug-buddy
  contact-lookup-applet cupsys cupsys-driver-gimpprint cupsys-driver-gutenprint dbus dbus-1-utils deskbar-applet eclipse eclipse-jdt eclipse-pde eclipse-platform eclipse-rcp eclipse-source editres
  ekiga emacs emacs21 eog evince evolution evolution-data-server evolution-exchange evolution-plugins evolution-webcal f-spot file-roller firefox firefox-gnome-support foomatic-db-gimp-print
  foomatic-db-gutenprint foomatic-db-hpijs freeglut3 fstobdf gaim gcalctool gconf-editor gdebi gdm gedit gimp gimp-print gimp-python gksu gnome-about gnome-accessibility-themes gnome-app-install
  gnome-applets gnome-btdownload gnome-control-center gnome-cups-manager gnome-games gnome-icon-theme gnome-keyring gnome-keyring-manager gnome-mag gnome-media gnome-menus gnome-netstatus-applet
  gnome-nettool gnome-panel gnome-pilot gnome-pilot-conduits gnome-power-manager gnome-screensaver gnome-session gnome-spell gnome-system-monitor gnome-system-tools gnome-terminal gnome-themes
  gnome-utils gnome-volume-manager gnopernicus gok gs-common gs-esp gstreamer0.10-gnomevfs gstreamer0.10-plugins-base gstreamer0.10-plugins-good gstreamer0.10-x gstreamer0.8-gnomevfs
  gstreamer0.8-misc gstreamer0.8-vorbis gstreamer0.8-x gthumb gtk2-engines gtk2-engines-clearlooks gtk2-engines-crux gtk2-engines-highcontrast gtk2-engines-industrial gtk2-engines-lighthouseblue
  gtk2-engines-mist gtk2-engines-pixbuf gtk2-engines-redmond95 gtk2-engines-smooth gtk2-engines-thinice gtk2-engines-ubuntulooks gtkhtml3.8 gucharmap hal hal-device-manager hpijs human-gtk-theme
  human-theme hwdb-client-common hwdb-client-gnome ico ijsgimpprint ijsgutenprint kate kdelibs4c2a language-selector language-support-en libaa1 libarts1c2a libatspi1.0-0 libaudio2 libavahi-qt3-1
  libbonoboui2-0 libbrlapi1 libcairo-perl libcairo2 libcairomm-1.0-1 libcamel1.2-8 libdmx1 libebook1.2-9 libecal1.2-7 libedata-book1.2-2 libedata-cal1.2-6 libedataserver1.2-4 libedataserverui1.2-8
  libeel2-2 libegroupwise1.2-8 libexchange-storage1.2-0 libexchange-storage1.2-2 libgail-common libgail-gnome-module libgail18 libgcj7-awt libgd2-xpm libgdl-1-0 libgdl-1-common libggi2 libgii1
  libgimp2.0 libgksu1.2-1 libgksu2-0 libgksuui1.0-1 libgl1-mesa-dri libgl1-mesa-glx libglade2-0 libglade2.0-cil libgle3 libglew1 libglide2 libglu1-mesa libglut3 libgnome-desktop-2 libgnome-keyring0
  libgnome-menu2 libgnome-window-settings1 libgnome2-0 libgnome2-canvas-perl libgnome2-perl libgnome2-vfs-perl libgnome2.0-cil libgnomebt0 libgnomecanvas2-0 libgnomecupsui1.0-1c2a libgnomeprint2.2-0
  libgnomeprintui2.2-0 libgnomeui-0 libgnomevfs2-0 libgnomevfs2-bin libgnomevfs2-extra libgpod0 libgtk1.2 libgtk2-perl libgtk2.0-0 libgtk2.0-bin libgtk2.0-cil libgtk2.0-common libgtkhtml2-0
  libgtkhtml3.8-15 libgtkmm-2.4-1c2a libgtksourceview1.0-0 libgtkspell0 libgucharmap5 libgutenprintui2-1 liblaunchpad-integration0 liblpint-bonobo0 libmagick6 libmagick9 libmetacity0
  libmono-cairo1.0-cil libnautilus-burn4 libnautilus-extension1 libnotify1 libpanel-applet2-0 libpango1.0-0 libpango1.0-common libpoppler0c2-glib libpoppler1-glib libqt3-mt librsvg2-2 librsvg2-common
  libscim8c2a libsexy2 libstartup-notification0 libswt3.1-gtk-jni libswt3.2-gtk-java libswt3.2-gtk-jni libtotem-plparser0 libtotem-plparser1 libvte9 libwnck18 libwxgtk2.6-0 libx11-6 libxaw7
  libxcursor1 libxdamage1 libxevie1 libxext6 libxfixes3 libxft2 libxi6 libxinerama1 libxkbfile1 libxklavier11 libxmu6 libxmuu1 libxosd2 libxp6 libxpm4 libxrandr2 libxrender1 libxres1 libxss1 libxt6
  libxtrap6 libxtst6 libxv1 libxvmc1 libxxf86dga1 libxxf86misc1 libxxf86vm1 listen listres mesa-utils metacity mozilla-browser mozilla-firefox mozilla-firefox-locale-en-gb mozilla-thunderbird mplayer
  mysql-admin mysql-navigator mysql-query-browser nautilus nautilus-cd-burner nautilus-sendto notification-daemon oclock openoffice.org openoffice.org-base openoffice.org-calc openoffice.org-common
  openoffice.org-core openoffice.org-draw openoffice.org-evolution openoffice.org-gnome openoffice.org-gtk openoffice.org-help-en-us openoffice.org-impress openoffice.org-java-common
  openoffice.org-l10n-en-gb openoffice.org-l10n-en-us openoffice.org-l10n-en-za openoffice.org-math openoffice.org-style-default openoffice.org-style-industrial openoffice.org-thesaurus-en-us
  openoffice.org-writer php5-gd pnm2ppa powermanagement-interface python-cairo python-gd python-glade2 python-gmenu python-gnome2 python-gnome2-desktop python-gnome2-extras python-gnomecanvas
  python-gst python-gst0.10 python-gtk2 python-gtkhtml2 python-launchpad-integration python-osd python-tk python-unit python-uno python-vte python2.4-gd rdesktop rhythmbox rss-glx scim
  scim-gtk2-immodule scim-modules-socket screensaver-default-images serpentine smproxy sound-juicer ssh-askpass-gnome sun-java5-demo sun-java5-jdk synaptic tangerine-icon-theme
  tango-icon-theme-common thunderbird-locale-en-gb tk8.4 tomboy totem totem-gstreamer totem-mozilla tsclient ttf-arphic-bkai00mp ttf-arphic-bsmi00lp ttf-arphic-gbsn00lp ttf-arphic-gkai00mp
  ttf-arphic-ukai ttf-arphic-uming ttf-thai-tlwg ubuntu-artwork ubuntu-desktop update-manager update-notifier viewres vino x-ttcidfont-conf x11perf xauth xaw3dg xbase-clients xbiff xcalc xchat xchm
  xclipboard xclock xconsole xcursorgen xditview xdpyinfo xdriinfo xev xeyes xf86dga xfd xfontsel xgamma xgc xhost xinit xkbutils xkill xload xlogo xlsatoms xlsclients xlsfonts xmag xman xmessage
  xmms xmodmap xmore xorg xpmutils xprop xrandr xrdb xrefresh xsane xscreensaver xscreensaver-data xscreensaver-gl xserver-xorg xserver-xorg-driver-glide xserver-xorg-input-all
  xserver-xorg-input-synaptics xset xsetmode xsetpointer xsetroot xsm xstdcmap xterm xtightvncviewer xtrap xutils xvidtune xvinfo xvncviewer xwd xwininfo xwud yelp zenity
0 upgraded, 0 newly installed, 429 to remove and 7 not upgraded.
Remv ubuntu-desktop [1.30]
Remv gdm [2.16.1-0ubuntu4.1]
Remv gnome-session [2.16.1-0ubuntu1]
Remv gnome-power-manager [2.16.1-0ubuntu3]
Remv powermanagement-interface [0.3.11]
Remv acpi-support [0.90]
Remv acroread [7.0.9-0.0.ubuntu0.6.10]
Remv alacarte [0.10.1-0ubuntu1]
Remv amule [2.1.3-1]
Remv apport-gtk [0.28]
Remv xorg [1:7.1.1ubuntu6.2]
Remv xserver-xorg [1:7.1.1ubuntu6.2]
Remv nautilus-cd-burner [2.16.1-0ubuntu1]
Remv nautilus [2.16.1-0ubuntu3]
Remv gnome-terminal [2.16.1-0ubuntu1]
Remv gnome-applets [2.16.1-0ubuntu3]
Remv gnome-panel [2.16.1-0ubuntu3]
Remv gnome-control-center [1:2.16.1-0ubuntu4.2]
Remv libxklavier11 [3.0-0ubuntu1]
Remv listen [0.4.3-1]
Remv serpentine [0.6.91-0ubuntu4]
Remv deskbar-applet [2.16.0-0ubuntu4]
Remv python-gnome2-extras [2.14.2-0ubuntu6]
Remv gnome-volume-manager [2.15.0-0ubuntu7]
Remv libgksuui1.0-1 [1.0.7-1ubuntu2]
Remv update-notifier [0.43.2]
Remv gnome-app-install [0.2.21]
Remv update-manager [0.45]
Remv gnome-netstatus-applet [2.12.0-5ubuntu6]
Remv gdebi [0.1.6ubuntu1]
Remv gksu [1.9.3-1ubuntu2]
Remv libgksu2-0 [1.9.8-1ubuntu4]
Remv libgksu1.2-1 [1.3.8-1ubuntu1]
Remv kate [4:3.5.5-0ubuntu3.2]
Remv kdelibs4c2a [4:3.5.5-0ubuntu3]
Remv hal-device-manager [0.5.7.1-0ubuntu17]
Remv hwdb-client-gnome [0.6-0ubuntu16]
Remv xbase-clients [1:7.1.1ubuntu6.2]
Remv appres [1.0.0-0ubuntu1]
Remv openoffice.org-gnome [2.0.4-0ubuntu4]
Remv gok [1.2.0-0ubuntu1]
Remv gnopernicus [1.1.2-0ubuntu1]
Remv at-spi [1.7.12-0ubuntu1]
Remv avahi-daemon [0.6.13-2ubuntu2.4]
Remv beforelight [1.0.1-0ubuntu1]
Remv bitmap [1.0.2-0ubuntu1]
Remv python-unit [1.4.1-15]
Remv python-tk [2.4.3-4ubuntu1]
Remv blt [2.4z-4]
Remv bluez-cups [3.7-1ubuntu4]
Remv bluez-pcmcia-support [3.7-1ubuntu4]
Remv bluez-pin [0.30-2.1ubuntu2]
Remv bluez-utils [3.7-1ubuntu4]
Remv brltty-x11 [3.7.2-3.1ubuntu3]
Remv brltty [3.7.2-3.1ubuntu3]
Remv bug-buddy [2.16.0-0ubuntu2]
Remv contact-lookup-applet [0.14-0ubuntu2]
Remv cupsys-driver-gimpprint [5.0.0-2ubuntu2]
Remv cupsys-driver-gutenprint [5.0.0-2ubuntu2]
Remv cupsys [1.2.4-2ubuntu3]
Remv dbus-1-utils [0.93-0ubuntu3.1]
Remv totem-mozilla [2.16.2-0ubuntu3]
Remv gnome-system-tools [2.15.5-0ubuntu4]
Remv libedataserver1.2-4 [1.4.1-0ubuntu3]
Remv libegroupwise1.2-8 [1.4.1-0ubuntu3]
Remv libtotem-plparser0 [1.2.0-0ubuntu3]
Remv libexchange-storage1.2-0 [1.4.1-0ubuntu3]
Remv firefox-gnome-support [2.0.0.1+0dfsg-0ubuntu0.6.10]
Remv evince [0.6.1-0ubuntu1.2]
Remv totem [2.16.2-0ubuntu3]
Remv totem-gstreamer [2.16.2-0ubuntu3]
Remv rhythmbox [0.9.6-0ubuntu4]
Remv gedit [2.16.1-0ubuntu2]
Remv python-gnome2-desktop [2.16.0-0ubuntu2]
Remv libtotem-plparser1 [2.16.2-0ubuntu3]
Remv libgnomevfs2-extra [2.16.1-0ubuntu4]
Remv libgnomevfs2-bin [2.16.1-0ubuntu4]
Remv libgnome-window-settings1 [1:2.16.1-0ubuntu4.2]
Remv gnome-games [1:2.16.1-0ubuntu3]
Remv mysql-query-browser [1.1.18-5ubuntu1]
Remv gstreamer0.8-gnomevfs [0.8.12-4ubuntu1]
Remv ekiga [2.0.3-0ubuntu3]
Remv yelp [2.16.1-0ubuntu3]
Remv sound-juicer [2.16.1-0ubuntu1]
Remv gnome-btdownload [0.0.24-0ubuntu1]
Remv python-gnome2 [2.16.0-0ubuntu6]
Remv nautilus-sendto [0.7-2ubuntu6]
Remv tsclient [0.148-1ubuntu4]
Remv tomboy [0.4.1-0ubuntu3]
Remv f-spot [0.2.1-1ubuntu1]
Remv libgnome2.0-cil [2.16.0-0ubuntu2]
Remv libgail-gnome-module [1.1.3-2ubuntu2]
Remv gnome-utils [2.16.1-0ubuntu1]
Remv gnome-pilot-conduits [2.0.14-0ubuntu1]
Remv gnome-pilot [2.0.14-0ubuntu2]
Remv libpanel-applet2-0 [2.16.1-0ubuntu3]
Remv file-roller [2.16.1-0ubuntu1]
Remv libnautilus-extension1 [2.16.1-0ubuntu3]
Remv evolution-plugins [2.8.1-0ubuntu4]
Remv evolution-exchange [2.8.1-0ubuntu1]
Remv evolution [2.8.1-0ubuntu4]
Remv liblpint-bonobo0 [0.1.4.3]
Remv gucharmap [1:1.8.0-0ubuntu1]
Remv libgucharmap5 [1:1.8.0-0ubuntu1]
Remv gtkhtml3.8 [3.12.1-0ubuntu1]
Remv libgtkhtml3.8-15 [3.12.1-0ubuntu1]
Remv vino [2.16.0-0ubuntu2.4]
Remv gnome-cups-manager [0.31-1.1ubuntu14]
Remv libgnomecupsui1.0-1c2a [0.31-1.1ubuntu14]
Remv libgnomebt0 [0.8.0-0ubuntu1]
Remv libgnome2-perl [1.040-1]
Remv libeel2-2 [2.16.0-0ubuntu2]
Remv eog [2.16.1-0ubuntu1]
Remv libgnome-desktop-2 [2.16.1-0ubuntu1]
Remv libgdl-1-0 [0.6.1-1] [libgdl-1-common ]
Remv libgdl-1-common [0.6.1-1]
Remv gthumb [3:2.7.9-0ubuntu1]
Remv gnome-system-monitor [2.16.1-0ubuntu1]
Remv gnome-spell [1.0.7-1ubuntu1]
Remv gnome-screensaver [2.16.1-0ubuntu1]
Remv gnome-media [2.16.1-0ubuntu2]
Remv gnome-keyring-manager [2.16.0-1ubuntu1]
Remv gnome-about [2.16.1-0ubuntu1]
Remv gconf-editor [2.16.0-0ubuntu2]
Remv gcalctool [5.8.24-0ubuntu2]
Remv evolution-webcal [2.8.0-0ubuntu1]
Remv libgnomeui-0 [2.16.1-0ubuntu2]
Remv libgnome2-vfs-perl [1.060-1]
Remv libexchange-storage1.2-2 [1.8.1-0ubuntu3]
Remv libedataserverui1.2-8 [1.8.1-0ubuntu3]
Remv evolution-data-server [1.8.1-0ubuntu3]
Remv libedata-cal1.2-6 [1.8.1-0ubuntu3]
Remv libedata-book1.2-2 [1.8.1-0ubuntu3]
Remv libecal1.2-7 [1.8.1-0ubuntu3]
Remv libebook1.2-9 [1.8.1-0ubuntu3]
Remv libbonoboui2-0 [2.16.0-0ubuntu1]
Remv libgnome2-0 [2.16.0-0ubuntu1]
Remv gnome-menus [2.16.1-0ubuntu1]
Remv python-gmenu [2.16.1-0ubuntu1]
Remv libgnome-menu2 [2.16.1-0ubuntu1]
Remv libcamel1.2-8 [1.8.1-0ubuntu3]
Remv gstreamer0.10-gnomevfs [0.10.10-1ubuntu1]
Remv libgnomevfs2-0 [2.16.1-0ubuntu4]
Remv hwdb-client-common [0.6-0ubuntu16]
Remv hal [0.5.7.1-0ubuntu17]
Remv dbus [0.93-0ubuntu3.1]
Remv eclipse [3.2.1-0ubuntu1]
Remv eclipse-pde [3.2.1-0ubuntu1]
Remv eclipse-jdt [3.2.1-0ubuntu1]
Remv eclipse-source [3.2.1-0ubuntu1]
Remv eclipse-platform [3.2.1-0ubuntu1]
Remv eclipse-rcp [3.2.1-0ubuntu1]
Remv editres [1.0.1-0ubuntu1]
Remv emacs [21-0ubuntu2]
Remv emacs21 [21.4a-6ubuntu2]
Remv mozilla-firefox [2.0.0.1+0dfsg-0ubuntu0.6.10]
Remv openoffice.org-l10n-en-us [2.0.4-0ubuntu4]
Remv openoffice.org-thesaurus-en-us [1:2.0.3-2ubuntu1] [language-support-en ]
Remv openoffice.org-l10n-en-za [2.0.4-0ubuntu1] [language-support-en ]
Remv openoffice.org-l10n-en-gb [2.0.4-0ubuntu1] [language-support-en ]
Remv openoffice.org-help-en-us [2.0.4-0ubuntu1] [language-support-en ]
Remv mozilla-firefox-locale-en-gb [2.0~rc3ubuntu1-1] [language-support-en ]
Remv language-support-en [1:6.06+20060529]
Remv thunderbird-locale-en-gb [1:1.5.0.2ubuntu1-3]
Remv firefox [2.0.0.1+0dfsg-0ubuntu0.6.10]
Remv foomatic-db-gimp-print [5.0.0-2ubuntu2]
Remv foomatic-db-gutenprint [5.0.0-2ubuntu2]
Remv foomatic-db-hpijs [20060925-0ubuntu1]
Remv mesa-utils [6.3.2-1ubuntu1]
Remv libglut3 [3.7-25]
Remv freeglut3 [2.4.0-5]
Remv fstobdf [1.0.2-0ubuntu1]
Remv gaim [1:2.0.0+beta3.1-1ubuntu9]
Remv gimp-print [5.0.0-2ubuntu2]
Remv gimp [2.2.13-1ubuntu3]
Remv gimp-python [2.2.13-1ubuntu3]
Remv gnome-accessibility-themes [2.16.1.1-0ubuntu1]
Remv gnome-icon-theme [2.16.0.1-0ubuntu2]
Remv libgnome-keyring0 [0.6.0-0ubuntu2]
Remv gnome-keyring [0.6.0-0ubuntu2]
Remv gnome-mag [1:0.13.1-0ubuntu3]
Remv gnome-nettool [2.16.0-0ubuntu1]
Remv gnome-themes [2.16.1.1-0ubuntu1]
Remv ijsgimpprint [5.0.0-2ubuntu2]
Remv ijsgutenprint [5.0.0-2ubuntu2]
Remv hpijs [2.6.9+1.6.9-0ubuntu2]
Remv pnm2ppa [1.12-14ubuntu1]
Remv gs-common [0.3.9ubuntu1] [gs-esp ]
Remv gs-esp [8.15.2.dfsg.0ubuntu1-0ubuntu4]
Remv gstreamer0.10-plugins-base [0.10.10-1ubuntu1]
Remv gstreamer0.10-plugins-good [0.10.4-0ubuntu3]
Remv gstreamer0.10-x [0.10.10-1ubuntu1]
Remv gstreamer0.8-vorbis [0.8.12-4ubuntu1]
Remv gstreamer0.8-misc [0.8.12-4ubuntu1]
Remv gstreamer0.8-x [0.8.12-4ubuntu1]
Remv gtk2-engines-thinice [1:2.8.1-0ubuntu1]
Remv gtk2-engines-smooth [1:2.8.1-0ubuntu1]
Remv gtk2-engines-redmond95 [1:2.8.1-0ubuntu1]
Remv gtk2-engines-mist [1:2.8.1-0ubuntu1]
Remv gtk2-engines-lighthouseblue [1:2.8.1-0ubuntu1]
Remv gtk2-engines-industrial [1:2.8.1-0ubuntu1]
Remv gtk2-engines-highcontrast [1:2.8.1-0ubuntu1]
Remv gtk2-engines-crux [1:2.8.1-0ubuntu1]
Remv gtk2-engines-clearlooks [1:2.8.1-0ubuntu1]
Remv gtk2-engines [1:2.8.1-0ubuntu1]
Remv gtk2-engines-pixbuf [2.10.6-0ubuntu1]
Remv ubuntu-artwork [31]
Remv human-theme [0.2-0ubuntu1]
Remv human-gtk-theme [0.2-0ubuntu1]
Remv gtk2-engines-ubuntulooks [0.9.12-2]
Remv ico [1:1.0.1-0ubuntu1]
Remv language-selector [0.1.30]
Remv mplayer [2:0.99+1.0pre8-0ubuntu8]
Remv libggi2 [1:2.2.1-4ubuntu1]
Remv libaa1 [1.4p5-30]
Remv libarts1c2a [1.5.4-0ubuntu1]
Remv libatspi1.0-0 [1.7.12-0ubuntu1]
Remv libavahi-qt3-1 [0.6.13-2ubuntu2.4]
Remv openoffice.org [2.0.4-0ubuntu4]
Remv openoffice.org-writer [2.0.4-0ubuntu4]
Remv python-uno [2.0.4-0ubuntu4]
Remv openoffice.org-math [2.0.4-0ubuntu4]
Remv openoffice.org-impress [2.0.4-0ubuntu4]
Remv openoffice.org-gtk [2.0.4-0ubuntu4]
Remv openoffice.org-evolution [2.0.4-0ubuntu4]
Remv openoffice.org-draw [2.0.4-0ubuntu4]
Remv openoffice.org-style-default [2.0.4-0ubuntu4]
Remv openoffice.org-base [2.0.4-0ubuntu4]
Remv openoffice.org-java-common [2.0.4-0ubuntu4]
Remv openoffice.org-calc [2.0.4-0ubuntu4]
Remv openoffice.org-core [2.0.4-0ubuntu4] [openoffice.org-common ]
Remv openoffice.org-common [2.0.4-0ubuntu4] [openoffice.org-style-industrial ]
Remv openoffice.org-style-industrial [2.0.4-0ubuntu4]
Remv mysql-navigator [1.4.2-7]
Remv libqt3-mt [3:3.3.6-3ubuntu3]
Remv libaudio2 [1.8-2]
Remv libbrlapi1 [3.7.2-3.1ubuntu3]
Remv libgnome2-canvas-perl [1.002-1ubuntu1]
Remv libgtk2-perl [1:1.121-1ubuntu1]
Remv libcairo-perl [0.03-1ubuntu1]
Remv libpoppler0c2-glib [0.4.2-0ubuntu6]
Remv mozilla-thunderbird [1.5.0.9-0ubuntu0.6.10]
Remv libpoppler1-glib [0.5.4-0ubuntu4.1]
Remv libglade2.0-cil [2.10.0-0ubuntu2]
Remv libgtk2.0-cil [2.10.0-0ubuntu2]
Remv libmono-cairo1.0-cil [1.1.17.1-1ubuntu7.1]
Remv librsvg2-common [2.16.0-0ubuntu2]
Remv tango-icon-theme-common [0.5-0ubuntu1]
Remv tangerine-icon-theme [0.14-0ubuntu1]
Remv scim [1.4.4-4ubuntu6] [scim-gtk2-immodule ]
Remv scim-gtk2-immodule [1.4.4-4ubuntu6]
Remv libgtk2.0-bin [2.10.6-0ubuntu3] [libgtk2.0-0 ]
Remv libgnomeprintui2.2-0 [2.12.1-4ubuntu2] [libgtk2.0-0 ]
Remv xsane [0.99+0.991-1ubuntu2] [libgtk2.0-0 ]
Remv libgimp2.0 [2.2.13-1ubuntu3] [libgtk2.0-0 ]
Remv xchat [2.6.6-0ubuntu3] [libgtk2.0-0 ]
Remv mysql-admin [1.1.10-1] [libgtk2.0-0 ]
Remv mozilla-browser [2:1.7.13-0.2ubuntu1] [libgtk2.0-0 ]
Remv xchm [2:1.9-3] [libgtk2.0-0 ]
Remv libwxgtk2.6-0 [2.6.3.2.1.5] [libgtk2.0-0 ]
Remv libswt3.2-gtk-java [3.2.1-0ubuntu1] [libgtk2.0-0 ]
Remv libswt3.2-gtk-jni [3.2.1-0ubuntu1] [libgtk2.0-0 ]
Remv libswt3.1-gtk-jni [3.1.2-3ubuntu1] [libgtk2.0-0 ]
Remv zenity [2.16.1-0ubuntu1] [libgtk2.0-0 ]
Remv xscreensaver-gl [4.24-4ubuntu2] [libgtk2.0-0 ]
Remv xscreensaver [4.24-4ubuntu2] [libgtk2.0-0 ]
Remv screensaver-default-images [0.2-1] [libgtk2.0-0 ]
Remv xscreensaver-data [4.24-4ubuntu2] [libgtk2.0-0 ]
Remv synaptic [0.57.11ubuntu12] [libgtk2.0-0 ]
Remv ssh-askpass-gnome [1:4.3p2-5ubuntu1] [libgtk2.0-0 ]
Remv python-vte [1:0.14.1-0ubuntu1] [libgtk2.0-0 ]
Remv python-gtkhtml2 [2.14.2-0ubuntu6] [libgtk2.0-0 ]
Remv python-gst [0.8.4-2] [libgtk2.0-0 ]
Remv python-gst0.10 [0.10.5-5ubuntu1] [libgtk2.0-0 ]
Remv python-glade2 [2.10.3-0ubuntu3] [libgtk2.0-0 ]
Remv python-gtk2 [2.10.3-0ubuntu3] [libgtk2.0-0 ]
Remv python-gnomecanvas [2.16.0-0ubuntu6] [libgtk2.0-0 ]
Remv notification-daemon [0.3.5-0ubuntu7] [libgtk2.0-0 ]
Remv metacity [1:2.16.3-0ubuntu2] [libgtk2.0-0 ]
Remv libwnck18 [2.16.1-0ubuntu1] [libgtk2.0-0 ]
Remv libvte9 [1:0.14.1-0ubuntu1] [libgtk2.0-0 ]
Remv libsexy2 [0.1.10-0ubuntu2] [libgtk2.0-0 ]
Remv librsvg2-2 [2.16.0-0ubuntu2] [libgtk2.0-0 ]
Remv libnotify1 [0.4.2-0ubuntu3] [libgtk2.0-0 ]
Remv libnautilus-burn4 [2.16.1-0ubuntu1] [libgtk2.0-0 ]
Remv libmetacity0 [1:2.16.3-0ubuntu2] [libgtk2.0-0 ]
Remv python-launchpad-integration [0.1.4.3] [libgtk2.0-0 ]
Remv liblaunchpad-integration0 [0.1.4.3] [libgtk2.0-0 ]
Remv libgutenprintui2-1 [5.0.0-2ubuntu2] [libgtk2.0-0 ]
Remv libgtkspell0 [2.0.10-3] [libgtk2.0-0 ]
Remv libgtksourceview1.0-0 [1.8.1-0ubuntu1] [libgtk2.0-0 ]
Remv libgtkmm-2.4-1c2a [1:2.10.2-0ubuntu1] [libgtk2.0-0 ]
Remv libgtkhtml2-0 [2.11.0-1build1] [libgtk2.0-0 ]
Remv libgpod0 [0.3.2-1.1ubuntu1] [libgtk2.0-0 ]
Remv libgail-common [1.9.3-0ubuntu1] [libgtk2.0-0 ]
Remv libgail18 [1.9.3-0ubuntu1] [libgtk2.0-0 ]
Remv libgnomecanvas2-0 [2.14.0-3ubuntu1] [libgtk2.0-0 ]
Remv libglade2-0 [1:2.6.0-1ubuntu2] [libgtk2.0-0 ]
Remv libgcj7-awt [4.1.1-14ubuntu7] [libgtk2.0-0 ]
Remv libgtk2.0-0 [2.10.6-0ubuntu3] [libgtk2.0-common ]
Remv libgtk2.0-common [2.10.6-0ubuntu3]
Remv python-cairo [1.2.0-1build1]
Remv libgnomeprint2.2-0 [2.12.1-5ubuntu1]
Remv libpango1.0-common [1.14.5-0ubuntu1] [libpango1.0-0 ]
Remv libpango1.0-0 [1.14.5-0ubuntu1]
Remv libcairomm-1.0-1 [1.2.0-0ubuntu1]
Remv libcairo2 [1.2.4-1ubuntu2]
Remv xdpyinfo [1:1.0.1-0ubuntu1]
Remv libdmx1 [1:1.0.2-1]
Remv php5-gd [5.1.6-1ubuntu2.1]
Remv python2.4-gd [0.52.0-0ubuntu2] [python-gd ]
Remv python-gd [0.52.0-0ubuntu2]
Remv libgd2-xpm [2.0.33-4ubuntu2]
Remv libgii1 [1:1.0.1-2]
Remv libgl1-mesa-dri [6.5.1~20060817-0ubuntu3]
Remv xmms [1.2.10+cvs20060429-1ubuntu2]
Remv xdriinfo [1:1.0.1-0ubuntu1]
Remv rss-glx [0.8.1-3ubuntu2]
Remv libglew1 [1.3.4-3ubuntu1]
Remv libgle3 [3.1.0-5.3ubuntu1]
Remv libglu1-mesa [6.5.1~20060817-0ubuntu3]
Remv libgl1-mesa-glx [6.5.1~20060817-0ubuntu3]
Remv xserver-xorg-driver-glide [6.8.2-77]
Remv libglide2 [2002.04.10-13]
Remv libgtk1.2 [1.2.10-18]
Remv libmagick6 [6:6.2.3.4-1ubuntu1]
Remv libmagick9 [7:6.2.4.5.dfsg1-0.10ubuntu0.1]
Remv scim-modules-socket [1.4.4-4ubuntu6]
Remv libscim8c2a [1.4.4-4ubuntu6]
Remv libstartup-notification0 [0.8-1ubuntu1]
Remv sun-java5-jdk [1.5.0-08-0ubuntu1] [sun-java5-demo ]
Remv sun-java5-demo [1.5.0-08-0ubuntu1]
Remv xtightvncviewer [1.2.9-19]
Remv python-osd [0.2.12-1.2build1]
Remv libxosd2 [2.2.14-1.3]
Remv xwud [1:1.0.1-0ubuntu1]
Remv xwininfo [1:1.0.1-0ubuntu1]
Remv xwd [1:1.0.1-0ubuntu1]
Remv xvncviewer [3.3.7-12ubuntu1]
Remv xvinfo [1:1.0.1-0ubuntu1]
Remv xvidtune [1:1.0.1-0ubuntu1]
Remv xtrap [1:1.0.2-0ubuntu1]
Remv xterm [216-0ubuntu1]
Remv xstdcmap [1:1.0.1-0ubuntu1]
Remv xsm [1:1.0.1-0ubuntu1]
Remv xsetroot [1:1.0.1-0ubuntu1]
Remv xsetpointer [1:1.0.0-0ubuntu1]
Remv xsetmode [1:1.0.0-0ubuntu1]
Remv xset [1:1.0.2-0ubuntu1]
Remv xserver-xorg-input-all [1:7.1.1ubuntu6.2]
Remv xserver-xorg-input-synaptics [0.14.6-0ubuntu3]
Remv xrefresh [1:1.0.2-0ubuntu1]
Remv xinit [1.0.2-0ubuntu3]
Remv xrdb [1:1.0.2-0ubuntu2]
Remv xrandr [1:1.0.2-0ubuntu1]
Remv xprop [1:1.0.2-0ubuntu1]
Remv xpmutils [1:3.5.5-1]
Remv xmore [1:1.0.1-0ubuntu1]
Remv xmodmap [1:1.0.1-0ubuntu1]
Remv xmessage [1:1.0.1-0ubuntu1]
Remv xman [1:1.0.1-0ubuntu2]
Remv xmag [1:1.0.1-0ubuntu1]
Remv xlsfonts [1:1.0.1-0ubuntu1]
Remv xlsclients [1:1.0.1-0ubuntu1]
Remv xlsatoms [1:1.0.1-0ubuntu1]
Remv xlogo [1:1.0.1-0ubuntu1]
Remv xload [1:1.0.1-0ubuntu1]
Remv xkill [1:1.0.1-0ubuntu1]
Remv xkbutils [1:1.0.2-0ubuntu1]
Remv xhost [1:1.0.1-0ubuntu1]
Remv xgc [1:1.0.1-0ubuntu1]
Remv xgamma [1:1.0.1-0ubuntu1]
Remv xfontsel [1:1.0.1-0ubuntu1]
Remv xfd [1:1.0.1-0ubuntu1]
Remv xf86dga [1:1.0.1-0ubuntu1]
Remv xeyes [1:1.0.1-0ubuntu1]
Remv xev [1:1.0.2-0ubuntu1]
Remv xditview [1:1.0.1-0ubuntu1]
Remv ttf-thai-tlwg [0.4.4-0ubuntu1]
Remv x-ttcidfont-conf [24ubuntu1]
Remv ttf-arphic-uming [0.1.20060513-1]
Remv ttf-arphic-ukai [0.1.20060513-1]
Remv ttf-arphic-gkai00mp [2.11-6.1]
Remv ttf-arphic-gbsn00lp [2.11-6.1]
Remv ttf-arphic-bsmi00lp [2.10-6.1]
Remv ttf-arphic-bkai00mp [2.10-6.1]
Remv xutils [1:7.1.1ubuntu6.2]
Remv xcursorgen [1:1.0.1-0ubuntu1]
Remv xconsole [1:1.0.1-0ubuntu1]
Remv xclock [1:1.0.1-0ubuntu1]
Remv xclipboard [1:1.0.1-0ubuntu1]
Remv xcalc [1:1.0.1-0ubuntu1]
Remv xbiff [1:1.0.1-0ubuntu1]
Remv xaw3dg [1.5+E-14ubuntu1]
Remv xauth [1:1.0.1-0ubuntu1]
Remv x11perf [1:1.4.1-0ubuntu1]
Remv viewres [1:1.0.1-0ubuntu1]
Remv tk8.4 [8.4.12-1]
Remv smproxy [1:1.0.1-0ubuntu1]
Remv rdesktop [1.4.1-1.1]
Remv oclock [1:1.0.1-0ubuntu1]
Remv listres [1:1.0.1-0ubuntu1]
Remv libxxf86vm1 [1:1.0.1-0ubuntu1]
Remv libxxf86misc1 [1:1.0.1-0ubuntu1]
Remv libxxf86dga1 [2:1.0.1-0ubuntu1]
Remv libxvmc1 [2:1.0.2-0ubuntu2]
Remv libxv1 [2:1.0.1-3ubuntu1]
Remv libxtst6 [2:1.0.1-3build1]
Remv libxtrap6 [2:1.0.0-3build1]
Remv libxaw7 [2:1.0.2-0ubuntu1]
Remv libxmu6 [2:1.0.2-1ubuntu1]
Remv libxt6 [1:1.0.2-1ubuntu1]
Remv libxss1 [1:1.0.1-4ubuntu1]
Remv libxres1 [2:1.0.1-0ubuntu1]
Remv libxrandr2 [2:1.1.1-0ubuntu1]
Remv libxft2 [2.1.10-1ubuntu1]
Remv libxcursor1 [1.1.7-0ubuntu1]
Remv libxrender1 [1:0.9.1-0ubuntu1]
Remv libxpm4 [1:3.5.5-1]
Remv libxp6 [1:1.0.0-1]
Remv libxmuu1 [2:1.0.2-1ubuntu1]
Remv libxkbfile1 [1:1.0.3-0ubuntu1]
Remv libxinerama1 [2:1.0.1-4build1]
Remv libxi6 [2:1.0.1-0ubuntu1]
Remv libxdamage1 [1:1.0.3-0ubuntu1]
Remv libxfixes3 [1:4.0.1-0ubuntu1]
Remv libxevie1 [1:1.0.1-0ubuntu1]
Remv libxext6 [2:1.0.1-1ubuntu1]
Remv libx11-6 [2:1.0.3-0ubuntu4]
root@pc-cac:~#
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

I found my Ubuntu disk and re-installed so I am back. I still have no idea why bash wasn't working though.

:)
Post Reply