LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-19-2011, 03:04 AM   #1
rody
Member
 
Registered: Jan 2011
Location: kernel
Distribution: Slackware - Arch
Posts: 77

Rep: Reputation: 3
error with gnome slack build (GSB)


hi there
after install slackware with gnome using gnome slack build it is work fine Except some thing :-

the volume
it is not work and get this error
((The volume control did not find any elements and/or devices to control. This means either that you don't have the right GStreamer plugins installed, or that you don't have a sound card configured.

You can remove the volume control from the panel by right-clicking the speaker icon on the panel and selecting "Remove From Panel" from the menu.

No volume control GStreamer plugins and/or devices found.))

and the System Monitor give me this error when i want check the state of memory and processor

((There was an error executing 'gnome-system-monitor': Failed to execute child process "gnome-system-monitor" (No such file or directory))

and the memory flash not work and give me this error

((Error org.freedesktop.DBus.Error.AccessDenied.))

help me

Last edited by rody; 01-19-2011 at 03:28 AM.
 
Old 01-19-2011, 04:25 AM   #2
linuxs64
Member
 
Registered: Jun 2010
Posts: 116

Rep: Reputation: 47
How did you install GSB? Did you use slapt-get?
 
Old 01-19-2011, 04:40 AM   #3
rody
Member
 
Registered: Jan 2011
Location: kernel
Distribution: Slackware - Arch
Posts: 77

Original Poster
Rep: Reputation: 3
im using this

lynx --source http://gnomeslackbuild.org/net-install | bash

it is install slapt-get first and install gnome
 
Old 01-19-2011, 05:24 AM   #4
linuxs64
Member
 
Registered: Jun 2010
Posts: 116

Rep: Reputation: 47
I did a rsync of GSB packages (without sources, around 700MB or so), use available http://gnomeslackbuild.org/download/#mirrors. If you use slackware-current, get the corresponding gsb-current. Same for slackware-13.1 or slackware64-13.1.

Quote:
rsync -rlptDvuh --exclude=source rsync://ftp.osuosl.org/pub/gsb/gsb-2.30_slackware-13.1/ gsb-2.30_slackware-13.1/
Then setup slapt-get properly as described in INSTALL.TXT

You are using this method below

Quote:
Installing from a local copy

Installing from a local copy of GSB and/or Slackware/Slackware64 is a very
similar process to the manual slapt-get net installation detailed above - it is
recommended that you read that section in addition to this one, in order to
understand the slapt-get installtion process. Only brief instructions are
given here.

For the following instructions, </path/to/gsb> referrs to the local filesystem
location for the GSB mirror, and </path/to/slackware> referrs to the local
filesystem location to the Slackware/Slackware64 mirror. Both of these should,
obviously, be replaced with the full correct paths to each mirror. These paths
can also be on a CDROM or USB device if the mirrors are located on such media.

As with the manual slapt-get net installation, a GSB slapt-getrc file must be
created - however, the two SOURCE entries in the slapt-getrc for this install
method will be local filesystem paths, not URIs.

Create the slapt-getrc:
$ nano /etc/slapt-getrc.gsb

Add the required configuration:
WORKINGDIR=/var/slapt-get
EXCLUDE=^kernel-.*,^glibc.*,.*-[0-9]+dl$,^devs$,^udev$,aaa_elflibs

Finally, add the two SOURCE entries:
SOURCE=file://</path/to/gsb>
SOURCE=file://</path/to/slackware>

Save the file and exit the text editor. Use these commands to update the
slapt-get cache files:
$ slapt-get -c /etc/slapt-get/slapt-getrc.gsb --update

Finally, as with the manual slapt-get net installation, you must choose which
'set' to install. Details of the sets are in Appendix C below, but we highly
recommend that you install 'gsb-complete'.

To start the installation, use:
$ slapt-get -c /etc/slapt-get/slapt-getrc.gsb -y --retry 10 --upgrade
$ slapt-get -c /etc/slapt-get/slapt-getrc.gsb -y --retry 10 \
--install <your chosen package set from Appendix C>
(Note: the second command has been spanned over two lines for readability)

For clarity, to install the 'gsb-complete' set (highly recommended) use the
following commands:
$ slapt-get -c /etc/slapt-get/slapt-getrc.gsb -y --retry 10 --upgrade
$ slapt-get -c /etc/slapt-get/slapt-getrc.gsb -y --retry 10 --install gsb-complete


With any luck, the installation process will finish without any errors or
problems and GSB will now be installed on your system. Please read the section
'After installation' (and the sections which follow it) below.
I did not use the commands marked in red (above), instead I use this (see below)

From the FAQ.TXT
Quote:
Q4: I would like to install all GSB packages. How can I do that easily?

A: You can use slapt-get to easily manage all your packages, and this includes
installing all GSB packages. Simply run:

$ slapt-get --available | awk {'print $1'} | grep "gsb$" | \
xargs slapt-get --install

Last edited by linuxs64; 01-19-2011 at 05:25 AM.
 
Old 01-19-2011, 05:39 AM   #5
rody
Member
 
Registered: Jan 2011
Location: kernel
Distribution: Slackware - Arch
Posts: 77

Original Poster
Rep: Reputation: 3
dude
the GSB is work fine Except same error in the top of topic
 
Old 01-19-2011, 07:19 AM   #6
linuxs64
Member
 
Registered: Jun 2010
Posts: 116

Rep: Reputation: 47
The method you used to install is incomplete, or rather should I say, the installation instructions are vague and does not really do what they say (problem seems to be related to the package tags). I faced the same problems (missing packages) doing net-install.

rsync a local copy and doing a full install is the way to go, unless you want to hunt every missing package and their very long list of dependencies. Try to compile/view a gsb-slackbuild from source will tell you the required dependencies.
 
Old 01-19-2011, 03:59 PM   #7
Keith Hedger
Senior Member
 
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,150

Rep: Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856
Quote:
Originally Posted by rody View Post
...

and the System Monitor give me this error when i want check the state of memory and processor

((There was an error executing 'gnome-system-monitor': Failed to execute child process "gnome-system-monitor" (No such file or directory))
...
gnome-system-monitor has to be installed separately look in gslapt for it
 
  


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
gnome on slack 13 marciobarbalho Slackware 1 03-13-2010 06:28 AM
Slack 11 and Gnome hosler Slackware 12 10-09-2006 02:55 PM
Gnome on Slack Wed Slackware 10 10-25-2005 02:09 AM
Gnome 2.8 instalation problem on Slack 10.0 - gnome-vfs mmmm Slackware 4 12-27-2004 01:25 PM
cd rom error on installation media (With both slack 9,1 and slack 10) busbarn Slackware - Installation 6 07-15-2004 03:03 PM

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

All times are GMT -5. The time now is 07: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