Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Gentoo on lattitude LS
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
Boston
n00b
n00b


Joined: 16 Jun 2007
Posts: 13
Location: Ireland

PostPosted: Sun Jun 17, 2007 9:00 am    Post subject: Gentoo on lattitude LS Reply with quote

Hello I'm trying to install Gentoo on a latitude LS for the purposes of a torrent box. For starters I don't really know what I'm doing. I'm trying to get X working(so the install went ok) and I had to edit a config file to select my display time, however the video hardware seems to be generic so I don't know what to do. I type start X and i get some over sized and ugly consoles. I don't even know if I have a problem I just want to know how to make it usable.


Important Hardware

Cpu : Pentium III 500 MHz

Ram : 128 MB

Hard Drive : IBM

Display : 12.1" Active Matrix (800x600x24 max)

Video : 2.5 MB NeoMagic256

Audio : 2.5 MB NeoMagic256

Network : Built-in 3Com 3c905C 10/100 and Lucent winmodem
[/gwn]
Back to top
View user's profile Send private message
Seron
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 293
Location: Malmö, Sweden

PostPosted: Sun Jun 17, 2007 9:04 pm    Post subject: Reply with quote

I have a Dell Latitude LS (model PP01S) very similar to yours running Gentoo as a home server. To enable the touchpad and video driver I have these lines in /etc/make.conf
Code:
INPUT_DEVICES="keyboard mouse synaptics"
VIDEO_CARDS="neomagic"
and I use fluxbox as window manager.

If you could be more specific about what you need I could give more detailed information about my configuration.

I found Linux on Laptops to be useful for finding other users' experiences with linux on specific laptop.
_________________
man cannot be brave without being afraid
Back to top
View user's profile Send private message
Boston
n00b
n00b


Joined: 16 Jun 2007
Posts: 13
Location: Ireland

PostPosted: Sun Jun 17, 2007 10:50 pm    Post subject: Reply with quote

basically I had to default Xorg.conf file in use, tried to change a few display settings and it stopped running. If you could post up a copy of your Xorg.conf file that would be great. Can I just copy this? http://www.divisionbyzero.com/laptop/XF86Config.txt?


I installed flux box as my default environment/gui as well, so I'll probably have a few questions once I start messing about with configuring it.

What I want to do
Set up an secure ssh server so I can access files on my home network remotely
Set up a remote network month point, for my Nas
Set up a Bit torrent Client
Finally any Firewall applications needed

Thanks for the link and code
Back to top
View user's profile Send private message
Seron
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 293
Location: Malmö, Sweden

PostPosted: Tue Jun 19, 2007 6:20 am    Post subject: Reply with quote

You could try it but it seems it is before X.org's time. It might still work but the config file in xorg is called xorg.conf. I would suggest that you follow the gentoo documentation for setting up X. Here's my xorg.conf:
Code:
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
        Load  "glx"
        Load  "extmod"
        Load  "xtrap"
        Load  "record"
        Load  "dbe"
        Load  "dri"
        Load  "freetype"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier      "Keyboard0"
        Driver          "kbd"
        Option          "XkbLayout"     "se"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "neomagic"
        VendorName  "Neomagic Corporation"
        BoardName   "NM2200 [MagicGraph 256AV]"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

To set up sshd is very easy. The HOWTO setup a home-server wiki provides info about it and many other things. I would suggest that you read Gentoo Linux Keychain Guide for simplified usage of ssh, or OpenSSH key management at IBM developerWorks which I found useful many times.

For a network mount there's the HOWTO Share Directories via NFS wiki and further info here.

For the rest I suggest you search the gentoo documentation and wiki as well as this forum.
_________________
man cannot be brave without being afraid
Back to top
View user's profile Send private message
Boston
n00b
n00b


Joined: 16 Jun 2007
Posts: 13
Location: Ireland

PostPosted: Tue Jun 19, 2007 9:01 am    Post subject: Reply with quote

Thank you. I will try it out and let you know how I got on. I had read the configuration guide, the problem was with trying to find out what I should enter. I read too much rather then too little and ended up putting alot of conflicting stuff in the config file. I notice you haven't specified the resolution in your conf file, or am i missing soemthing?

Thanks again
Back to top
View user's profile Send private message
Seron
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 293
Location: Malmö, Sweden

PostPosted: Tue Jun 19, 2007 9:18 am    Post subject: Reply with quote

I noticed that too now that you mentioned it. It still works at native resolution 800x600. I think I used the command
Code:
Xorg -configure
to configure X, but I don't know what I selected if anything at all.
_________________
man cannot be brave without being afraid
Back to top
View user's profile Send private message
Boston
n00b
n00b


Joined: 16 Jun 2007
Posts: 13
Location: Ireland

PostPosted: Tue Jun 19, 2007 10:32 am    Post subject: Reply with quote

can you not get a higher res then that? 1024 * 764 ? I'm unsure what I had in windows, but other sites seem to indicate you can. If you can't, they may be anotehr reason I failed to get Xorg working as i was trying for that res.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo 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