Friday, October 12, 2012

NTP Observatório Astronómico de Lisboa (oal)


sudo apt-get install ntp

And for ntpd edit /etc/ntp.conf to include additional server lines:

server ntp02.oal.ul.pt
server ntp04.oal.ul.pt

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...