Saturday, September 1, 2007
Ever noticed how Windows Explorer, by default, shows the drive letter after the label. For example: \\longservername.subdomain.domain\AllOurData M: The problem with this is that in some dialogs you can’t see the drive letter. Wouldn’t it be better if it did it the other way around: M: \\longservername.subdomain.domain\AllOurData Here’s how you can change that using group [...]
Saturday, September 1, 2007
Instructions I consulted a number of sites on the Internet when I was attempting to configure L2TP on a Cisco router. I found many people with the same issues I had but no complete solution. In the end, my problem was that I needed an access list (see access-list 130 below). Below is an example [...]
Saturday, September 1, 2007
cd to the parent of the source directoryUse the following command: tar -cf – sourcedir | "cd destdirparent && tar -xf -" where: sourcedir is the directory to copy destdirparent is the parent directory to copy the directory to The -f – option tells tar to write the archive to stdout or read the archive [...]
Saturday, September 1, 2007
From the source host:cd to the parent directory Use the following command: tar cf – sourcedir | ssh username@destination "cd destdirparent && tar xf -" where: sourcedir is the directory to copy username is your username on the remote (destination) host destdirparent is the parent directory on the remote (destination) host