Archive
GNU tar Header Errors?
Dealing with GNU/tar’s Extended Header Warnings

It seems that FreeBSD‘s tar binary utilizes additional headers that GNU tar does not recognize. There are many blog posts about this. The problem appears to affect tarballs created on various operating systems that employ varying versions of tar and extracting those tarballs with GNU tar.
Generally speaking, these warning can be ignored. On the command line, the files contained within the tarball will still extract (or at least they have every time I’ve encountered this). This does, however, present a problem if one is programmatically encountering this. One can resolve this by addressing the issue within their code or by using the same version of tar on each platform to create and extract the tarballs in question.
Using screen to connect to serial ports
Using screen to connect to serial ports
screen is cool. screen is an indespencable tool to any unix administrator. My challenge was to find a solution to connect to the serial port on a server chassis. The solution I found was to utilize a USB-Serial adapter (and associated Mac OS X Lion Driver), null modem cable, and rj45-db9 adapter in conjunction with screen.
screen, being a key tool in an administrator’s tool box, was found to have the capability of connecting to serial ports!
To connect to the serial port:
screen /dev/tty.PL2303-000013FD
Specifying baud rate:
screen /dev/tty.PL2303-000013FD 9600
Enabling CTS/RTS:
screen /dev/tty.PL2303-000013FD 9600,ctsrts
Terminate the session using screen command ^a,k