From feedburner.com
()
With the recent explosion of cloud computing services, developers now have more opportunities than ever to take advantage of enterprise-scale computing platforms. However, most cloud computing services, such as Amazon's Elastic Compute Cloud (EC2), have unique and incompatible APIs. This has provided a challenge for organizations wanting to develop in-house applications that can later be seamlessly deployed directly to Amazon's service when...
More perspectives...
Why I love Unix, number N (for some N)
Suppose that you want to find all two and three digit primes where all
of the component digits are also prime (eg, 37 would qualify but 41
would not, since 4 is not prime).
Here is the simple Unix approach:
factor $(seq 10 999) | awk 'NF == 2 {print $2}' | egrep '^[12357]*$'
(I won't claim that this is obvious until you're immersed
in the Unix pipe-bashing mindset, at which point it becomes
all too...
More perspectives...
From planetsysadmin.com
()
SAN FRANCISCO, Nov. 23 /PRNewswire/ -- The Open Group, a vendor- and technology-neutral consortium focused on open standards and global interoperability within and between enterprises, is commemorating the 40th anniversary of the UNIX® operating system with the launch of the UNIX License Plate World Tour photo contest and the chance to win a free laptop. As the owner of the UNIX trademark, The Open Group works closely with the IT industry to...
More perspectives...
From rss.prnewswire.com
()
I'd like to make / file system backup but the problem is there are other file systems mounted under / such as:
/mnt/cdrom
/mnt/nfs
/iscsi
/boot
/var
I'd like to skip all other file systems mounted at / and only make backup of local / and not /boot, /var, /iscsi, and /mnt/cdrom etc. How do I force tar to use a single file system under Linux / UNIX / BSD operating systems?Answer to "Linux / UNIX: tar Command Stay In Local / File System When...
More perspectives...
From cyberciti.biz
()
MXsense Solutions, Inc. : http://cts.businesswire.com/ct/CT?id=smartlink&url=http%3A%2F%2Fwww.MXsense.com&esheet=6106383&lan=en_US&anchor=MXsense+Solutions%2C+Inc.&index=1&md5=16d9a670ed6508801ccbc7fb66b663c4 today announced a new version of its MXsense Web-based email archiving solution : http://cts.businesswire.com/ct/CT?id=smartlink&url=http%3A%2F%2Fwww.mxsense.com%2Fmxsense.html&esheet=6106383&lan=en_US&anchor=email+archiving+solution...
More perspectives...
From pr-inside.com
()
We just learned that when you insert a UNIX_TIMESTAMP into MySQL that it will keep the UTC version of the timestamp, which is good. However, when you use FROM_UNIXTIME() to convert your Unix timestamp into a datetime string, ...
More perspectives...
From blogsearch.google.com
()
Wen-ming on my team worked with folks from InteropSystems on a porting dictionary to help ease the pain porting source code from Unix to Windows. They took the most frequently used Unix calls and provided a piece of sample code demonstrating the equivalent function on Windows (if it exists). Please go to http://www.interopcommunity.com/dictionary/index.php and check it out. The team will certainly appreciate your comments and feedback on...
More perspectives...
From blogs.msdn.com
()


