Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

void(4) [centos man page]

VOID(4) 						     Kernel Interfaces Manual							   VOID(4)

NAME
void - null input driver SYNOPSIS
Section "InputDevice" Identifier "idevname" Driver "void" ... EndSection DESCRIPTION
void is an dummy/null Xorg input driver. It doesn't connect to any physical device, and it never delivers any events. It functions as both a pointer and keyboard device, and may be used as X server's core pointer and/or core keyboard. It's purpose is to allow X servers pre version 1.4 to operate without a core pointer and/or core keyboard. CONFIGURATION DETAILS
Please refer to xorg.conf(5) for general configuration details and for options that can be used with all input drivers. This driver doesn't have any configuration options in addition to those. SEE ALSO
Xorg(1), xorg.conf(5), Xserver(1), X(7). X Version 11 xf86-input-void 1.4.0 VOID(4)

Check Out this Related Man Page

MUTOUCH(4)						     Kernel Interfaces Manual							MUTOUCH(4)

NAME
mutouch - Microtouch input driver SYNOPSIS
Section "InputDevice" Identifier "idevname" Driver "mutouch" Option "Device" "devpath" ... EndSection DESCRIPTION
mutouch is an Xorg input driver for Microtouch devices... The mutouch driver functions as a pointer input device, and may be used as the X server's core pointer. THIS MAN PAGE NEEDS TO BE FILLED IN. SUPPORTED HARDWARE
What is supported... CONFIGURATION DETAILS
Please refer to xorg.conf(5) for general configuration details and for options that can be used with all input drivers. This section only covers configuration details specific to this driver. Config details... SEE ALSO
Xorg(1), xorg.conf(5), Xserver(1), X(7). AUTHORS
Authors include... Patrick Lecoanet X Version 11 xf86-input-mutouch 1.3.0 MUTOUCH(4)
Man Page

14 More Discussions You Might Find Interesting

1. Ubuntu

Avoid creating temporary files on editing a file in Ubuntu

Hi, My ubuntu flavor always create temporary files having filename followed by ~ on editing. For eg: if I am editing a file called "sip.c", automatically a temporary (bkup) file is getting created with the name "sip.c~". How to avoid this file creation? (7 Replies)
Discussion started by: royalibrahim
7 Replies

2. Shell Programming and Scripting

in ftp how to avoid username/password

hi all i am very new to unix. we had the below scenior test.bat file which contains ftp -s:logfiles.scr servername logfiles.scr contains username password cd path get file bye We had n number of batch(.bat files). which is having the same kind of scr file pointing... (10 Replies)
Discussion started by: nh1
10 Replies

3. Programming

how to avoid the segfault from Address 0x1cd00000103 out of bounds

After allocating memory for some variables, segfault is often to happen, due to the same reason: Address 0x1cd00000103 out of bounds It is welcome to recommend some treatments. Thanks e.g. is_done = 0x1cd00000103 <Address 0x1cd00000103 out of bounds>, hood = 0x23c00000247, c =... (11 Replies)
Discussion started by: cdbug
11 Replies

4. Shell Programming and Scripting

How to avoid duplication within 2 files?

Hi all, Actually 2 files are there - file1, file2. file1 contains ---> london mosco america russia mosco file2 contains --> europe india japan mosco england london Question is I want to print all the city names without duplication cities in those... (10 Replies)
Discussion started by: balan_mca
10 Replies

5. Shell Programming and Scripting

how to avoid 'unexpected operator' error when comparing 2 strings

this is my file: #!/bin/sh a=`cat /home/$USER/Desktop/lol` c=`cat /home/$USER/Desktop/lol1` if ; then echo "$a = $c" else echo "They are not equal" fi The lol file contains 1aa and the lol1 file contains 1aa as well. Unfortunately the output is Even when I put -eq instead of == I get ... (9 Replies)
Discussion started by: hakermania
9 Replies

6. Solaris

Any specific time to reboot the sun server to avoid unplanned outage ??

Hi, Would like to know the uptime or specific time limit to reboot the sun microsystem to avoid unplanned outage. Regards,Tarun (9 Replies)
Discussion started by: taruntan
9 Replies

7. Shell Programming and Scripting

Avoiding 'sh -c' when running ps from CRON

Hi, I have a script which has the below line: ps -ef | grep ${SCRIPT_NAME} | grep ksh | grep -v grep >> /tmp/instance.tmp When the script is invoked through CRON, I get 2 lines in instance.tmp when actually only one instance is running: cdrd 17790 17789 0 15:14:01 ? 0:00 /bin/ksh... (8 Replies)
Discussion started by: cavallino4u
8 Replies

8. Programming

void pointer

hi guys! Is there such a thing as double void pointer dynamic allocation? And if so is it something like this? int n; void** a; a=malloc(n*sizeof(void*)); (12 Replies)
Discussion started by: vlm
12 Replies

9. Shell Programming and Scripting

How to avoid Delimiter occuring in column values in .csv file

Hello Gurus, I need to create a file from a .csv file extracting specific columns only. File structure is Column1,Column2,Column3,Column4 abcd,1234,"asdf, tew,123",123456 efgh,234,asdf,654321 My output file should have abcd,123456 efgh,654321 Can you pls help me with the code. ... (10 Replies)
Discussion started by: ritesh.bhawsar
10 Replies

10. Shell Programming and Scripting

Avoiding file overwrite during file transfer using scp

Hi, I have written a small script to transfer a file from one unix server to other using scp command which is working fine. As I know with scp, if any file with the same name is already present on destination server, it would get overwritten without any notification to user. Could anyone help me... (14 Replies)
Discussion started by: dsa
14 Replies

11. Shell Programming and Scripting

flags to avoid restart

hello all, i have the below script that we used to backup our DB using oracle's utility called RMAN. This has been working fine, but the issue is when the backup fails and we re-start it, it backups the whole thing again. Example. lets say i have 5 database on my system(db1,db2,db3,db4,db5)... (11 Replies)
Discussion started by: crazy_max
11 Replies

12. Shell Programming and Scripting

How to avoid TAR of directory with no permissions?

Hi Users, i have a situation as below; -rw-r--r-- 1 t1elkpe cmptl 0 Mar 18 12:00 file2 ---------- 1 t1elkpe cmptl 0 Mar 14 16:07 file1 d--------- 3 t1elkpe cmptl 3 Mar 18 11:23 fd now when i am tarting the above files below is what i get as... (10 Replies)
Discussion started by: rajangupta2387
10 Replies

13. Shell Programming and Scripting

Avoiding some files inside a loop

In my script I need to loop around some files like below example files are fa.info.abcd fa.info.bxde fa.info.cdas ------ for test_data in fa.info.* do # Some text appending logic applied # Copy to another directory done Now I need to discard some files while looping around ... (9 Replies)
Discussion started by: smile689
9 Replies

14. Programming

Parameter passing to function with void * as Argument

Earlier I had one structure C typedef struct c { int cc; }CS; I used to call a library function say int GetData(CS *x) which was returning me the above structure C with data. GetData(CS *x) Function call used to be like: CS CSobj; GetData(&CSObj); Now there are two... (12 Replies)
Discussion started by: rupeshkp728
12 Replies