HN user

w0land

17 karma
Posts1
Comments13
View on HN
Systemd Brand 7 years ago

No no no. I recall it from the firs linux distros i used, from 96 - 97, rpm based, both SuSE and RedHat.

Fast Ads Matter 7 years ago

Well, this assusmes that the ads are served from the origin site, not some other domain right?

Heh, reminds me if my university period. In the students house each apartment had a phone with the round dialing physically removed as the phones were supposed to be used only for recieving calls. I tried the technique you are referring to and it worked perfectly. Too bad that after some months the administration noticed the receipts from the phone company and me and the other guys living in the same apartment had to pay part of it.

For copying a directory tree from host1 to host2 preserving user / permissions and compressing on the fly to reduce network usage i use:

# from host1:

cd $DIRECTORY && tar -jcf - . | ssh host2 "cd DESTINATION_DIR && tar jxvf - "