Featured »

June 18, 2013 – 8:06 pm |

In the past few days my Postfix server has been having occasional problems talking to the mail gateway. They problem would come and go. The Postfix server would timeout trying to connect to the gateway and keep …

Read the full story »
Networking

Unix and Linux network configuration. Multiple network interfaces. Bridged NICs. High-availability network configurations.

Applications

Reviews of latest Unix and Linux software. Helpful tips for application support admins. Automating application support.

Data

Disk partitioning, filesystems, directories, and files. Volume management, logical volumes, HA filesystems. Backups and disaster recovery.

Monitoring

Distributed server monitoring. Server performance and capacity planning. Monitoring applications, network status and user activity.

Commands & Shells

Cool Unix shell commands and options. Command-line tools and application. Things every Unix sysadmin needs to know.

Home » Archive by Tags

Articles tagged with: tar

How to Really Kill Computer Viruses

February 21, 2010 – 6:34 am | 13 Comments
How to Really Kill Computer Viruses

How do you know if your computer has a virus? Is it connected to the Internet? Then it has a virus. Many computer viruses and other malicious applications are very resilient and will actively resist any attempts to deactivate and remove them. Some viruses can even delete your antivirus application or prevent it from working properly. Many viruses cannot be effectively removed once they are loaded in memory and active.

Copying Data: Are We There Yet?

December 27, 2009 – 7:12 pm | 3 Comments
Copying Data: Are We There Yet?

I am sure this will sound familiar: you are copying a large amount of data – either locally or over the network – and you are wondering how long it will take and if there is a way to make things go faster.You may be surprised, but it does matter what type of files you are copying: 1Gb-worth of many small files will take considerably longer to copy than two 500Mb files. The hardware you are using is an important consideration, but it’s not the only factor limiting data transfer speed.

Protected: Notes on Electronic Security

February 7, 2006 – 12:05 pm | Enter your password to view comments.
Protected: Notes on Electronic Security

There is no excerpt because this is a protected post.

Command-line backup methods

November 22, 2005 – 6:01 pm | 3 Comments
Command-line backup methods

The following is a brief overview of standard Unix comman-line utilities used for data backup on Solaris systems. Most of the information below is also applicable to other unixoid systems.

Copying directories using tar and rsync

November 19, 2005 – 11:20 pm | One Comment
Copying directories using tar and rsync

In this example we use the tar command to copy the contents of the /export/home directory to /temphome. This particular syntax forgoes the creation of an actual tarball file. This can be useful if you …

Find largest files

November 19, 2005 – 11:17 pm | 3 Comments
Find largest files

How to find the largest files in the directory tree on Solaris.

Create tarball

November 19, 2005 – 10:42 pm | 2 Comments
Create tarball

The Unix tar command creates an archive of files and directories while preserving directory structure, file permissions and ownership information. This command is ideally suited for creating backups of most types of data. Many open-source …

Move USER to new primary group

November 19, 2005 – 10:41 pm | One Comment
Move USER to new primary group

A sample process for moving a user to a new primary home group on Solaris.

Using FTP with pipes

November 19, 2005 – 10:37 pm | 10 Comments
Using FTP with pipes

Pipe in Unix is a method of passing information from one command to another. The pipe take the output of the first command and sends it as input for the second command. The a second …

Create TAR and pipe through gzip

November 19, 2005 – 10:36 pm | 7 Comments
Create TAR and pipe through gzip

A simple example of creating a gzip-compressed tar archive of the current directory.