get touch screen driver for Dell ST222OT Monitor

 
Thread Tools Search this Thread
Special Forums Hardware get touch screen driver for Dell ST222OT Monitor
# 1  
Old 05-15-2011
get touch screen driver for Dell ST222OT Monitor

Hi

We're looking for linux touch screen module (driver) for Dell ST222OT Monitor.
BTW Has someone already tried to use this monitor under linux and the touch screen works?
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Red Hat

Driver fails to recognize monitor type ...

Hello, Please help me if you could to resolve the problem with NVIDIA driver. I have Lenovo T61p. I installed RHAT6 Open Client and then downloaded and installed NVIDIA driver version 270.41.06. The product is Quadro FX 570. My laptop display type is LVDS. After installation everything works... (1 Reply)
Discussion started by: susja
1 Replies

2. UNIX for Dummies Questions & Answers

Dell monitor blinking with the Solaris

Hi I have experienced some problems with the new monitor on my Solaris WS (Solaris5.4). Old monitor (Sony ES200) died an we installed a new one (Dell Ultrascan P780) The system booted but the monitor statrted blinking at the rate about once in 5-7 seconds. This is espetially strange that the... (0 Replies)
Discussion started by: Andrey Malishev
0 Replies

3. UNIX Desktop Questions & Answers

Dual monitor for Intel 82915G & ATI Rage 128 card on FC6, Dell Optiplex Gx520

I want to setup dual monitor for the Dell Optiplex Gx520 computer. The motherboard has an Intel Corporation 82915G Integrated Graphics Controller. Then I add an ATI Rage 128 video card. The dual monitor work on Windows 2000 with the Intel chip as the primary screen and the ATI chip... (0 Replies)
Discussion started by: TsanChung
0 Replies

4. Windows & DOS: Issues & Discussions

Gateway M285-E Touch Screen and System Restore

I have a Gateway M285-E Touch Screen Laptop where I have installed a new hdd. I have to add Sata controller driver in order for the system restore to work with the Sata hdd. I am able to perform the system restore now whenever I try and start windows XP in safe mode, normal mode or whatever mode... (0 Replies)
Discussion started by: metallica1973
0 Replies

5. What is on Your Mind?

Can you use a gps touch screen for a monitor?

I have been looking for a monitor wich i can hold in my hands comfortably and just sit back and relax with it doing my computer work on it via touch screen. Is it possible since the gps has usb to control my pc wich it? and view my desktop? If not does anyone know of a monitor that would work. Im... (3 Replies)
Discussion started by: FaoX666
3 Replies

6. Solaris

DELL LCD monitor falls asleep

after sometime and will not wake up until we reboot the system. It is a DELL 24" LCD connected to a sunblade 1500. my power.conf file is set like this: # more /etc/power.conf # Copyright (c) 1996 - 2001 by Sun Microsystems, Inc. # All rights reserved. # #pragma ident ... (0 Replies)
Discussion started by: jvmagic
0 Replies

7. HP-UX

HP CDE with ELO Touch screen

Hello all Trying to get a touch screen with the ELO Touchsystems driver to install. The display works normally as far as a regular display goes, and the mouse functions normally too. However, using the supplied setup program, it would appear the system does not recognize the device. When... (0 Replies)
Discussion started by: mdinaz
0 Replies
Login or Register to Ask a Question
TOUCH(3)								 1								  TOUCH(3)

touch - Sets access and modification time of file

SYNOPSIS
bool touch (string $filename, [int $time = time()], [int $atime]) DESCRIPTION
Attempts to set the access and modification times of the file named in the $filename parameter to the value given in $time. Note that the access time is always modified, regardless of the number of parameters. If the file does not exist, it will be created. PARAMETERS
o $filename - The name of the file being touched. o $time - The touch time. If $time is not supplied, the current system time is used. o $atime - If present, the access time of the given filename is set to the value of $atime. Otherwise, it is set to the value passed to the $time parameter. If neither are present, the current system time is used. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | It became possible to change the modification | | | time of a directory under Windows. | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 touch(3) example <?php if (touch($filename)) { echo $filename . ' modification time has been changed to present time'; } else { echo 'Sorry, could not change modification time of ' . $filename; } ?> Example #2 touch(3) using the $time parameter <?php // This is the touch time, we'll set it to one hour in the past. $time = time() - 3600; // Touch the file if (!touch('some_file.txt', $time)) { echo 'Whoops, something went wrong...'; } else { echo 'Touched file with success'; } ?> NOTES
Note Note that time resolution may differ from one file system to another. Warning Prior to PHP 5.3.0 it was not possible to change the modification time of a directory with this function under Windows. PHP Documentation Group TOUCH(3)