| View previous topic :: View next topic |
| Author |
Message |
Chol n00b


Joined: 06 Feb 2004 Posts: 34 Location: Germany
|
Posted: Fri Jun 17, 2005 2:16 am Post subject: gnome network settings dialog missing |
|
|
Hi!
Today I updated from gnome 2.8 to the new gnome 2.10 metapackage, but now I'm missing the network settings dialog like displayed here or here in background.
gnome-system-tools 1.2.0-r1 are installed, but I nowhere can find this dialog
Any hints? |
|
| Back to top |
|
 |
Sir No Apprentice


Joined: 01 May 2005 Posts: 159 Location: Poland
|
Posted: Sat Jun 18, 2005 2:10 pm Post subject: |
|
|
Just wanted to second that problem.
I also upgraded Gnome 2.8 to Gnome 2.10 on June 10th and the network-admin is gone somehow.
I checked the source tarball for gnome-system-tools package and it seems that the code for network-admin looks to be in place. So, why on earth it hasn't been emerged properly?
:puzzled:  _________________ The geeks | Recommended Packages fOr Desktop & Server | Read BBCode Guide! |
|
| Back to top |
|
 |
Sir No Apprentice


Joined: 01 May 2005 Posts: 159 Location: Poland
|
Posted: Sat Jun 18, 2005 2:33 pm Post subject: |
|
|
Well, this is kind of odd, but in the /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild file, there is a following part:
| Code: | ...
# --enable-disks is not (still) supported for Gentoo
G2CONF="${G2CONF} --enable-boot --enable-services --disable-network"
if ! use nfs && ! use samba; then
G2CONF="${G2CONF} --disable-shares"
fi
... |
The strange thing is that --disable-network switch. Effectively it creates an entry in the package's Makefile:
| Code: | ...
VERSION = 1.2.0
gnomelocaledir = ${prefix}/${DATADIRNAME}/locale
interfacesdir = /usr/share/gnome-system-tools/interfaces
mkdir_p = mkdir -p -- .
pixmapsdir = /usr/share/gnome-system-tools/pixmaps
scriptsdir =
boot_SUBDIR = boot
#network_SUBDIR = network
services_SUBDIR = services
time_SUBDIR = time
users_SUBDIR = users
#disks_SUBDIR = disks
shares_SUBDIR = shares
... |
Just look at this #network_SUBDIR = network line. Now I understand that using this ebuild there's no chance that network-admin would be built.
I think I feel like filling a bug report... _________________ The geeks | Recommended Packages fOr Desktop & Server | Read BBCode Guide! |
|
| Back to top |
|
 |
bertaboy Guru


Joined: 04 Nov 2004 Posts: 587
|
Posted: Sat Jun 18, 2005 3:33 pm Post subject: |
|
|
Until a new ebuild comes out, you can change two files so that when you emerge gnome-system-tools, that it enables the feature:
First:
vim /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild
and edit --disable-network to --enable-network
Second:
run md5sum on the ebuild and also run ls -l on the ebuild, copying the md5sum value and taking note of what the file size is of the modified ebuild.
Open up /usr/portage/app-admin/gnome-system/tools/Manifest and replace the md5sum and filesize for the modified ebuild.
I can confirm that after enabling the flags, my system hasn't broken yet. _________________
| someone else wrote: | | someone wrote: | | If there are two people that have got a problem with each other, then that person could just ignore the other person. |
You can do that without any technological mumbo-jumbo....
- someone else |
|
|
| Back to top |
|
 |
Sir No Apprentice


Joined: 01 May 2005 Posts: 159 Location: Poland
|
Posted: Sun Jun 19, 2005 5:02 pm Post subject: |
|
|
| bertaboy wrote: | Until a new ebuild comes out, you can change two files so that when you emerge gnome-system-tools, that it enables the feature:
First:
vim /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild
and edit --disable-network to --enable-network
Second:
run md5sum on the ebuild and also run ls -l on the ebuild, copying the md5sum value and taking note of what the file size is of the modified ebuild.
Open up /usr/portage/app-admin/gnome-system/tools/Manifest and replace the md5sum and filesize for the modified ebuild.
I can confirm that after enabling the flags, my system hasn't broken yet. |
Ok, that would do the trick in the short term. I did something similar, and now network-admin is back
However, the method you described is a pure hack and I would discourage it. For my system I created an overlay (which I think is better!), so my work will survive the next 'emerge --sync'. [Hint: read about ebuild tool and setting PORTDIR_OVERLAY variable in make.conf]
We really should wait for a new ebuild of gnome-system-tools. There is a reason for it - namely network-admin doesn't exactly work the "Gentoo way". See the following bug #86671 to understand better. _________________ The geeks | Recommended Packages fOr Desktop & Server | Read BBCode Guide! |
|
| Back to top |
|
 |
Gallant n00b

Joined: 07 Jun 2005 Posts: 3
|
Posted: Wed Jun 22, 2005 11:19 am Post subject: |
|
|
| bertaboy wrote: | Until a new ebuild comes out, you can change two files so that when you emerge gnome-system-tools, that it enables the feature:
First:
vim /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild
and edit --disable-network to --enable-network
Second:
run md5sum on the ebuild and also run ls -l on the ebuild, copying the md5sum value and taking note of what the file size is of the modified ebuild.
Open up /usr/portage/app-admin/gnome-system/tools/Manifest and replace the md5sum and filesize for the modified ebuild.
I can confirm that after enabling the flags, my system hasn't broken yet. |
I dont even have an admin interface all I get is proxy settings.
Since Bertaboy went into more detail I will do it his way. So far I have changed the ebuild and modified the md5 values , but to no result. Im guessing its in your next step were the changes reveal themselves in the UI. When you say you enable the flags, what do you actually do in more detail?
Garrett
P.S. Remember noobs are always listening. _________________ Hmmmmmmm. |
|
| Back to top |
|
 |
bertaboy Guru


Joined: 04 Nov 2004 Posts: 587
|
Posted: Thu Jun 23, 2005 11:25 am Post subject: |
|
|
| Gallant wrote: | | bertaboy wrote: | Until a new ebuild comes out, you can change two files so that when you emerge gnome-system-tools, that it enables the feature:
First:
vim /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild
and edit --disable-network to --enable-network
Second:
run md5sum on the ebuild and also run ls -l on the ebuild, copying the md5sum value and taking note of what the file size is of the modified ebuild.
Open up /usr/portage/app-admin/gnome-system/tools/Manifest and replace the md5sum and filesize for the modified ebuild.
I can confirm that after enabling the flags, my system hasn't broken yet. |
I dont even have an admin interface all I get is proxy settings.
Since Bertaboy went into more detail I will do it his way. So far I have changed the ebuild and modified the md5 values , but to no result. Im guessing its in your next step were the changes reveal themselves in the UI. When you say you enable the flags, what do you actually do in more detail?
Garrett
P.S. Remember noobs are always listening. |
Did you remember to re-emerge the package after modifying the files? _________________
| someone else wrote: | | someone wrote: | | If there are two people that have got a problem with each other, then that person could just ignore the other person. |
You can do that without any technological mumbo-jumbo....
- someone else |
|
|
| Back to top |
|
 |
aj2r l33t


Joined: 11 Sep 2005 Posts: 698 Location: Granada/Andalucía/España
|
Posted: Tue Sep 13, 2005 7:25 am Post subject: |
|
|
Wifi configuration doesn't work, why? _________________ Fundación I+D del Software Libre
_____________________________________________________
Portátil HP Pavilion zd8185ea: Pentium4HT 3.2Ghz, ATI x600 256MB
gnome-2.24, compiz-fusion, airglx |
|
| Back to top |
|
 |
GentooMik Tux's lil' helper


Joined: 24 Nov 2004 Posts: 141
|
Posted: Thu Apr 20, 2006 5:56 pm Post subject: |
|
|
Thanks that is what was changed in the ebuild.
| bertaboy wrote: | Until a new ebuild comes out, you can change two files so that when you emerge gnome-system-tools, that it enables the feature:
First:
vim /usr/portage/app-admin/gnome-system-tools/gnome-system-tools-1.2.0-r1.ebuild
and edit --disable-network to --enable-network
Second:
run md5sum on the ebuild and also run ls -l on the ebuild, copying the md5sum value and taking note of what the file size is of the modified ebuild.
Open up /usr/portage/app-admin/gnome-system/tools/Manifest and replace the md5sum and filesize for the modified ebuild.
I can confirm that after enabling the flags, my system hasn't broken yet. |
_________________ Attempt to Treat others, the way you would like to be treated yourself. |
|
| Back to top |
|
 |
hagen_ n00b

Joined: 25 May 2005 Posts: 7
|
Posted: Mon Apr 24, 2006 3:21 pm Post subject: ebuild |
|
|
Hi, with the command ebuild is a "better" way to do the md5 sum
after you save the .build
# ebuild gnome-system-tools1.x.x.ebuild digest
this will update the Manifest automatically
and then
#emerge gnome-system-tools1.x.x
and that's it |
|
| Back to top |
|
 |
|