LinuxQuestions.org
Have you heard the LinuxQuestions.org Podcast?
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices

Tags used in this thread
Popular LQ Tags , , , , , ,

Reply
 
Thread Tools
Old 09-15-2009, 08:29 AM   #76
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 2,866
Thanked: 228

[Log in to get rid of this advertisement]
Quote:
Originally Posted by brianL View Post
Thanks, Eric, for the quick reply.
When I went multilib I used the -9alien compat32-tools to convert packages from my 12.2 DVD. I just wondered whether these would still be OK.
It would be better to use the "11alien" package and re-create those "-compat32" packages (or download them again from my website if you do not have a local 32-bit Slackware package tree).
I've made some changes to the "convertpkg-compat32" script - which does the actual conversion - and the resulting packages are cleaner.

It's not required though, as long as you re-installed Slackware's original hal/dbus/mysql packages and upgraded to the latest version of my compat32-tools package.

Eric
linuxslackware Alien Bob is offline     Reply With Quote
Old 09-15-2009, 08:37 AM   #77
brianL
Senior Member
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Laptop: Slackware 13.0 // Desktop: ; Slackware64 13.0; Debian "lenny"
Posts: 2,920
Blog Entries: 20
Thanked: 128
Quote:
Originally Posted by Alien Bob View Post
It's not required though, as long as you re-installed Slackware's original hal/dbus/mysql packages and upgraded to the latest version of my compat32-tools package.

Eric
Yes, I've done that.

Quote:
Originally Posted by Alien Bob View Post
It would be better to use the "11alien" package and re-create those "-compat32" packages (or download them again from my website if you do not have a local 32-bit Slackware package tree).
I've made some changes to the "convertpkg-compat32" script - which does the actual conversion - and the resulting packages are cleaner.
Right, I'll do that if any problems crop up.
Thanks again.
linuxslackware brianL is offline     Reply With Quote
Old 10-03-2009, 01:18 PM   #78
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,

I've been working with problems of my own with 'KDE 4.2' an stumbled on this thread to solve issues with a laptop.

For users that need to use their touchpad with 'synaptics' vertical scroll and double-tap you can look at 'synaptics touchpad settings in xorg.conf not persisting upon reboot' thread. Hope this aids you in setting things up properly. One thing, you don't have to unload/reload the mouse driver. Just exit your 'X' session then restart a session.

Quote:
Originally Posted by vinegaroon View Post
In Slackware 13.0 this type of configuration has changed.
You most likely do not need any xorg.conf file.
Input stuff is now handled by hal, to edit these settings first copy over /usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi to /etc/hal/fdi/policy
Then take a look at that file, it's fairly obvious if you follow the examples.
Don't make the same mistake as the OP with mistaking the <!-- and --> text comment tags (Red in sample);

Code:
sample '/etc/hal/fdi/policy';

<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<merge key="input.x11_driver" type="string">synaptics</merge>
<!-- Arbitrary options can be passed to the driver using
the input.x11_options property since xorg-server-1.5. -->
<!-- EXAMPLES:
Switch on shared memory, enables the driver to be configured at runtime
<merge key="input.x11_options.SHMConfig" type="string">true</merge>

Maximum movement of the finger for detecting a tap
<merge key="input.x11_options.MaxTapMove" type="string">2000</merge>

Enable vertical scrolling when dragging along the right edge
<merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>

Enable vertical scrolling when dragging with two fingers anywhere on the touchpad
<merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>

Enable horizontal scrolling when dragging with two fingers anywhere on the touchpad
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge>

Enable left click
<merge key="input.x11_options.TapButton1" type="string">1</merge>

If on, circular scrolling is used
<merge key="input.x11_options.CircularScrolling" type="string">true</merge>

For other possible options, check CONFIGURATION DETAILS in synaptics man page
-->
<merge key="input.x11_options.SHMConfig" type="string">true</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">true</merge> <merge key="input.x11_options.HorizEdgeScroll" type="string">true</merge>
</match>
</device>
</deviceinfo>
Quote:
excerpt 'man synaptics';
NOTES

There is an example hal policy file in ${sourcecode}/fdi/11-x11-synap-
tics.fdi which will enable the driver based on the information if the
hardware is available. Feel free to copy it to /etc/hal/fdi/policy and
customize it to your needs. You can pass custom options to the driver
using x11_options properties. Note that this requires xorg-server-1.5
or higher.
Look at the 'man synaptics' for detailed information.

Last edited by onebuck; 10-03-2009 at 03:26 PM.. Reason: corrections
linuxslackware onebuck is offline     Reply With Quote
Old 10-10-2009, 10:58 AM   #79
jedi_sith_fears
Member
 
Registered: Jan 2008
Location: Kolkata
Distribution: Slackware64-current, Slackware 13.0,12.2, Debian 5.02, RHEL 5.3
Posts: 116
Blog Entries: 1
Thanked: 27
I use the xorg.conf to load alternative Xorg driver for Intel Mobile G45 chipset and synaptics touchpad. Seems to run without any problem.
linuxslackware jedi_sith_fears is offline     Reply With Quote
Old 10-11-2009, 03:08 PM   #80
kapz
Member
 
Registered: Mar 2009
Posts: 74
Thanked: 0
Thanks for providing the links in Signature

But u gotta update the Linux Newbie Admin one.
linux kapz is offline     Reply With Quote
Old 10-11-2009, 07:52 PM   #81
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,
Quote:
Originally Posted by kapz View Post
Thanks for providing the links in Signature

But u gotta update the Linux Newbie Admin one.
I thought that it had been corrected. It is now updated to a new site.
linuxslackware onebuck is offline     Reply With Quote
Old 10-17-2009, 03:12 PM   #82
S1NN3R
LQ Newbie
 
Registered: Oct 2009
Posts: 26
Thanked: 0
is there an install guide out for the new ver 13?
windows_xp_2003 S1NN3R is offline     Reply With Quote
Old 10-17-2009, 05:59 PM   #83
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,

Welcome to LQ!

I really haven't looked lately. The 'SlackwareŽ Essentials' book was due out mid 2009 but then pushed back to late 2009. The installation is basically the same. Take a look at the above link then if you have any problems you can always post back here or create a new thread within the Slackware forums.

The next 'SlackwareŽ Essentials' should be out soon. If your interested in listening to Alan Hicks interview.

Just a few links to aid you;

SlackwareŽ Essentials
SlackwareŽ Basics
Linux Documentation Project
Rute Tutorial & Exposition
Linux Command Guide
Utimate Linux Newbie Guide
LinuxSelfHelp
Getting Started with Linux
Advanced Bash-Scripting Guide

These links and others can be found at 'Slackware-Links'. More than just SlackwareŽ links!
linuxslackware onebuck is offline     Reply With Quote
Old 10-17-2009, 06:24 PM   #84
catkin
Senior Member
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Slackware 13.0
Posts: 1,838
Blog Entries: 6
Thanked: 226
Quote:
Originally Posted by S1NN3R View Post
is there an install guide out for the new ver 13?
The HOWTO?
linux catkin is offline     Reply With Quote
Old 10-18-2009, 02:11 PM   #85
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,

Yes, the Slackware-HOWTO is a good basic guide. I thought the poster would get a little more from the book.
linuxslackware onebuck is offline     Reply With Quote
Old 10-28-2009, 11:29 PM   #86
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,

It's been raining and raining ....

So a new LQ 'Wiki'; 'SlackwareŽ LQ Announcements/Additions/Fixes/HotList For Linux Slackers!' for Slacker's has been created. This wiki will be a central point for 'SlackwareŽ Unofficial Announcement Repository'.

I need to 'Thank' cwizardone for his post, which got the old thoughts back out front for this issue of trailing the need to document some of the things that just don't appear or jump out at you. That is unless you happen to read a lot here on the Slackware LQ forum or just a doc addict.

I know that to spend time to weed through to find the jewel which will afford that special repair can become frustrating.

pwc101 and I have been working on this new wiki for a short while. As a wiki goes there's always room to improve and with this one we are still shaking things out. So please be patient as we work out some of the kinks.

I created another wiki page 'Slackware-Cellar' to avail the sharing of Slackware Test Beds/Benches/Experimental System Setups.

I'm sure someone is bound to say; 'What's the damn purpose?'.

As I said above it's a place to share your custom setups. I'm hoping that both will come to the aid of the Slackware community.

linuxslackware onebuck is offline     Reply With Quote
Old 10-30-2009, 06:20 PM   #87
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Hi,

I want too introduce a new member and the recent post by Josh; 'Slackware 13 - The Odyssey'. The writer is a newbie to Slackware Linux and wishes to share his experiences by writing a good thread about his introduction.

I wish to encourage Josh (aka jpcrow) to continue with the excellent writing style and the sharing of his experiences. To other members, if you haven't read the Thread then I suggest that you look it over.

To the newbie members, it's a great read!

linuxslackware onebuck is offline     Reply With Quote
Old 11-15-2009, 02:06 PM   #88
onebuck
Guru
 
Registered: Jan 2005
Location: Midwest USA, Central Illinois
Distribution: SlackwareŽ
Posts: 5,437
Blog Entries: 1
Thanked: 202

Original Poster
Radeon KMS_post

Hi,

If you happen to have a 'ATI' graphics then you may find 'Radeon kms works!' a good reference and a possible solution to your problems with older cards.

You should be aware that not all users will be able to get those older 'ATI' units functional by using 'kms' but it's worth a try.

I'm still working on a laptop with issues. I have too get back on this just to get it off my mind.

The weather here has allowed or should I say availed me time away from my farm duties so I should get things resolved. Soon, I hope!



EDIT: Look at posts #13 & #16.

Last edited by onebuck; 11-19-2009 at 11:41 AM.. Reason: Update
linuxslackware onebuck is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

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
Another slacker! :) multios Slackware 37 01-30-2008 07:22 PM
Another Slacker... :) TtuEd LinuxQuestions.org Member Intro 1 09-03-2007 03:41 PM
Greetings from a slacker Bread LinuxQuestions.org Member Intro 1 01-19-2006 07:53 PM
I'm a new Slacker olias Slackware 13 11-03-2003 03:58 PM
I'm a slacker in need Tekime Slackware 2 07-30-2002 02:33 PM


All times are GMT -5. The time now is 04:24 PM.

Main Menu
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
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration