components of /etc/apt/sources.list
Hello All, I am currently installing apt on my 9.1 box at my house. I would like this box to be as stable and secure as possible. I am having trouble discerning which components I would like to have in my /etc/apt/sources.list file. So far I have base update security usr-local-bin kde mozilla samba3 funktronics packman and wine. How can I tell what other components I might want to use? Thanks, d33p th1nk3r
On Sunday 26 September 2004 00:50, Deep Thinker wrote:
Hello All,
I am currently installing apt on my 9.1 box at my house. I would like this box to be as stable and secure as possible.
I am having trouble discerning which components I would like to have in my /etc/apt/sources.list file. So far I have
base update security usr-local-bin kde mozilla samba3 funktronics packman and wine.
How can I tell what other components I might want to use?
The packages I (you too?) benefit most from are: base update security kde rpmkeys If you need packages from other repositories, then you can enable those repositories, perhaps just temporary to allow installation of the packages you need. The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option. Cheers, Leen
On Sep 25, 2004, at 7:21 PM, Leendert Meyer wrote:
On Sunday 26 September 2004 00:50, Deep Thinker wrote:
Hello All,
I am currently installing apt on my 9.1 box at my house. I would like this box to be as stable and secure as possible.
I am having trouble discerning which components I would like to have in my /etc/apt/sources.list file. So far I have
base update security usr-local-bin kde mozilla samba3 funktronics packman and wine.
How can I tell what other components I might want to use?
The packages I (you too?) benefit most from are:
base update security kde rpmkeys
If you need packages from other repositories, then you can enable those repositories, perhaps just temporary to allow installation of the packages you need.
The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option.
I suppose that explains the error message I just received. I do not have rpmkeys in my sources.list and when I just did 'apt-get update' and then 'apt-get upgrade' I received the following message. E: Error(s) while checking package signatures: 27 unsigned package(s) 15 package(s) with illegal/corrupted signatures What is the best way to fix this error? If I add rpmkeys to my sources.list file, and then run 'apt-get update' and 'apt-get upgrade' again, will this problem be resolved, or do I need to do more. Thanks, d33p th1nk3r
<SNIP>
I suppose that explains the error message I just received. I do not have rpmkeys in my sources.list and when I just did 'apt-get update' and then 'apt-get upgrade' I received the following message.
E: Error(s) while checking package signatures: 27 unsigned package(s) 15 package(s) with illegal/corrupted signatures
What is the best way to fix this error? If I add rpmkeys to my sources.list file, and then run 'apt-get update' and 'apt-get upgrade' again, will this problem be resolved, or do I need to do more.
Thanks,
d33p th1nk3r
Adding the rpmkeys should take care of many (if not all) of the errors. I believe you should also add suser-rbos to your sources list so you can get updates to APT. Brian Jonas
On Sep 25, 2004, at 9:53 PM, Brian Jonas wrote:
<SNIP>
I suppose that explains the error message I just received. I do not have rpmkeys in my sources.list and when I just did 'apt-get update' and then 'apt-get upgrade' I received the following message.
E: Error(s) while checking package signatures: 27 unsigned package(s) 15 package(s) with illegal/corrupted signatures
What is the best way to fix this error? If I add rpmkeys to my sources.list file, and then run 'apt-get update' and 'apt-get upgrade' again, will this problem be resolved, or do I need to do more.
Thanks,
d33p th1nk3r
Adding the rpmkeys should take care of many (if not all) of the errors. I believe you should also add suser-rbos to your sources list so you can get updates to APT. Brian Jonas
I am still getting the same error as above. 1. I added 'rpmkeys' and suser-rbos to my sources.list 2. I typed apt-get update' 3. I typed 'apt-get upgrade' Is there something I am missing? A step that I haven't taken? d33p th1nk3r
* Deep Thinker <d33pth1nk3r@thoughtprogress.com> [09-25-04 21:21]:
I am still getting the same error as above.
1. I added 'rpmkeys' and suser-rbos to my sources.list 2. I typed apt-get update' 3. I typed 'apt-get upgrade'
Is there something I am missing? A step that I haven't taken?
You probably have one or two *unsigned* rpm files. Not all of the files are signed. In those cases '--no-che' is necessary, if you want to install the file. -- Patrick Shanahan Registered Linux User #207535 http://wahoo.no-ip.org @ http://counter.li.org HOG # US1244711 Photo Album: http://wahoo.no-ip.org/photos
On Sunday 26 September 2004 04:21, Deep Thinker wrote:
On Sep 25, 2004, at 9:53 PM, Brian Jonas wrote:
<SNIP>
I suppose that explains the error message I just received. I do not have rpmkeys in my sources.list and when I just did 'apt-get update' and then 'apt-get upgrade' I received the following message.
E: Error(s) while checking package signatures: 27 unsigned package(s) 15 package(s) with illegal/corrupted signatures
What is the best way to fix this error? If I add rpmkeys to my sources.list file, and then run 'apt-get update' and 'apt-get upgrade' again, will this problem be resolved, or do I need to do more.
Thanks,
d33p th1nk3r
Adding the rpmkeys should take care of many (if not all) of the errors.
Sorry Brian, but you're wrong. Only adding rpmkeys to sources.list is not enough. One has to *install* the missing rpmkey too, *manually*, and possibly with the --no-checksig switch. So take a look at http://ftp.gwdg.de/pub/linux/suse/apt/SuSE/9.1-i386/RPMS.rpmkeys/, and see what rpmkey you need. For example, if you need the rpmkey of the suser-rbos repository, install it with: apt --no-checksig install rpmkey-suser-rbos
I believe you should also add suser-rbos to your sources list so you can get updates to APT.
Yes, good point. :)
I am still getting the same error as above.
1. I added 'rpmkeys' and suser-rbos to my sources.list 2. I typed apt-get update' 3. I typed 'apt-get upgrade'
Is there something I am missing? A step that I haven't taken?
Indeed, see above. For each repository you add to sources.list, add the corresponding rpmkey if it exists. If you do not or cannot install a missing rpmkey, install packages from such a repository with: apt --no-checksig <rest of apt arguments> Cheers, Leen
<SNIP>
Sorry Brian, but you're wrong. Only adding rpmkeys to sources.list is not enough. One has to *install* the missing rpmkey too, *manually*, and possibly with the --no-checksig switch. <SNIP> Leen
Leen: Thanks for correcting me -- I totally forgot about having to install the rpmkeys. Deep Thinker: In addition to the Apt For SuSE site, http://linux01.gwdg.de/apt4rpm/, you may find R. Scott Granneman's article "A Very Apropos apt" informative if you're new to Apt. It's at: http://www.linux-mag.com/2003-10/apt_01.html. Brian
On Sunday 26 September 2004 23:23, Brian Jonas wrote:
<SNIP>
Sorry Brian, but you're wrong. Only adding rpmkeys to sources.list is not enough. One has to *install* the missing rpmkey too, *manually*, and possibly with the --no-checksig switch.
<SNIP>
Leen
Leen: Thanks for correcting me -- I totally forgot about having to install the rpmkeys.
;)
Deep Thinker: In addition to the Apt For SuSE site, http://linux01.gwdg.de/apt4rpm/, you may find R. Scott Granneman's article "A Very Apropos apt" informative if you're new to Apt. It's at: http://www.linux-mag.com/2003-10/apt_01.html.
Good pointer. Hope Richard know about this one too... Cheers, Leen
Op zondag 26 september 2004 23:38, schreef Leendert Meyer:
Deep Thinker: In addition to the Apt For SuSE site, http://linux01.gwdg.de/apt4rpm/, you may find R. Scott Granneman's article "A Very Apropos apt" informative if you're new to Apt. It's at: http://www.linux-mag.com/2003-10/apt_01.html.
Good pointer. Hope Richard know about this one too...
Indeed, it has been added to http://apt4rpm.sourceforge.net/ref.html Section: Apt documentation/guides -- Richard Bos Without a home the journey is endless
Op zondag 26 september 2004 01:21, schreef Leendert Meyer:
How can I tell what other components I might want to use? http://linux01.gwdg.de/apt4rpm/home.html#hints (1st bullit)?
The packages I (you too?) benefit most from are:
base update security kde rpmkeys
If you need packages from other repositories, then you can enable those repositories, perhaps just temporary to allow installation of the packages you need.
The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option.
I would add the --no-post argument too: http://linux01.gwdg.de/apt4rpm/home.html#signatures -- Richard Bos Without a home the journey is endless
On Sep 26, 2004, at 3:50 AM, Richard Bos wrote:
Op zondag 26 september 2004 01:21, schreef Leendert Meyer:
How can I tell what other components I might want to use? http://linux01.gwdg.de/apt4rpm/home.html#hints (1st bullit)?
The packages I (you too?) benefit most from are:
base update security kde rpmkeys
If you need packages from other repositories, then you can enable those repositories, perhaps just temporary to allow installation of the packages you need.
The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option.
I would add the --no-post argument too: http://linux01.gwdg.de/apt4rpm/home.html#signatures
OK.. here is what I have done. 1. Made my sources.list file look like this rpm ftp://ftp.gwdg.de/pub/linux/suse/apt SuSE/9.1-i386 base update security usr-local-bin kde mozilla samba3 funktronics packman wine rpmkeys suser-rbos 2. ran 'apt-get update' 3. ran 'apt --nochecksig install rpmkey-suser-rbos' (this seemed to work fine. SuSEconfig executed after this install). 4. ran 'apt --nochecksig install rpmkey-funktronics' (this seemed to work fine. SuSEconfig executed after this install). 5. ran 'apt --nochecksig install rpmkey-packman' (this seemed to work fine. SuSEconfig executed after this install). 6. Even though I did not see it in the rpmkeys repository, I ran 'apt --nochecksig install rpmkey-usr-local-bin'. I got an error, so I stopped trying to install rpmkeys. 7. I then ran 'apt-get update' again. Everything looked fine. 8. I then ran 'apt-get upgrade'. Again, I get the error E: Error(s) while checking package signatures: 27 unsigned package(s) 4 package(s) with unknown signatures 0 package(s) with illegal/corrupted signatures 9. I then ran 'apt --no-checksig upgrade'. I received this error. E: Error while running transaction. 10. I then tried 'apt-get upgrade' again. and received the same error as before (27 unsigned, 4 with unknown signatures, 0 illegal/corrupted). What should I do at this point? I fear that I am making my system unstable by doing all of this. d33p th1nk3r
On Sunday 26 September 2004 17:04, Deep Thinker wrote:
On Sep 26, 2004, at 3:50 AM, Richard Bos wrote:
Op zondag 26 september 2004 01:21, schreef Leendert Meyer:
The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option.
I would add the --no-post argument too: http://linux01.gwdg.de/apt4rpm/home.html#signatures
OK.. here is what I have done.
1. Made my sources.list file look like this
rpm ftp://ftp.gwdg.de/pub/linux/suse/apt SuSE/9.1-i386 base update security usr-local-bin kde mozilla samba3 funktronics packman wine rpmkeys suser-rbos
2. ran 'apt-get update'
3. ran 'apt --nochecksig install rpmkey-suser-rbos' (this seemed to
Should be --no-checksig, but as you did not get an error, it seems you musthave entered the right command. ;) ... IIRC, the packages which had not a valid signature were mentioned **right** **before** the next error message:
E: Error(s) while checking package signatures: 27 unsigned package(s) 4 package(s) with unknown signatures 0 package(s) with illegal/corrupted signatures ... What should I do at this point? I fear that I am making my system unstable by doing all of this.
Install the correct rpmkeys. Run 'apt upgrade' again, and post the *complete* output, so you don't leave something important out by mistake. ;) And to see what rpmkeys are installed , please post the output of rpm -qa | grep '^rpmkey-' too. From both outputs we can tell what rpmkeys you need to install. BTW, this morning I installed k3b from the packman repository, and that failed because of a wrong signature. And I did have the packman rpmkey installed... Cheers, Leen
Op zondag 26 september 2004 19:38, schreef Leendert Meyer:
BTW, this morning I installed k3b from the packman repository, and that failed because of a wrong signature. And I did have the packman rpmkey installed...
FYI: the packman's rpmkey rpm has been updated recently. Further more packman rpmkey rpm is provides many public gpg keys (about 10 I think) for they different people, that make up packman... Check with: rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE} %{SUMMARY}\n" "gpg-pubkey-*" which public gpg keys have been imported.. -- Richard Bos Without a home the journey is endless
On Sunday 26 September 2004 21:07, Richard Bos wrote:
Op zondag 26 september 2004 19:38, schreef Leendert Meyer:
BTW, this morning I installed k3b from the packman repository, and that failed because of a wrong signature. And I did have the packman rpmkey installed...
FYI: the packman's rpmkey rpm has been updated recently.
Hmm, shouldn't that trigger an automatic upgrade of the packman rpmkey if the rpmkeys repository is enabled, like I have??? I think it should. Cheers, Leen
Op zondag 26 september 2004 21:48, schreef Leendert Meyer:
FYI: the packman's rpmkey rpm has been updated recently.
Hmm, shouldn't that trigger an automatic upgrade of the packman rpmkey if the rpmkeys repository is enabled, like I have??? I think it should.
That is the intention, definately! :~/cvs> apt showpkg rpmkey-packman Package: rpmkey-packman Versions: 0.2.1-0.pm.0(/var/state/apt/lists/ftp.gwdg.de_pub_linux_suse_apt_SuSE_9.0-i386_base_pkglist.rpmkeys) 0.2-0.pm.0(/var/state/apt/lists/ftp.gwdg.de_pub_linux_suse_apt_SuSE_9.0-i386_base_pkglist.rpmkeys)(/var/lib/rpm/Packages) :~ # apt install rpmkey-packman Reading Package Lists... Done Building Dependency Tree... Done The following packages will be upgraded rpmkey-packman 1 upgraded, 0 newly installed, 0 removed and 254 not upgraded. Need to get 24.3kB of archives. After unpacking 1752B of additional disk space will be used. Get:1 ftp://ftp.gwdg.de SuSE/9.0-i386/rpmkeys rpmkey-packman 0.2.1-0.pm.0 [24.3kB] Fetched 24.3kB in 0s (26.0kB/s) Checking GPG signatures... Committing changes... Preparing... ########################################### [100%] 1:rpmkey-packman ########################################### [100%] Done. You don't seem to have one or more of the needed GPG keys in your RPM database. Importing them now... GPG key succesfully imported
rpm -qa --last gpg-pubkey* gpg-pubkey-27db6f5b-4140d446 Sun 26 Sep 2004 09:54:13 PM CEST
rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE} %{SUMMARY}\n" gpg-pubkey-27db6f5b-4140d446 gpg-pubkey-27db6f5b-4140d446 gpg(Quentin Denis (Brinkum2005)) Hmmm, but the k3b rpm is build by Rainer... -- Richard Bos Without a home the journey is endless
On Sunday 26 September 2004 21:59, Richard Bos wrote:
Op zondag 26 september 2004 21:48, schreef Leendert Meyer:
FYI: the packman's rpmkey rpm has been updated recently.
Hmm, shouldn't that trigger an automatic upgrade of the packman rpmkey if the rpmkeys repository is enabled, like I have??? I think it should.
That is the intention, definately!
:~/cvs> apt showpkg rpmkey-packman
Package: rpmkey-packman Versions: 0.2.1-0.pm.0(/var/state/apt/lists/ftp.gwdg.de_pub_linux_suse_apt_SuSE_9.0-i 386_base_pkglist.rpmkeys)
Yup, have that one installed. ...
Hmmm, but the k3b rpm is build by Rainer...
Bingo. Rainer, your rpmkey is not in the rpmkey-packman package. Would you please put your rpm signature in the nextversion of the rpmkey-packman package? :) Thanks in advance, Cheers, Leen
On Sunday 26 September 2004 21:48, Leendert Meyer wrote:
On Sunday 26 September 2004 21:07, Richard Bos wrote:
Op zondag 26 september 2004 19:38, schreef Leendert Meyer:
BTW, this morning I installed k3b from the packman repository, and that failed because of a wrong signature. And I did have the packman rpmkey installed...
FYI: the packman's rpmkey rpm has been updated recently.
Hmm, shouldn't that trigger an automatic upgrade of the packman rpmkey if the rpmkeys repository is enabled, like I have??? I think it should.
I mean: apt update && apt upgrade should show that the packman rpmkey has been changed, and would be upgraded if 'y' would have been pressed. Cheers, Leen
On Sunday 26 September 2004 22:16, Leendert Meyer wrote:
On Sunday 26 September 2004 21:48, Leendert Meyer wrote:
Hmm, shouldn't that trigger an automatic upgrade of the packman rpmkey if the rpmkeys repository is enabled, like I have??? I think it should.
I mean:
apt update && apt upgrade
should show that the packman rpmkey has been changed, and would be upgraded if 'y' would have been pressed.
Nevermind, I saw your reply just seconds after I posted. Cheers, Leen
On Sep 26, 2004, at 1:38 PM, Leendert Meyer wrote:
On Sunday 26 September 2004 17:04, Deep Thinker wrote:
On Sep 26, 2004, at 3:50 AM, Richard Bos wrote:
Op zondag 26 september 2004 01:21, schreef Leendert Meyer:
The rpmkeys repository contain GPG signing keys used to verify that a package actually comes from a valid source. If the rpmkey of a package is not installed, you can only install such a package with the '--no-checksig' option.
I would add the --no-post argument too: http://linux01.gwdg.de/apt4rpm/home.html#signatures
OK.. here is what I have done.
1. Made my sources.list file look like this
rpm ftp://ftp.gwdg.de/pub/linux/suse/apt SuSE/9.1-i386 base update security usr-local-bin kde mozilla samba3 funktronics packman wine rpmkeys suser-rbos
2. ran 'apt-get update'
3. ran 'apt --nochecksig install rpmkey-suser-rbos' (this seemed to
Should be --no-checksig, but as you did not get an error, it seems you musthave entered the right command. ;)
...
IIRC, the packages which had not a valid signature were mentioned **right** **before** the next error message:
E: Error(s) while checking package signatures: 27 unsigned package(s) 4 package(s) with unknown signatures 0 package(s) with illegal/corrupted signatures ... What should I do at this point? I fear that I am making my system unstable by doing all of this.
Install the correct rpmkeys. Run 'apt upgrade' again, and post the *complete* output, so you don't leave something important out by mistake. ;) And to see what rpmkeys are installed , please post the output of
rpm -qa | grep '^rpmkey-'
too.
From both outputs we can tell what rpmkeys you need to install.
Here is my output... please tell me what I should do at this point. Thanks for everyones help. d33p th1nk3r -----------------------------------Begin Output-------------------------------------- thinker@shaolin:~> su Password: shaolin:/home/thinker # apt-get update Get:1 ftp://ftp.gwdg.de SuSE/9.1-i386 release [10.4kB] Fetched 10.4kB in 2s (3579B/s) Hit ftp://ftp.gwdg.de SuSE/9.1-i386/base pkglist Get:1 ftp://ftp.gwdg.de SuSE/9.1-i386/base release [130B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/update pkglist Get:2 ftp://ftp.gwdg.de SuSE/9.1-i386/update release [132B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/security pkglist Get:3 ftp://ftp.gwdg.de SuSE/9.1-i386/security release [134B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/usr-local-bin pkglist Get:4 ftp://ftp.gwdg.de SuSE/9.1-i386/usr-local-bin release [139B] Get:5 ftp://ftp.gwdg.de SuSE/9.1-i386/kde pkglist [430kB] Get:6 ftp://ftp.gwdg.de SuSE/9.1-i386/kde release [129B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/mozilla pkglist Get:7 ftp://ftp.gwdg.de SuSE/9.1-i386/mozilla release [133B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/samba3 pkglist Get:8 ftp://ftp.gwdg.de SuSE/9.1-i386/samba3 release [132B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/funktronics pkglist Get:9 ftp://ftp.gwdg.de SuSE/9.1-i386/funktronics release [137B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/packman pkglist Get:10 ftp://ftp.gwdg.de SuSE/9.1-i386/packman release [133B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/wine pkglist Get:11 ftp://ftp.gwdg.de SuSE/9.1-i386/wine release [130B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/rpmkeys pkglist Get:12 ftp://ftp.gwdg.de SuSE/9.1-i386/rpmkeys release [133B] Hit ftp://ftp.gwdg.de SuSE/9.1-i386/suser-rbos pkglist Get:13 ftp://ftp.gwdg.de SuSE/9.1-i386/suser-rbos release [136B] Fetched 431kB in 20s (20.7kB/s) Reading Package Lists... Done Building Dependency Tree... Done shaolin:/home/thinker # apt-get upgrade Reading Package Lists... Done Building Dependency Tree... Done The following packages will be upgraded OpenOffice_org-Quickstarter abiword alsa alsa-docs alsa-tools apache2 apache2-doc apache2-prefork arts atk bug-buddy cdrecord dvd+rw-tools gail gconf2 gdm glib2 glibc glibc-devel gnome-mime-data gnome-themes gnome-utils gnumeric gqview gtk2-engines gtksourceview k3b kbear kdeaddons3-kate kdeaddons3-kicker kdeartwork3-sound kdeartwork3-xscreensaver kdebase3-kdm kdebase3-ksysguardd kdebase3-nsplugin kdebase3-samba kdebluetooth kdegames3-arcade kdegames3-board kdegames3-card kdegames3-tactic kdegraphics3-fax kdegraphics3-kamera kdegraphics3-postscript kdemultimedia3-CD kdemultimedia3-jukebox kdemultimedia3-sound kdemultimedia3-video kdemultimedia3-video-xine kdenetwork3-lan kdenetwork3-news kdenetwork3-vnc kdepim3-kpilot kdeutils3-laptop knights ksteak libapr0 libart_lgpl libbonobo libbonoboui libdv libglade2 libgnomecanvas libgnomedb libgsf libgsf-gnome libgtkhtml libsmbclient libwnck libxml2 libxslt mc metacity mjpegtools mkisofs ooqstart orbit2 pango qt3 samba samba-client samba-winbind speex startup-notification steak taglib thinkeramik xchat xmms-kde The following packages have been kept back control-center2 digikam eel enchant eog epiphany evolution file-roller gaim gal2 gconf-editor gedit ggv gimp gnome-applets gnome-desktop gnome-games gnome-icon-theme gnome-media gnome-panel gnome-session gnome-terminal gnome-vfs2 gpdf gstreamer gstreamer-plugins gstreamer-plugins-default gstreamer-plugins-excess gstreamer-plugins-extra gtk2 gtkhtml2 kaffeine kdeaddons3-konqueror kdebase3 kdeedu3 kdegames3 kdegraphics3 kdelibs3 kdemultimedia3 kdenetwork3 kdenetwork3-InstantMessenger kdepim3 kdepim3-organizer kdeutils3 konversation kssh libdvdnav libgda libgnome libgnomeprint libgnomeprintui libgnomeui librsvg libsoup libxklavier mozilla nautilus nautilus-cd-burner nautilus-media rekall rekall-xbase sane totem xine-ui xsane yelp 89 upgraded, 0 newly installed, 0 removed and 66 not upgraded. Need to get 0B/124MB of archives. After unpacking 31.0MB of additional disk space will be used. Do you want to continue? [Y/n] Y Checking GPG signatures... Unsigned /var/cache/apt/archives/glib2_2.4.6-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/atk_1.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/orbit2_2.12.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libxml2_2.6.11-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libbonobo_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/pango_1.6.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gconf2_2.8.0.1-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libglade2_2.4.0-100.SusE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libgnomecanvas_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libbonoboui_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/startup-notification_0.6 -100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/bug-buddy_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gail_1.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gdm_2.4.4.7-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-themes_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-utils_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gtksourceview_1.1.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libxslt_1.1.8-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libgnomedb_1.0.4-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnumeric_1.2.13-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unknown signature /var/cache/apt/archives/libsmbclient_3.0.7-1.1_i586.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#414a57c3) Unsigned /var/cache/apt/archives/libgtkhtml_2.6.2-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libwnck_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/metacity_2.8.5-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unknown signature /var/cache/apt/archives/samba-winbind_3.0.7-1.1_i586.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#414a57c3) Unknown signature /var/cache/apt/archives/samba_3.0.7-1.1_i586.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#414a57c3) Unknown signature /var/cache/apt/archives/samba-client_3.0.7-1.1_i586.rpm: (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#414a57c3) Unsigned /var/cache/apt/archives/abiword_2.0.12-100.SuSE.91.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-mime-data_2.4.1-100.SuSE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gtk2-engines_2.2.0-400.SuSE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/mjpegtools_1.6.2-48.pm.0_i586.rpm: sha1 md5 OK E: Error(s) while checking package signatures: 27 unsigned package(s) 4 package(s) with unknown signatures 0 package(s) with illegal/corrupted signatures shaolin:/home/thinker # rpm -qa | grep -E "^rpmkey-" rpmkey-suser-rbos-0.1-1 rpmkey-packman-0.2.1-0.pm.0 rpmkey-funktronics-1.0-1 shaolin:/home/thinker # ------------------------------------------- end Output --------------------------------------------------
On Monday 27 September 2004 00:02, Deep Thinker wrote:
On Sep 26, 2004, at 1:38 PM, Leendert Meyer wrote: Here is my output... please tell me what I should do at this point.
Thanks, that helped. :)
Thanks for everyones help.
d33p th1nk3r ... E: Error(s) while checking package signatures: 27 unsigned package(s)
Seems all those 27 unsigned packages are from the user-local-bin repository. AFAIK, those need to be installed with the --no-checksig option.
4 package(s) with unknown signatures
All 4 need the key GPG#414a57c3. I took a peek at the samba3 repository, saw that the links pointed to the SuSE samba project, and there I found the key. Get the key from: http://ftp.gwdg.de/pub/linux/suse/ftp.suse.com/projects/samba/414A57C3-lmuel... Install with: rpm --import 414A57C3-lmuelle-gpg-key.asc
0 package(s) with illegal/corrupted signatures shaolin:/home/thinker # rpm -qa | grep -E "^rpmkey-" rpmkey-suser-rbos-0.1-1 rpmkey-packman-0.2.1-0.pm.0 rpmkey-funktronics-1.0-1 shaolin:/home/thinker # ------------------------------------------- end Output ...
After you installed the key 414A57C3-lmuelle-gpg-key.asc, if apt *only* complains about 27 unsigned packages, just use the --no-checksig option to install those unsigned packages from user-local-bin. If you do not trust them, then ask yourself if it wouldn't be better to remove (comment out) the user-local-bin repository from your sources.list. ;) Cheers, Leen
On Sep 27, 2004, at 9:21 AM, Leendert Meyer wrote:
On Monday 27 September 2004 00:02, Deep Thinker wrote:
On Sep 26, 2004, at 1:38 PM, Leendert Meyer wrote: Here is my output... please tell me what I should do at this point.
Thanks, that helped. :)
Thanks for everyones help.
d33p th1nk3r ... E: Error(s) while checking package signatures: 27 unsigned package(s)
Seems all those 27 unsigned packages are from the user-local-bin repository.
AFAIK, those need to be installed with the --no-checksig option.
4 package(s) with unknown signatures
All 4 need the key GPG#414a57c3.
I took a peek at the samba3 repository, saw that the links pointed to the SuSE samba project, and there I found the key.
Get the key from: http://ftp.gwdg.de/pub/linux/suse/ftp.suse.com/projects/samba/ 414A57C3-lmuelle-gpg-key.asc
Install with:
rpm --import 414A57C3-lmuelle-gpg-key.asc
OK, I did this. Then I did 'apt-get update' then 'apt-get upgrade'. Seems to have worked since I only have 27 unsigned packages now.
0 package(s) with illegal/corrupted signatures shaolin:/home/thinker # rpm -qa | grep -E "^rpmkey-" rpmkey-suser-rbos-0.1-1 rpmkey-packman-0.2.1-0.pm.0 rpmkey-funktronics-1.0-1 shaolin:/home/thinker # ------------------------------------------- end Output ...
After you installed the key 414A57C3-lmuelle-gpg-key.asc, if apt *only* complains about 27 unsigned packages, just use the --no-checksig option to install those unsigned packages from user-local-bin.
If you do not trust them, then ask yourself if it wouldn't be better to remove (comment out) the user-local-bin repository from your sources.list. ;)
I am OK with installing them with the '--no-checksig' option. The main reason I started trying to get apt to work is so I could play with ULB's version of Gnome 2.8. I am posting my most recent session below. I suppose the question is, what do I need to do to get ULB Gnome 2.8 to be an option in my session menu? Here is what I have just done. Please tell what I need to do in order t get ULB's Gnome 2.8 and the latest version of KDE as options for my desktop. Thanks again. ---begin session ---- shaolin:/home/thinker/Downloads/apt # ls . .. 414A57C3-lmuelle-gpg-key.asc apt-0.5.15cnc6-0.suse091.rb.5.i586.rpm apt-libs-0.5.15cnc6-0.suse091.rb.5.i586.rpm shaolin:/home/thinker/Downloads/apt # rpm --import 414A57C3-lmuelle-gpg-key.asc shaolin:/home/thinker/Downloads/apt # apt-get update Get:1 ftp://ftp.gwdg.de SuSE/9.1-i386 release [10.5kB] Fetched 10.5kB in 12s (832B/s) Hit ftp://ftp.gwdg.de SuSE/9.1-i386/base pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/base release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/update pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/update release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/security pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/security release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/usr-local-bin pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/usr-local-bin release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/kde pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/kde release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/mozilla pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/mozilla release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/samba3 pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/samba3 release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/funktronics pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/funktronics release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/packman pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/packman release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/wine pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/wine release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/rpmkeys pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/rpmkeys release Hit ftp://ftp.gwdg.de SuSE/9.1-i386/suser-rbos pkglist Hit ftp://ftp.gwdg.de SuSE/9.1-i386/suser-rbos release Reading Package Lists... Done Building Dependency Tree... Done shaolin:/home/thinker/Downloads/apt # apt-get upgrade Reading Package Lists... Done Building Dependency Tree... Done The following packages will be upgraded OpenOffice_org-Quickstarter abiword alsa alsa-docs alsa-tools apache2 apache2-doc apache2-prefork arts atk bug-buddy cdrecord dvd+rw-tools gail gconf2 gdm glib2 glibc glibc-devel gnome-mime-data gnome-themes gnome-utils gnumeric gqview gtk2-engines gtksourceview k3b kbear kdeaddons3-kate kdeaddons3-kicker kdeartwork3-sound kdeartwork3-xscreensaver kdebase3-kdm kdebase3-ksysguardd kdebase3-nsplugin kdebase3-samba kdebluetooth kdegames3-arcade kdegames3-board kdegames3-card kdegames3-tactic kdegraphics3-fax kdegraphics3-kamera kdegraphics3-postscript kdemultimedia3-CD kdemultimedia3-jukebox kdemultimedia3-sound kdemultimedia3-video kdemultimedia3-video-xine kdenetwork3-lan kdenetwork3-news kdenetwork3-vnc kdepim3-kpilot kdeutils3-laptop knights ksteak libapr0 libart_lgpl libbonobo libbonoboui libdv libglade2 libgnomecanvas libgnomedb libgsf libgsf-gnome libgtkhtml libsmbclient libwnck libxml2 libxslt mc metacity mjpegtools mkisofs ooqstart orbit2 pango qt3 samba samba-client samba-winbind speex startup-notification steak taglib thinkeramik xchat xmms-kde The following packages have been kept back control-center2 digikam eel enchant eog epiphany evolution file-roller gaim gal2 gconf-editor gedit ggv gimp gnome-applets gnome-desktop gnome-games gnome-icon-theme gnome-media gnome-panel gnome-session gnome-terminal gnome-vfs2 gpdf gstreamer gstreamer-plugins gstreamer-plugins-default gstreamer-plugins-excess gstreamer-plugins-extra gtk2 gtkhtml2 kaffeine kdeaddons3-konqueror kdebase3 kdeedu3 kdegames3 kdegraphics3 kdelibs3 kdemultimedia3 kdenetwork3 kdenetwork3-InstantMessenger kdepim3 kdepim3-organizer kdeutils3 konversation kssh libdvdnav libgda libgnome libgnomeprint libgnomeprintui libgnomeui librsvg libsoup libxklavier mozilla nautilus nautilus-cd-burner nautilus-media rekall rekall-xbase sane totem xine-ui xsane yelp 89 upgraded, 0 newly installed, 0 removed and 66 not upgraded. Need to get 8023kB/122MB of archives. After unpacking 24.9MB of additional disk space will be used. Do you want to continue? [Y/n] Y Get:1 ftp://ftp.gwdg.de SuSE/9.1-i386/packman k3b 0.11.17-0.pm.1 [5806kB] Get:2 ftp://ftp.gwdg.de SuSE/9.1-i386/kde kdegraphics3-fax 3.3.0-12 [254kB] Get:3 ftp://ftp.gwdg.de SuSE/9.1-i386/kde kdegraphics3-postscript 3.3.0-12 [257kB] Get:4 ftp://ftp.gwdg.de SuSE/9.1-i386/kde kdepim3-kpilot 3.3.0-27 [1620kB] Get:5 ftp://ftp.gwdg.de SuSE/9.1-i386/kde kdegraphics3-kamera 3.3.0-12 [86.4kB] Fetched 8023kB in 1m6s (121kB/s) Checking GPG signatures... Unsigned /var/cache/apt/archives/glib2_2.4.6-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/atk_1.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/orbit2_2.12.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libxml2_2.6.11-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libbonobo_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/pango_1.6.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gconf2_2.8.0.1-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libglade2_2.4.0-100.SusE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libgnomecanvas_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libbonoboui_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/startup-notification_0.6 -100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/bug-buddy_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gail_1.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gdm_2.4.4.7-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-themes_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-utils_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gtksourceview_1.1.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libxslt_1.1.8-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libgnomedb_1.0.4-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnumeric_1.2.13-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libgtkhtml_2.6.2-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/libwnck_2.8.0-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/metacity_2.8.5-100.SuSE.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/abiword_2.0.12-100.SuSE.91.ulb.1_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gnome-mime-data_2.4.1-100.SuSE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/gtk2-engines_2.2.0-400.SuSE.ulb.2_i586.rpm: sha1 md5 OK Unsigned /var/cache/apt/archives/mjpegtools_1.6.2-48.pm.0_i586.rpm: sha1 md5 OK E: Error(s) while checking package signatures: 27 unsigned package(s) 0 package(s) with unknown signatures 0 package(s) with illegal/corrupted signatures shaolin:/home/thinker/Downloads/apt # apt --no-checksig upgrade Reading Package Lists... Done Building Dependency Tree... Done The following packages will be upgraded OpenOffice_org-Quickstarter abiword alsa alsa-docs alsa-tools apache2 apache2-doc apache2-prefork arts atk bug-buddy cdrecord dvd+rw-tools gail gconf2 gdm glib2 glibc glibc-devel gnome-mime-data gnome-themes gnome-utils gnumeric gqview gtk2-engines gtksourceview k3b kbear kdeaddons3-kate kdeaddons3-kicker kdeartwork3-sound kdeartwork3-xscreensaver kdebase3-kdm kdebase3-ksysguardd kdebase3-nsplugin kdebase3-samba kdebluetooth kdegames3-arcade kdegames3-board kdegames3-card kdegames3-tactic kdegraphics3-fax kdegraphics3-kamera kdegraphics3-postscript kdemultimedia3-CD kdemultimedia3-jukebox kdemultimedia3-sound kdemultimedia3-video kdemultimedia3-video-xine kdenetwork3-lan kdenetwork3-news kdenetwork3-vnc kdepim3-kpilot kdeutils3-laptop knights ksteak libapr0 libart_lgpl libbonobo libbonoboui libdv libglade2 libgnomecanvas libgnomedb libgsf libgsf-gnome libgtkhtml libsmbclient libwnck libxml2 libxslt mc metacity mjpegtools mkisofs ooqstart orbit2 pango qt3 samba samba-client samba-winbind speex startup-notification steak taglib thinkeramik xchat xmms-kde The following packages have been kept back control-center2 digikam eel enchant eog epiphany evolution file-roller gaim gal2 gconf-editor gedit ggv gimp gnome-applets gnome-desktop gnome-games gnome-icon-theme gnome-media gnome-panel gnome-session gnome-terminal gnome-vfs2 gpdf gstreamer gstreamer-plugins gstreamer-plugins-default gstreamer-plugins-excess gstreamer-plugins-extra gtk2 gtkhtml2 kaffeine kdeaddons3-konqueror kdebase3 kdeedu3 kdegames3 kdegraphics3 kdelibs3 kdemultimedia3 kdenetwork3 kdenetwork3-InstantMessenger kdepim3 kdepim3-organizer kdeutils3 konversation kssh libdvdnav libgda libgnome libgnomeprint libgnomeprintui libgnomeui librsvg libsoup libxklavier mozilla nautilus nautilus-cd-burner nautilus-media rekall rekall-xbase sane totem xine-ui xsane yelp 89 upgraded, 0 newly installed, 0 removed and 66 not upgraded. Need to get 0B/122MB of archives. After unpacking 24.9MB of additional disk space will be used. Do you want to continue? [Y/n] Y Committing changes... Preparing... ########################################### [100%] file /opt/kde3/share/apps/kdm/pics/users/BeachBall.png from install of kdebase3-kdm-3.3.0-15 conflicts with file from package kdeutils3-3.2.1-61 file /opt/kde3/share/apps/kdm/pics/users/Butterfly.png from install of kdebase3-kdm-3.3.0-15 conflicts with file from package kdeutils3-3.2.1-61 file /opt/kde3/share/apps/kdm/pics/users/Flower.png from install of kdebase3-kdm-3.3.0-15 conflicts with file from package kdeutils3-3.2.1-61 file /opt/kde3/share/applnk/.hidden/kcmkiolan.desktop from install of kdenetwork3-lan-3.3.0-28 conflicts with file from package kdenetwork3-3.2.1-45 file /opt/kde3/share/applnk/.hidden/kcmlisa.desktop from install of kdenetwork3-lan-3.3.0-28 conflicts with file from package kdenetwork3-3.2.1-45 file /opt/kde3/share/applnk/.hidden/kcmreslisa.desktop from install of kdenetwork3-lan-3.3.0-28 conflicts with file from package kdenetwork3-3.2.1-45 file /opt/kde3/share/doc/HTML/en/lisa/index.cache.bz2 from install of kdenetwork3-lan-3.3.0-28 conflicts with file from package kdenetwork3-3.2.1-45 E: Error while running transaction shaolin:/home/thinker/Downloads/apt # ---- end session ---
On Wednesday 29 September 2004 02:13, Deep Thinker wrote:
Here is what I have just done.
[snipped expected output]
Please tell what I need to do in order t get ULB's Gnome 2.8 and the latest version of KDE as options for my desktop.
Copy the next file to /opt/kde3/share/apps/kdm/sessions/gnome28.desktop: ----8<----8<--[/opt/kde3/share/apps/kdm/sessions/gnome28.desktop]--8<---- [Desktop Entry] Encoding=UTF-8 Type=XSession Exec=gnome TryExec=gnome Name=GNOME Comment=The GNU Network Object Model Environment. A complete, free and easy-to-use desktop environment ---->8---->8---->8---- Warning: the 'Comment=' line is the *last* line, and a *long* line, possibly wrapped by your mail client. Logout of KDE Restart KDM if the session is not there with 'rcxdm restart' Choose Gnome. Cheers, Leen
On Sep 29, 2004, at 3:43 AM, Leendert Meyer wrote:
On Wednesday 29 September 2004 02:13, Deep Thinker wrote:
Here is what I have just done.
[snipped expected output]
Please tell what I need to do in order t get ULB's Gnome 2.8 and the latest version of KDE as options for my desktop.
Copy the next file to /opt/kde3/share/apps/kdm/sessions/gnome28.desktop:
----8<----8<--[/opt/kde3/share/apps/kdm/sessions/gnome28.desktop]- -8<---- [Desktop Entry] Encoding=UTF-8 Type=XSession Exec=gnome TryExec=gnome Name=GNOME Comment=The GNU Network Object Model Environment. A complete, free and easy-to-use desktop environment ---->8---->8---->8----
Warning: the 'Comment=' line is the *last* line, and a *long* line, possibly wrapped by your mail client.
Logout of KDE Restart KDM if the session is not there with 'rcxdm restart' Choose Gnome.
There is no 'gnome28.desktop' in that directory. Only 'gnome.desktop'. Also, after the last attempt at 'apt-get update' SuSEconfig did not run. How can I be sure of what did and what did not install from the ULB (or any other) repository? Thanks, d33p th1nk3r
On Wednesday 29 September 2004 13:12, Deep Thinker wrote:
On Sep 29, 2004, at 3:43 AM, Leendert Meyer wrote:
On Wednesday 29 September 2004 02:13, Deep Thinker wrote:
Here is what I have just done.
[snipped expected output]
Please tell what I need to do in order t get ULB's Gnome 2.8 and the latest version of KDE as options for my desktop.
[snipping my advice]
There is no 'gnome28.desktop' in that directory. Only 'gnome.desktop'.
I assumed gnome.desktop was missing, but clearly it is not. So forget my advice, I do not know how to add a gnome session to KDM (I thought I did). I had a gnome session mission too. I installed the package 'gnome-session', and I got a gnome session (after logging in there where no letters, so *I* need to install more packages). Perhaps you only need to install the package 'gnome-session' from ULB. Cheers, Leen
Op woensdag 29 september 2004 13:12, schreef Deep Thinker:
Also, after the last attempt at 'apt-get update' SuSEconfig did not run.
SuSEconfig is not run after 'apt update', it is after e.g. apt upgrade, apt remove, apt install, etc. -- Richard Bos Without a home the journey is endless
participants (5)
-
Brian Jonas
-
Deep Thinker
-
Leendert Meyer
-
Patrick Shanahan
-
Richard Bos