Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
A few problems. Please help
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Thu Sep 15, 2005 1:06 pm    Post subject: A few problems. Please help Reply with quote

I have a few problems I'd like to get fixed.
[SOLVED]First one:
KDE programs having trouble reading /.
Many of my apps, including amaroK, Apollon and Kstreamripper give me this message when I run them:
http://img292.imageshack.us/img292/5188/snapshot59sw.jpg

[SOLVED]Second problem: When I wanna compile KDE apps, and do ./configure, I get this error(used amaroK as an example (yes, I am aware that it's in portage)):
Code:
RazorBlade amarok-1.3.1 # ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for kde-config... not found
configure: error: The important program kde-config was not found!
Please check whether you installed KDE correctly.

RazorBlade amarok-1.3.1 #     


[SOLVED]Third: win32codecs. I installed the package, but it looks like Xine can't read them. (Yes, I have set the correct directory) I try running wmv or rm files, and it says that there is no demuxer for it.
I then went to mplayerhq and got the latest all package, and overwrote the files that emerge installed. Nothing happened. Did the same with essential.
It's not a problem with permissions because I also tried unpacking the codecs to /home/dablade/win32 and setting xine-ui to read that, but it helped as much as /dev/null does. Nothing. No other GUIs for Xine can read it either. (Kaffeine, Codeine...)

[SOLVED]Fourth: KOrganizer Alarm Daemon starts on bootup every time, even though I set it to not do that. It's annoying, because it use CPU and ram that I need for other things.

Fifth:
Streamripper says that the stream I'm trying to record isn't a shoutcast stream, but I tried loads of streams I know are shoutcast, and even from shoutcast's homepage, but it still won't read them. Neither will Kstreamripper. AmaroK plays them off just fine.


Thanks in advance for any help anyone can give.
_________________
LinuxP2P.com - The Linux File-Sharing Portal


Last edited by DaBlade on Sat Sep 17, 2005 9:50 pm; edited 2 times in total
Back to top
View user's profile Send private message
papal_authority
Veteran
Veteran


Joined: 31 Mar 2004
Posts: 1823
Location: Canada

PostPosted: Thu Sep 15, 2005 4:32 pm    Post subject: Reply with quote

FOUR:
I haven't messed with Korganizer for a few years, but it used to be that turning it off on the taskbar wasn't enough. You had to:

1] Korganizer --> Settings --> Configure KOrganizer... --> Personal
2] Uncheck the "Automatically Start Alarm Daemon on Login" box.
3] Click the "Ok" button and exit KOrganizer.
_________________
The free market gave me gonorrhea.
Back to top
View user's profile Send private message
Vortex375
Veteran
Veteran


Joined: 03 Mar 2005
Posts: 1739
Location: Deutschland

PostPosted: Thu Sep 15, 2005 5:29 pm    Post subject: Reply with quote

Second:

Make sure that "/usr/kde/3.4/bin" is in your path (replace the "3.4" with your kde version if necessary).
Code:

which kde-config
/usr/kde/3.4/bin/kde-config


Third:
Installing the package is not enough. In order to use the win32codecs with xine or mplayer you have to make sure the win32codecs useflag is set.
Do "emerge -pv xine-lib" to check the useflags.
Code:

emerge -pv xine-lib

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] media-libs/xine-lib-1.0.1-r3  +X +a52 +aac +aalib +alsa (-altivec) +arts -cle266 +directfb +dvd -dxr3 +esd -fbcon +ffmpeg +flac +gnome -i8x0 +ipv6 -libcaca +mad -mng +nls +nvidia +opengl +oss +png +samba +sdl +speex -theora -v4l +vcd -vidix +vorbis +win32codecs -xinerama +xv -xvmc 0 kB


Make sure it says +win32codecs.

By the way, why are you trying to compile amarok by hand? You should use portage wherever possible so the system knows about your installed packages and can prevent conflicts (I accidentially installed two different versions of timidity and vlc once which lead to strange problems :) ).
Back to top
View user's profile Send private message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Thu Sep 15, 2005 6:10 pm    Post subject: Reply with quote

papal_authority wrote:
FOUR:
I haven't messed with Korganizer for a few years, but it used to be that turning it off on the taskbar wasn't enough. You had to:

1] Korganizer --> Settings --> Configure KOrganizer... --> Personal
2] Uncheck the "Automatically Start Alarm Daemon on Login" box.
3] Click the "Ok" button and exit KOrganizer.

There is no box saying that. :(


Vortex375 wrote:
Second:

Make sure that "/usr/kde/3.4/bin" is in your path (replace the "3.4" with your kde version if necessary).
Code:

which kde-config
/usr/kde/3.4/bin/kde-config


Third:
Installing the package is not enough. In order to use the win32codecs with xine or mplayer you have to make sure the win32codecs useflag is set.
Do "emerge -pv xine-lib" to check the useflags.
Code:

emerge -pv xine-lib

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] media-libs/xine-lib-1.0.1-r3  +X +a52 +aac +aalib +alsa (-altivec) +arts -cle266 +directfb +dvd -dxr3 +esd -fbcon +ffmpeg +flac +gnome -i8x0 +ipv6 -libcaca +mad -mng +nls +nvidia +opengl +oss +png +samba +sdl +speex -theora -v4l +vcd -vidix +vorbis +win32codecs -xinerama +xv -xvmc 0 kB


