Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
GentooNoob
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
blice
Guru
Guru


Joined: 12 Feb 2005
Posts: 598
Location: D- 26188

PostPosted: Sat Feb 12, 2005 11:13 pm    Post subject: GentooNoob Reply with quote

Hi,
bei meinen ersten versuchen ein system selbst zu bauen hab ich ff. probleme

1) lsmod zeigt nvidia
aber kde startet nur bei 256 farben

2) lsmod zeigt snd-via82xxx und folgetreiber (midi etc) an
wenn ich unter kde zb xmms mit output alsa nutze läuft der zwar aber ich höre nix

3) der kernel ist mit alsa (via82xx) und OHNE oss , mit fb und OHNE MTRR kompiliert (Kernel 2.6.9)

4) mein freund, der ne DSL Flat hat , hat mir seine Source files gebrannt,
diese habe ich in /usr/portage/distfiles/ kopiert
aber emerge "sieht" die nicht zb..

alsa-driver ist von der live-cd und wird gefunden (emerge -s alsa*)
alsa-utils ist von freund-cd (cp -vg /mnt/dvd/* /.../distfiles ; emerge -s alsa*) , wird aber nicht gefunden..


Wäre für ein bischen Hilfe wirklich dankbar....
mfg
Back to top
View user's profile Send private message
reyneke
Guru
Guru


Joined: 09 Jan 2004
Posts: 542
Location: Augsburg / Germany

PostPosted: Sat Feb 12, 2005 11:32 pm    Post subject: Reply with quote

Sers!
Erstmal willkommen bei Gentoo und im Forum. So, dann woll'mer mal schaun:

  1. Die Farbtiefe des X-Servers wir in /etc/X11/xorg.conf festgelegt. Da müßte es in der Section Screen einen Eintrag DefaultDepth geben. Zieh Dir am Besten nochmal die Doku zu X rein.
  2. KDE benutzt den Soundserver Artsd für den Sound-Output. Du mußt also bei xmms Unterstützung für Artsd anwählen und diesen so konfigurieren (Kontrollzentrum), daß er als benutzt. Klar soweit?
  3. emerge-Problem: Kann es sein, daß die Rechte nicht stimmen? Normal wären 644er Rechte für root\:portage, also
    Code:

    -rw-r--r-- root portage packet-foo-bar.tgz



HTH,
reyneke.
_________________
I like to wait to see how things turn out
If You Apply Some Pressure
WHAT HAPPENS when you lose EVERYTHING?
You start again.
You start all over again.

Maximo Park - Apply Some Pressure
Back to top
View user's profile Send private message
blice
Guru
Guru


Joined: 12 Feb 2005
Posts: 598
Location: D- 26188

PostPosted: Sat Feb 12, 2005 11:47 pm    Post subject: Reply with quote

1) gibt es denn bei Gentoo nicht so ein nettes programm wie XF86config oder so ? mit dem xorgcfg programm schnall ich nix..

1a) die /etc/X11/xorg.conf hab ich mir auch schon angesehen, der sagt zb (ausm kopf, weil ich sonst erst neu booten müßte)
..Device "nvidia geforce2/mx"
..driver "nvidia"
..vendor "nvidia"
load "glx"
..ram "65536"

Device "screen 0"
sub "screen"
..depth 1
sub "screen"
..depth 4
etc bis depth 24

bei kde gibts aber im Kcontrol nur Screen0 (bzw kann ich das menü nicht aufklappen)



2) kann ich denn alsa testen OHNE in KDE zu gehen? der Freund von dem ich die files habe, sagt wenn man die Alsa-Treiber (hier via82xxx) im Kernel kompiliert braucht man das "mistige" Sound-system von kde nimmer ..

3) *newbie* müßte ich als Root nicht sowieso 777 haben ? kann ich mir chmod /usr/portage/distfiles/* 644 ganze ordner einstellen ?

LG
Blice
*Jeder hat mal klein angefangen*
Back to top
View user's profile Send private message
Macumba
Tux's lil' helper
Tux's lil' helper


Joined: 13 Sep 2004
Posts: 112

PostPosted: Sun Feb 13, 2005 12:06 am    Post subject: Reply with quote

zu eins:
hab hier mal meine sachen reingeschrieben, die ich benutze
Code:
Section "Device"
    Identifier  "geforce"
    Driver      "nvidia"
    Option "NoLogo" "1"  # add this line to remove the Nvidia boot logo
                         # unsupported card
                         #VideoRam    131072
                         # Insert Clocks lines here if appropriate
    #Option      "RenderAccel" "true"
    #Option "AllowGLXWithComposite" "true"

EndSection


Code:
Section "Screen"
    Identifier  "Screen 1"
    Device      "geforce"
    Monitor     "96P"
    DefaultDepth 16

    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection


Code:


Section "Monitor"

    Identifier  "96P"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    HorizSync   31.5 - 79.0

#    HorizSync  30-64         # multisync
#    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    VertRefresh 50-90

EndSection


Zum 2.
du brauchst warscheinlich nur alsamixer zu starten, und die Lautstärke zu erhöhen

zu 3.
du musst warscheinlich den Portage-Tree updaten ---> dazu emerge sync eingeben
_________________
Code:
dd if=/dev/urandom of=/dev/speech

ogg - mp3
Back to top
View user's profile Send private message
Earthwings
Bodhisattva
Bodhisattva


Joined: 14 Apr 2003
Posts: 7753
Location: Germany

PostPosted: Sun Feb 13, 2005 12:16 am    Post subject: Reply with quote

Bitte nur ein Thema pro Thread und diese in ISO-8859-15 verfassen. Danke.
Ich würd vorschlagen, hier xorg/Farbtiefe abzuhandeln. Wenn die anderen Probleme noch nicht gelöst sind, mach doch bitte neue Threads auf.
Back to top
View user's profile Send private message
c07
Veteran
Veteran


Joined: 25 Oct 2002
Posts: 1091

PostPosted: Sun Feb 13, 2005 6:40 am    Post subject: Re: GentooNoob Reply with quote

blice wrote:
OHNE MTRR kompiliert

Gibts dafür Gründe? MTRR sollte man nach Möglichkeit schon im Kernel haben.
Back to top
View user's profile Send private message
blice
Guru
Guru


Joined: 12 Feb 2005
Posts: 598
Location: D- 26188

PostPosted: Sun Feb 13, 2005 9:37 am    Post subject: Reply with quote

In der Anleitung zur Nvidia steht, daß man das nur bei 4Gb oder mehr Ram braucht, und ich hab bei mir nur das an was ich wirklich brauche
Back to top
View user's profile Send private message
kleinerfreak
n00b
n00b


Joined: 28 Jan 2005
Posts: 33
Location: Hessen/Germany

PostPosted: Sun Feb 13, 2005 2:00 pm    Post subject: Reply with quote

Bei Gentoo gibt es xfree86config aus dem einfachen Grund nicht, das xfree gar nicht dabei ist...

Allerdings gibt es xorgconfig, was im Prinzip genau das gleiche ist...
Back to top
View user's profile Send private message
blice
Guru
Guru


Joined: 12 Feb 2005
Posts: 598
Location: D- 26188

PostPosted: Sun Feb 13, 2005 5:15 pm    Post subject: Reply with quote

Danke für eure Hilfe, :D
Kde läuft jetzt super mit der Nvidia und Alsa macht auch was er soll..

Mfg blice
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) 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