Sponsored Content
Operating Systems Linux SuSE Touchpad not working - SuSE 8.2 - Toshiba Satellite A30 Post 55600 by RTM on Wednesday 15th of September 2004 12:35:26 PM
Old 09-15-2004
Zazzy,

If you are going to send it out the window, let me know when and where - I'll catch it before it hits the ground and have a new laptop!


Don't know if this will help or not but my touchpad kept interfering with my work - and I could not find where to turn it off - finally got some help from a co-worker - there is a BIOS setting for pointing device that needed to be changed - of course, this was on a DELL so I'm not postive if it will help or not. Worth checking out. If not, then I'll be hanging around your window!
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Toshiba laptop

I am trying to install mandrake 8.0 on my Satellite Pro 4600. I have got it installed but I am having problems with X windows. The laptop has a trident cyber blade video card I have it set to 1024x768 resolution Basically everytime I start x it appears in the upper right to middle of the screen... (6 Replies)
Discussion started by: gennaro
6 Replies

2. UNIX for Advanced & Expert Users

SUSE 9 and 10 NIS clients with RedHat 8.0 NIS server not working

We have a RedHat 8.0 NIS master, with a RedHat 8.0 NIS Slave. We also have a small number of SUSE 9.1 and SUSE 10 machines here for evaluation. However, no matter what i do, the SUSE machines will not talk to the NIS Servers. If i broadcast for NIS Servers for the specified NIS domain, it... (1 Reply)
Discussion started by: fishsponge
1 Replies

3. Red Hat

Fedora 14 touchpad issu for login screen

I installed fedora 14 to my old laptop and everything looks fine. But my synapticad touchpad adjustments are not valid for login screen. How can we make mouse settings that will be valid for login screen also. (after login my settings overrides) thanx in advance.. (0 Replies)
Discussion started by: titanic
0 Replies

4. UNIX for Advanced & Expert Users

DHCP lease under SuSE is not working. Why?

Hi, I got a strange issue here: We are using ISC DHCP v4 which is default in Open SuSE 11.4. These two options 'default-lease-time' and 'max-lease-time' are set in all subnets, with values between 43200 (12 hours) to 518400 (144 hours). See partial dhcpd.conf below please. Now the lease time... (0 Replies)
Discussion started by: aixlover
0 Replies

5. IP Networking

DHCP lease under SuSE is not working., limited at 10 minutes

Hi, I got a strange issue here: We are using ISC DHCP v4 which is default in Open SuSE 11.4. These two options 'default-lease-time' and 'max-lease-time' are set in all subnets, with values between 43200 (12 hours) to 518400 (144 hours). See partial dhcpd.conf below please. Now the lease... (5 Replies)
Discussion started by: aixlover
5 Replies

6. UNIX for Advanced & Expert Users

touchpad not using 10-synaptics.conf

My touchpad is not using my /etc/X11/xorg.conf.d/10-synaptics.conf. I used this to verify my file is being read. $ synclient -l Parameter settings: LeftEdge = 153 RightEdge = 870 TopEdge = 115 BottomEdge = 652 ... (0 Replies)
Discussion started by: cokedude
0 Replies

7. Red Hat

Corresponding Spacewalk/Satellite versions?

Can anyone point me towards a list that shows which Satellite versions roughly align with which Spacewalk versions, in terms of functionality? Thanks in advance, Akbar. (2 Replies)
Discussion started by: akbar
2 Replies

8. Linux

How to use touchpad in Mint 18.3 Sylvia?

0 down vote favorite I'm using Mint 18.3 Sylvia in my Acer Aspire F 15 F5-573G-77ZP. I have problem in using touchpad, this is when I enable touchpad in Mouse and Touchpad options, I can't move the cursor of touchpad. I mean wherever I touch on the touchpad, it acts as a left click. No moving.... (1 Reply)
Discussion started by: Innnnna
1 Replies

9. Hardware

How to *completely* disable laptop touchpad, without disabling trackpoint?

I run Devuan ASCII on my T400 laptop. I only use the trackpoint ("nipple mouse"). To me, the touchpad is just a nuisance. I've discovered (by monitoring output of sudo cat /dev/input/event5) that the touchpad generates random input while the lid is closed. This causes applications that should... (5 Replies)
Discussion started by: DevuanFan
5 Replies
curs_bkgrnd(3)						     Library Functions Manual						    curs_bkgrnd(3)

NAME
curs_bkgrnd, bkgrnd, wbkgrnd, bkgrndset, wbkgrndset, getbkgrnd, wgetbkgrnd - Set or get background character and rendition by using a com- plex character SYNOPSIS
#include <curses.h> int bkgrnd( const cchar_t *wch ); int wbkgrnd( WINDOW *win, const cchar_t *wch ); void bkgrndset( const cchar_t *wch ); void wbkgrndset( WINDOW *win, const cchar_t *wch ); int getbkgrnd( cchar_t *wch ); int wgetbkgrnd( WINDOW *win, cchar_t *wch ); LIBRARY
Curses Library (libcurses) STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: bkgrnd, wbkgrnd, bkgrndset, wbkgrndset, getbkgrnd, wgetbkgrnd: XCURSES4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
By using the information in wch, the bkgrndset and wbkgrndset functions set the background rendition and manipulate the window rendition of the current or specified window. These functions turn off the previous background attributes from the current window rendition and add the new background rendition from wch into the window rendition. The bkgrnd and wbkgrnd functions set the background rendition and manipulate the window rendition of the current or specified window. These functions turn off the previous background attributes from the current window rendition and add the new background rendition from wch into the window rendition. They then apply this setting to every character position in that window as follows: The rendition of every character on the screen is changed to the new window rendition. Wherever the former background character appears, it is changed to the new back- ground character. If wch refers to a nonspacing complex character for bkgrnd, bkgrndset, wbkgrnd, or wbkgrndset, then wch is added to the existing spacing complex character that is the background character. If wch refers to a multicolumn character, the results are unspecified. The getbkgrnd and wgetbkgrnd functions store into the area pointed to by wch the value of the window's background character and rendition. NOTES
The header file <curses.h> automatically includes the header file <stdio.h>. Note that bkgrnd, bkgrndset, and getbkgrnd may be macros. RETURN VALUES
The bkgrndset and wbkgrndset functions do not return a value. Upon successful completion, the other functions return OK. Otherwise, they return ERR. SEE ALSO
Functions: curses(3), curs_bkgd(3) Others: standards(5) curs_bkgrnd(3)
All times are GMT -4. The time now is 03:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy