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
VMMOUSE(4) Kernel Interfaces Manual VMMOUSE(4)NAME
vmmouse - VMware Mouse input driver
SYNOPSIS
Section "InputDevice"
Identifier "idevname"
Driver "vmmouse"
...
EndSection
DESCRIPTION
vmmouse is an XFree86 input driver for mice. The driver supports most available mouse types and interfaces. USB mice are only supported
on some OSs, and the level of support for PS/2 mice depends on the OS.
The vmmouse driver functions as a pointer input device, and may be used as the X server's core pointer. Multiple mice are supported by
multiple instances of this driver.
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.
The driver will automatically detect if the vmmouse device is present and if it is not, it will load the regular mouse driver and attempt
to fall back to it. There are no vmmouse specific options, but if you set mouse(4) options, they will be passed on.
See the mouse(4) man page for details on these options.
SEE ALSO Xorg(1), xorg.conf(5), Xserver(1), X(7), mouse(4)AUTHORS
Copyright (c) 1999-2007 VMware, Inc.
X Version 11 xf86-input-vmmouse 13.0.0 VMMOUSE(4)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)