View Single Post
  #8   (View Single Post)  
Old 14th October 2009
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

To be fair regarding the VPN tech -- it is not PPTP which is at fault, it is Microsoft's implementation. But, since Windows platforms are the overwhelming majority of PPTP users, such VPNs are prejudged to be insecure.

If uptime is critical, just copy and paste into /usr/local/bin/uptime:
Code:
#!/bin/sh
var=$(date | awk '{print $4}' | awk -F : '{print $1 ":" $2}')
echo $var up like forever, dude!
Reply With Quote