Sponsored Content
Special Forums Hardware How to *completely* disable laptop touchpad, without disabling trackpoint? Post 303041247 by Neo on Tuesday 19th of November 2019 10:57:37 AM
Old 11-19-2019
What happens if you attempt bind serio2 first when you (re)enable, before you attempt to (re)bind serio1 (since you have observed that when you unbind serio1, serio2 also unbinds)?
 

10 More Discussions You Might Find Interesting

1. SuSE

Touchpad not working - SuSE 8.2 - Toshiba Satellite A30

Hi all, I have a bit of an inexplicable problem.... Up until today, on my Toshiba Satellite A30 Laptop running SuSE 8.2 Professional, I had a dual mouse (USB Mouse / Touchpad) configuration in X and everything was running fine. I booted the laptop today, and for some reason unbeknownst to... (3 Replies)
Discussion started by: zazzybob
3 Replies

2. What is on Your Mind?

And now for something completely the same

In honor of the anniversary of one of the best British shows (and memoriam of Graham Chapman)... npjOSLCR2hE 9ZlBUglE6Hc (1 Reply)
Discussion started by: pludi
1 Replies

3. Shell Programming and Scripting

How to disable Enable/Disable Tab Key

Hi All, I have bash script, so what is sintax script in bash for Enable and Disable Tab Key. Thanks for your help.:( Thanks, Rico (1 Reply)
Discussion started by: carnegiex
1 Replies

4. Ubuntu

Connect 2 laptops with RJ45 cable (Ubuntu 10.10 laptop with Windows 7 laptop)

Hi to all, I have the problem that a laptops with windows XP cannot startup even in safe mode nor using last good known configuration. I have a Ubuntu 10.10 Live CD and booting from it I can read the Hard Drive. I need to do a backup the Hard Drive from XP laptop and I want to connect this... (5 Replies)
Discussion started by: cgkmal
5 Replies

5. 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

6. Red Hat

SSL/TLS renegotiation DoS -how to disable? Is it advisable to disable?

Hi all Expertise, I have following issue to solve, SSL / TLS Renegotiation DoS (low) 222.225.12.13 Ease of Exploitation Moderate Port 443/tcp Family Miscellaneous Following is the problem description:------------------ Description The remote service encrypts traffic using TLS / SSL and... (2 Replies)
Discussion started by: manalisharmabe
2 Replies

7. 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

8. Ubuntu

Laptop to laptop transfer files

Dear all, I would like to transfer my old laptop documents/files etc to the new laptop without using any external hard disk. Please let me know if its possible via any way. Thank in advance, emily (3 Replies)
Discussion started by: emily
3 Replies

9. Windows & DOS: Issues & Discussions

Disable minecraft by disabling java

my kids are on minecraft constantly. I want to restrict its use but it seems impossible since it runs on java. :eek: They are using :mad: windows 7 :mad: but I'm asking this question on here since Java is platform independent (er right?):confused: Also this forum was very helpful with my AWK... (10 Replies)
Discussion started by: cmp260
10 Replies

10. 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
SCTP_BINDX(3)						   BSD Library Functions Manual 					     SCTP_BINDX(3)

NAME
sctp_bindx -- bind or unbind an SCTP socket to a list of addresses. LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <sys/types.h> #include <sys/socket.h> #include <netinet/sctp.h> int sctp_bindx(int s, struct sockaddr *addrs, int num, int type); DESCRIPTION
The sctp_bindx() call binds or unbinds a address or a list of addresses to an SCTP endpoint. This allows a user to bind a subset of addresses. The sctp_bindx() call operates similarly to bind() but allows a list of addresses and also allows a bind or an unbind. The argu- ment s must be a valid SCTP socket descriptor. The argument addrs is a list of addresses (where the list may be only 1 in length) that the user wishes to bind or unbind to the socket. The argument type must be one of the following values. SCTP_BINDX_ADD_ADDR This value indicates that the listed address(es) need to be added to the endpoint. SCTP_BINDX_DEL_ADDR This value indicates that the listed address(es) need to be removed from the endpoint. Note that when a user adds or deletes an address to an association if the dynamic address flag net.inet.sctp.auto_asconf is enabled any asso- ciations in the endpoint will attempt to have the address(es) added dynamically to the existing association. RETURN VALUES
The call returns 0 on success and -1 upon failure. ERRORS
The sctp_bindx() function can return the following errors: [EINVAL] This value is returned if the type field is not one of the allowed values (see above). [ENOMEM] This value is returned if the number of addresses being added causes a memory allocation failure in the call. [EBADF] The argument s is not a valid descriptor. [ENOTSOCK] The argument s is not a socket. SEE ALSO
bind(2), sctp(4) BSD
December 15, 2006 BSD
All times are GMT -4. The time now is 01:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy