TimeTools T1000 syncs your PC's clock with GPS (Addict 3D)

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News TimeTools T1000 syncs your PC's clock with GPS (Addict 3D)
# 1  
Old 06-17-2007
TimeTools T1000 syncs your PC's clock with GPS (Addict 3D)

Here's a likely candidate for most unnecessary, albeit entirely geeky device of the day. TimeTools' T1000 Precision Time Server links up to your Windows, Linux, or Unix workstation in order to obtain "highly accurate time" from GPS satellites.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. AIX

GPS Clock Not Synchronised

Hi guys, I got some error on my application server mentioning that gps clock not sync to my db server. what is the command to check is my server is sync with the gps clock? appreciate if you guys can let me know how to troubleshoot this problem. Thanks (1 Reply)
Discussion started by: leecopper
1 Replies

2. Solaris

Sun T1000 performance

Hi If you had a choice of processor for a general purpose web server, either: A. T1, 8-core. (in a T1000, 8GB, 72GB SAS x 2) or B. Dual 1.6GHZ USIIIi (in a Sun Blade 2500 Silver Workstation, 4GB, 146GB SCSI) Would A be significantly better than B? Even on single-threaded tasks? I... (0 Replies)
Discussion started by: edik
0 Replies

3. Solaris

Install Solaris on a T1000

We have a Sun T1000 that was supposed to get used on another project. We don't think it has an os, and it does not have a cd/dvd drive. How do people normally install an os under such circumstances. Also, I need to get it hooked up to a console to see what happens on boot. (3 Replies)
Discussion started by: gandolf989
3 Replies
Login or Register to Ask a Question
SYMLINK(3)								 1								SYMLINK(3)

symlink - Creates a symbolic link

SYNOPSIS
bool symlink (string $target, string $link) DESCRIPTION
symlink(3) creates a symbolic link to the existing $target with the specified name $link. PARAMETERS
o $target - Target of the link. o $link - The link name. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | This function is now available on Windows plat- | | | forms (Vista, Server 2008 or greater). | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 Create a symbolic link <?php $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link); ?> NOTES
Note Windows users should note that this function will only work if the system you run PHP from is Windows Vista/Windows Server 2008 or newer. Windows versions prior to that do not support symbolic links. SEE ALSO
link(3), readlink(3), linkinfo(3). PHP Documentation Group SYMLINK(3)