Make sure it says +win32codecs.

By the way, why are you trying to compile amarok by hand? You should use portage wherever possible so the system knows about your installed packages and can prevent conflicts (I accidentially installed two different versions of timidity and vlc once which lead to strange problems :) ).

Second:
Code:

RazorBlade dablade # which kde-config
which: no kde-config in (/sbin:/bin:/usr/sbin:/usr/bin)
RazorBlade dablade # /usr/kde/3.4/bin/kde-config
RazorBlade dablade # which kde-config
which: no kde-config in (/sbin:/bin:/usr/sbin:/usr/bin)
RazorBlade dablade #


Third:
Doing it now.
EDIT: Done. It worked. Thanks :D


Thanks ppl. Mind helping out with the remaining problems?
_________________
LinuxP2P.com - The Linux File-Sharing Portal
Back to top
View user's profile Send private message
papal_authority
Veteran
Veteran


Joined: 31 Mar 2004
Posts: 1823
Location: Canada

PostPosted: Thu Sep 15, 2005 7:19 pm    Post subject: Reply with quote

DaBlade wrote:
papal_authority wrote:
FOUR:
I haven't messed with Korganizer for a few years, but it used to be that turning it off on the taskbar wasn't enough. You had to:

1] Korganizer --> Settings --> Configure KOrganizer... --> Personal
2] Uncheck the "Automatically Start Alarm Daemon on Login" box.
3] Click the "Ok" button and exit KOrganizer.

There is no box saying that. :(

Well it has been a couple of years. Looks like it has now been moved to the control center. Does this Alarm daemon and KOrganizer alarm client HOWTO help (it's the seventh link down)?
_________________
The free market gave me gonorrhea.
Back to top
View user's profile Send private message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Fri Sep 16, 2005 1:11 pm    Post subject: Reply with quote

That site didn't help, but it gave me the idea to disable it in the config in ~/.kde/share/config. I'll try it next time I boot and see if it worked.
Thanks anyway. :)

Anyone else for a good deed?
The remaining issues are #1 & #2.
Thanks in advance.
_________________
LinuxP2P.com - The Linux File-Sharing Portal
Back to top
View user's profile Send private message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Sat Sep 17, 2005 1:40 pm    Post subject: Reply with quote

Sorry for double-posting, but can someone please help? :oops:
_________________
LinuxP2P.com - The Linux File-Sharing Portal
Back to top
View user's profile Send private message
St. Joe
Apprentice
Apprentice


Joined: 13 Apr 2005
Posts: 242
Location: USA

PostPosted: Sat Sep 17, 2005 2:12 pm    Post subject: Reply with quote

DaBlade wrote:
The remaining issues are #1 & #2.

kde-config is provided by the kdelibs package.
The file itself is located in /usr/kde/3.4/bin/kde-config.
_________________
For every hammer there is a nail.
For every nail there is a thumb.
Back to top
View user's profile Send private message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Sat Sep 17, 2005 4:42 pm    Post subject: Reply with quote

The file doesn't exist.
And I tried recompiling kde-libs. Didn't help.. :(

RazorBlade dablade # /usr/kde/3.4/kde-config
bash: /usr/kde/3.4/kde-config: No such file or directory
RazorBlade dablade #
_________________
LinuxP2P.com - The Linux File-Sharing Portal
Back to top
View user's profile Send private message
CoolAJ86
n00b
n00b


Joined: 24 May 2004
Posts: 61
Location: Shelburne, VT

PostPosted: Sat Sep 17, 2005 5:21 pm    Post subject: Reply with quote

we did this over IRC, but I'm reitterating for documentational purposes

ONE: your permissions were wrong on /
Code:

chmod 0775 /


TWO: your PATH is incorrect

Code:

whereis kde-config
echo ${PATH}

since you don't have /usr/kde/3.4/bin in your path (or much else for that matter... (scary!) you should run

Code:

emerge gentoolkit
dispatch-conf

and make sure all the files in /etc/ are up to date (a few of these modify your PATH). Don't replace /etc/fstab or /etc/rc.conf or anything else you have edited yourself.
Code:

cp /etc/skel/.bashrc ~/
source /etc/profile
source ~/.bashrc

log out of your system completely (or reboot) and log back in.

Your PATH should be correct now.
_________________
"May the source be with you."

Laterz-
~CoolAJ86
http://CoolAJ86.Havenite.net
http://www.uvm.org/vague - LUG VT


Last edited by CoolAJ86 on Sat Sep 17, 2005 11:50 pm; edited 1 time in total
Back to top
View user's profile Send private message
DaBlade
n00b
n00b


Joined: 13 Sep 2005
Posts: 46
Location: LinuxP2P.com

PostPosted: Sat Sep 17, 2005 11:02 pm    Post subject: Reply with quote

Ok, thanks.
One more issue to go. Anyone willing to help? :)
_________________
LinuxP2P.com - The Linux File-Sharing Portal
Back to top
View user's profile Send private message
yabbadabbadont
Advocate
Advocate


Joined: 14 Mar 2003
Posts: 4791
Location: 2 exits past crazy

PostPosted: Sat Oct 08, 2005 2:56 am    Post subject: Reply with quote

Post the url of an example shoutcast stream that streamripper won't handle.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum