LinuxQuestions.org
Help answer threads with 0 replies.
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 06-29-2004, 07:49 PM   #16
shilo
Senior Member
 
Registered: Nov 2002
Location: Stockton, CA
Distribution: Slackware 11 - kernel 2.6.19.1 - Dropline Gnome 2.16.2
Posts: 1,132

Rep: Reputation: 50

which version of slackware are you using? I'm assuming that you are either running Slackware 10 or have upgraded your X server to xorg via Dropline or something. You'll need to use the command
Code:
xorgconfig
instead of
Code:
xf86config
Slackware no longer uses the XFree86 x server. It now uses the xorg x server. I'm guessing that this is one of the commands that you are having trouble with, as you said ANY of the commands. Haven't had too many issues with xwmconfig, vi, vim, vimtutor, etc.
 
Old 06-29-2004, 08:04 PM   #17
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
I am running slack 10

and xorgconfig

give same results?!?!??!!

 
Old 06-29-2004, 08:15 PM   #18
shilo
Senior Member
 
Registered: Nov 2002
Location: Stockton, CA
Distribution: Slackware 11 - kernel 2.6.19.1 - Dropline Gnome 2.16.2
Posts: 1,132

Rep: Reputation: 50
Try

Code:
/usr/X11R6/bin/xorgconfig
If that works, you have a problem with your PATH. Some other possible commands to try are:

Code:
xorgsetup
and

Code:
xorgcfg
You might even try:

Code:
cd /usr/X11R6/bin
ls
This will show you a bunch of helpful commands that are available to you.
 
Old 06-29-2004, 10:34 PM   #19
jsmarshall85
Member
 
Registered: Aug 2003
Posts: 386

Rep: Reputation: 30
wasabi, i was having the same problem. i rebooted and logged in as root and it worked then. not sure why it didnt work when i did a su to get root permissions

hope that helped
 
Old 06-30-2004, 08:32 AM   #20
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
ok thanks for all your help guys (and gals if there are any)

My next question is about customizing my installation. I am going to use K so I dont plan on installing gnome. Do I need to install X and X window applications, or can I just ride with KDE.

THanks again guys
 
Old 06-30-2004, 08:52 AM   #21
rotvogel
Member
 
Registered: Oct 2003
Posts: 534

Rep: Reputation: 30
You will need X, xap can be handy, but is not necessary . But then you will miss things like The GIMP, Mozilla etc.
 
Old 06-30-2004, 10:43 AM   #22
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
ok cool thanks working on it now
 
Old 06-30-2004, 11:34 AM   #23
lyceum
Member
 
Registered: Aug 2003
Location: N.C.
Distribution: rh9, fc1, slack 9.1, 10
Posts: 229

Rep: Reputation: 30
for future reference, if you log in as a normal user and type
Code:
su
to get to root, you don't actually load root's environment variables, and as such, you are acting as root, but you have your other user's PATH. to initialize root's profile, use
Code:
su -
instead. this will give you access to all those commands without having to give the full path name.

hope this helps.
 
Old 06-30-2004, 11:43 AM   #24
lyceum
Member
 
Registered: Aug 2003
Location: N.C.
Distribution: rh9, fc1, slack 9.1, 10
Posts: 229

Rep: Reputation: 30
another suggestion (that also appears in shilo's nice howto) is to use slocate for some quick and easy searching. to set up the slocate database, enter the command (as root):
Code:
updatedb
when this is finished you can find that_cool_command_or_file by just typing:
Code:
locate that_cool_command_or_file
you can do this as a normal user and it is very fast compared to using the find command (which you need root access to if you start it at /). one thing to note though, as it uses this database for your search, whenever you have added files to your system they won't be found by using the locate command until you
Code:
updatedb
again.

hope this helps.
 
Old 06-30-2004, 01:40 PM   #25
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
The slackware community has by far been the most helpful out of any distibution I have tried. Everything is working great for the most part and I am enjoying slackware.

I do have a problem that has persisted however

For some reason when I startx and KDE launches, I can only choose 640x480 and smaller. I am trying to reconfigure xorg.conf, unless anyone else has any great ideas.

thanks
 
Old 06-30-2004, 01:49 PM   #26
lyceum
Member
 
Registered: Aug 2003
Location: N.C.
Distribution: rh9, fc1, slack 9.1, 10
Posts: 229

Rep: Reputation: 30
in /etc/X11/xorg.conf you will find (if you scroll down quite a bit) a subsection called Modes. after this will be entries for each depth level and then something like

Code:
"1024x768" "800x600"
etc. etc. etc.

the first one in that list from left to right is the one that X tries first. if you would like for instance to have 1400x1050 AND IF AND ONLY IF YOUR MONITOR SUPPORTS THIS SETTING then you would just add it to that list and make it first, like:

Code:
"1400x1050" "1024x768" "800x600"
then you would have to restart X to have your changes take effect.

NOTE: always back up xorg.conf before you change it, as this can make your system completely unusable. also, i always boot into run level 3, then startx to get into X. this way, if i screw things up, i can still get in and make changes.

hope this helps.

Last edited by lyceum; 06-30-2004 at 01:51 PM.
 
Old 06-30-2004, 01:52 PM   #27
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by lyceum
hope this helps.
it did
 
Old 07-01-2004, 06:55 AM   #28
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
Ok guys I have a few more questions.

1. I have no internet on that pc. Every other linux distro I have ever tried just worked off the bat. Any tips on configuring the internet?

2. I am still having trouble getting my res to 1600 x 1200. So far I am up to 1280 x 1024, but thats just not enough. =) Would it change things if I installed the latest Nvidia drivers, I mean, I have a pretty nice card (fx5200)

3. When I create a new user for myself, what permissions should I give? Should I just join a group? by the way I am doing this through kuser unless someone has a better plan.

Thanks again
 
Old 07-01-2004, 07:01 AM   #29
wasabi
Member
 
Registered: Aug 2003
Location: Charlotte, NC
Distribution: Fedora Core 3?
Posts: 95

Original Poster
Rep: Reputation: 15
oh and slackware installed SO many things that I don't want, is there an add or remove programs app?
 
Old 07-01-2004, 07:07 AM   #30
oneandoneis2
Senior Member
 
Registered: Nov 2003
Location: London, England
Distribution: Ubuntu
Posts: 1,460

Rep: Reputation: 48
1. What are you using to connect with?

2. It might, but shouldn't be necessary. Does it have that resolution listed in your xorg config file..?

3. The defaults always work for me. I forget if it's adduser or useradd that calls up a nice script that does it all for you..

4. Yes, pkgtool. Or removepkg, if you know the name.
 
  


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
Slackware installation sparky853 Slackware 5 02-22-2004 02:42 PM
slackware installation, or package installation?? mipia Slackware - Installation 1 12-15-2003 06:54 PM
Slackware 9.0 Installation bige Slackware 8 05-02-2003 06:11 AM
slackware installation knueven7 Linux - Software 2 04-04-2003 09:32 AM
Slackware Installation Ed-Slack Slackware 6 12-16-2002 04:51 AM

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

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