|
Home | Switchboard | Unix Administration | Red Hat | TCP/IP Networks | Neoliberalism | Toxic Managers |
(slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and bastardization of classic Unix |
There is a lot conflicting information about what options to use for creation of recovery tarball. Here is what Relax-and-Recover uses (relax and recover is just fancy envelope for tar)
# save everything except directories listed in file /exclude_dirs
time tar cvpPzf $TARBALL -C / -X /exclude_dirs /If you have everything in one partition you can use option --one-file-system and explicitly exclude pseudo-directories such as /proc /sys
time tar cvpPzf $TARBALL -C / --one-file-system --exclude /mnt --exclude /proc exclude /sys /
Where:
c - create a new backup archive.
v - verbose mode, tar will print what it's doing to the screen.
p -- preserves the permissions of the files put in the archive for restoration later.
P -- creates absolute names
z - compress the backup file with 'gzip' to make it smaller.
f <filename> - specifies where to store the backup, backup.tar.gz is the filename used in this example. It will be stored in the current working directory, the one you set when you used the cd command.
--exclude=/example/path - The options following this model instruct tar what directories NOT to backup. We don't want to backup everything since some directories aren't very useful to include. The first exclusion rule directs tar not to back itself up, this is important to avoid errors during the operation.
- X file_with_excluded_dirs -- you can specify excluded dirs in a file.
--one-file-system Available at least from tar 1.15 (RHEL 5) Do not include files on a different filesystem. If you want other filesystems, such as a /home partition, or external media mounted in /media backed up, you either need to back them up separately, or omit this flag. If you do omit this flag, you will need to add several more --exclude= arguments to avoid filesystems you do not want. These would be /proc, /sys, /mnt, /media, /run and /dev directories in root. /proc and /sys are virtual filesystems that provide windows into variables of the running kernel, so you do not want to try and backup or restore them. /dev is a tmpfs whose contents are created and deleted dynamically by udev, so you also do not want to backup or restore it. Likewise, /run is a tmpfs that holds variables about the running system that do not need backed up.
It is important to note that these exclusions are recursive. This means that all folders located within the one excluded will be ignored as well. In the example, excluding the /media folder excludes all mounted drives and media there.
Warning: Exclude actually specifies not a file path, but a "basic" (DOS style) regular expression for the file(s) or directories.Excluding Some Files
To avoid operating on files whose names match a particular pattern, use the `--exclude' or `--exclude-from' options.
- `--exclude=pattern'
- Causes
tar
to ignore files that match the pattern.The `--exclude=pattern' option prevents any file or member whose name matches the shell wildcard (pattern) from being operated on. For example, to create an archive with all the contents of the directory `src' except for files whose names end in `.o', use the command `tar -cf src.tar --exclude='*.o' src'.
You may give multiple `--exclude' options.
- `--exclude-from=file'
- `-X file'
- Causes
tar
to ignore files that match the patterns listed in file.Use the `--exclude-from' option to read a list of patterns, one per line, from file;
tar
will ignore files matching those patterns. Thus iftar
is called as `tar -c -X foo .' and the file `foo' contains a single line `*.o', no files whose names end in `.o' will be added to the archive.Notice, that lines from file are read verbatim. One of the frequent errors is leaving some extra whitespace after a file name, which is difficult to catch using text editors.
However, empty lines are OK.
When archiving directories that are under some version control system (VCS), it is often convenient to read exclusion patterns from this VCS' ignore files (e.g. `.cvsignore', `.gitignore', etc.) The following options provide such possibility:
- `--exclude-vcs-ignores'
- Before archiving a directory, see if it contains any of the following files: `cvsignore', `.gitignore', `.bzrignore', or `.hgignore'. If so, read ignore patterns from these files.
The patterns are treated much as the corresponding VCS would treat them, i.e.:
- `.cvsignore'
- Contains shell-style globbing patterns that apply only to the directory where this file resides. No comments are allowed in the file. Empty lines are ignored.
- `.gitignore'
- Contains shell-style globbing patterns. Applies to the directory where `.gitfile' is located and all its subdirectories.
Any line beginning with a `#' is a comment. Backslash escapes the comment character.
- `.bzrignore'
- Contains shell globbing-patterns and regular expressions (if prefixed with `RE:'(16). Patterns affect the directory and all its subdirectories.
Any line beginning with a `#' is a comment.
- `.hgignore'
- Contains posix regular expressions(17). The line `syntax: glob' switches to shell globbing patterns. The line `syntax: regexp' switches back. Comments begin with a `#'. Patterns affect the directory and all its subdirectories.
- `--exclude-ignore=file'
- Before dumping a directory,
tar
checks if it contains file. If so, exclusion patterns are read from this file. The patterns affect only the directory itself.- `--exclude-ignore-recursive=file'
- Same as `--exclude-ignore', except that the patterns read affect both the directory where file resides and all its subdirectories.
- `--exclude-vcs'
- Exclude files and directories used by following version control systems: `CVS', `RCS', `SCCS', `SVN', `Arch', `Bazaar', `Mercurial', and `Darcs'.
As of version 1.29, the following files are excluded:
- `CVS/', and everything under it
- `RCS/', and everything under it
- `SCCS/', and everything under it
- `.git/', and everything under it
- `.gitignore'
- `.gitmodules'
- `.gitattributes'
- `.cvsignore'
- `.svn/', and everything under it
- `.arch-ids/', and everything under it
- `{arch}/', and everything under it
- `=RELEASE-ID'
- `=meta-update'
- `=update'
- `.bzr'
- `.bzrignore'
- `.bzrtags'
- `.hg'
- `.hgignore'
- `.hgrags'
- `_darcs'
- `--exclude-backups'
- Exclude backup and lock files. This option causes exclusion of files that match the following shell globbing patterns:
- .#*
- *~
- #*#
When creating an archive, the `--exclude-caches' option family causes
tar
to exclude all directories that contain a cache directory tag. A cache directory tag is a short file with the well-known name `CACHEDIR.TAG' and having a standard header specified in http://www.brynosaurus.com/cachedir/spec.html. Various applications write cache directory tags into directories they use to hold regenerable, non-precious data, so that such data can be more easily excluded from backups.There are three `exclude-caches' options, each providing a different exclusion semantics:
- `--exclude-caches'
- Do not archive the contents of the directory, but archive the directory itself and the `CACHEDIR.TAG' file.
- `--exclude-caches-under'
- Do not archive the contents of the directory, nor the `CACHEDIR.TAG' file, archive only the directory itself.
- `--exclude-caches-all'
- Omit directories containing `CACHEDIR.TAG' file entirely.
Another option family, `--exclude-tag', provides a generalization of this concept. It takes a single argument, a file name to look for. Any directory that contains this file will be excluded from the dump. Similarly to `exclude-caches', there are three options in this option family:
- `--exclude-tag=file'
- Do not dump the contents of the directory, but dump the directory itself and the file.
- `--exclude-tag-under=file'
- Do not dump the contents of the directory, nor the file, archive only the directory itself.
- `--exclude-tag-all=file'
- Omit directories containing file file entirely.
Multiple `--exclude-tag*' options can be given.
For example, given this directory:
$ find dir dir dir/blues dir/jazz dir/folk dir/folk/tagfile dir/folk/sanjuan dir/folk/troteThe `--exclude-tag' will produce the following:
$ tar -cf archive.tar --exclude-tag=tagfile -v dir dir/ dir/blues dir/jazz dir/folk/ tar: dir/folk/: contains a cache directory tag tagfile; contents not dumped dir/folk/tagfileBoth the `dir/folk' directory and its tagfile are preserved in the archive, however the rest of files in this directory are not.
Now, using the `--exclude-tag-under' option will exclude `tagfile' from the dump, while still preserving the directory itself, as shown in this example:
$ tar -cf archive.tar --exclude-tag-under=tagfile -v dir dir/ dir/blues dir/jazz dir/folk/ ./tar: dir/folk/: contains a cache directory tag tagfile; contents not dumpedFinally, using `--exclude-tag-all' omits the `dir/folk' directory entirely:
$ tar -cf archive.tar --exclude-tag-all=tagfile -v dir dir/ dir/blues dir/jazz ./tar: dir/folk/: contains a cache directory tag tagfile; directory not dumped
Problems with Using the exclude
Options
[ < ] [ > ] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] Problems with Using the
exclude
OptionsSome users find `exclude' options confusing. Here are some common pitfalls:
- The main operating mode of
tar
does not act on a file name explicitly listed on the command line, if one of its file name components is excluded. In the example above, if you create an archive and exclude files that end with `*.o', but explicitly name the file `dir.o/foo' after all the options have been listed, `dir.o/foo' will be excluded from the archive.- You can sometimes confuse the meanings of `--exclude' and `--exclude-from'. Be careful: use `--exclude' when files to be excluded are given as a pattern on the command line. Use `--exclude-from' to introduce the name of a file which contains a list of patterns, one per line; each of these patterns can exclude zero, one, or many files.
- When you use `--exclude=pattern', be sure to quote the pattern parameter, so GNU
tar
sees wildcard characters like `*'. If you do not do this, the shell might expand the `*' itself using files at hand, sotar
might receive a list of files instead of one pattern, or none at all, making the command somewhat illegal. This might not correspond to what you want.For example, write:
$ tar -c -f archive.tar --exclude '*.o' directoryrather than:
# Wrong! $ tar -c -f archive.tar --exclude *.o directory- You must use use shell syntax, or globbing, rather than
regexp
syntax, when using exclude options intar
. If you try to useregexp
syntax to describe files to be excluded, your command might fail.- See The change in semantics must have occurred before 1.11, so I doubt if it is worth mentioning at all. Anyway, should at least specify in which version the semantics changed.
In earlier versions of
tar
, what is now the `--exclude-from' option was called `--exclude' instead. Now, `--exclude' applies to patterns listed on the command line and `--exclude-from' applies to patterns listed in a file.
tar
has the ability to ignore
specified files and directories contained in a special file. the localtion of the file is specified
with option -X. The syntax is one definition per line.
tar
also has the capability to
understand regular expressions (regexps). For example:
# Not old backups /opt/backup/arch-full* # Not temporary files /tmp/ # Not the cache for pacman /var/cache/pacman/pkg/
see BackupYourSystem-TAR - Community Help Wiki
Success of bare metal recovery using tar archive depends on the correctness of your options.
Here is a basic script that can do it and provides a couple checks. You'll need to modify this script
to define your backup location, and exclude file (if you have one), and then just run this command after
you've chroot
ed and mounted all
your partitions.
#!/bin/bash # full system backup # Backup destination backdest=/opt/backup # Labels for backup name #PC=${HOSTNAME} pc=pavilion distro=arch type=full date=$(date "+%F") backupfile="$backdest/$distro-$type-$date.tar.gz" # Exclude file location prog=${0##*/} # Program name from filename excdir="/home/<user>/.bin/root/backup" exclude_file="$excdir/$prog-exc.txt" # Check if chrooted prompt. echo -n "First chroot from a LiveCD. Are you ready to backup? (y/n): " read executeback # Check if exclude file exists if [ ! -f $exclude_file ]; then echo -n "No exclude file exists, continue? (y/n): " read continue if [ $continue == "n" ]; then exit; fi fi if [ $executeback = "y" ]; then # -p and --xattrs store all permissions and extended attributes. # Without both of these, many programs will stop working! # It is safe to remove the verbose (-v) flag. If you are using a # slow terminal, this can greatly speed up the backup process. tar --exclude-from=$exclude_file --xattrs -czpvf $backupfile / fi
Run you kickstart file with you ISO disk to get a base system.
Second Stage Restoration
To restore the test computer:
[root@tester ~]# restore.all
If you used tar for your backup and restoration, and used the -k (keep old files, don't overwrite) option, you will see a lot of this:
tar: usr/sbin/rpcinfo: Could not create file: File exists tar: usr/sbin/zdump: Could not create file: File exists tar: usr/sbin/zic: Could not create file: File exists tar: usr/sbin/ab: Could not create file: File existsThis is normal, as tar is refusing to overwrite files you restored during the first stage of restoration.
Just to be paranoid, run LILO after you perform your restoration. I doubt it is necessary, but if it is necessary, it's a lot easier than the alternative. You will notice I have it in my script, restore.all (see Listing 3).
Now reboot. On the way down, you will see a lot of error messages, such as "no such pid." This is a normal part of the process. The shutdown code is using the pid files from dæmons that were running when the backup was made to shut down dæmons that were not started on the last boot. Of course there's no such pid.
Your system should come up normally, with a lot fewer errors than it had before. The acid test of how well your restore works on an RPM based system is to verify all packages:
rpm -Va
Some files, such as configuration and log files, will have changed in the normal course of things, and you should be able to mentally filter those out of the report.
If you took my advice earlier and keep RPM metadata as a normal part of your backup process, you should be able to diff the two files, thereby speeding up this step considerably.
You should be up and running. It is time to test your applications, especially those that run as dæmons. The more sophisticated the application, the more testing you may need to do. If you have remote users, disable them from using the system, or make it "read only" while you test it. This is especially important for databases, to prevent making any corruption or data loss worse than it already might be.
If you normally boot to X, and disabled it above, test X before you re-enable it. Re-enable it by changing that one line in /etc/inittab back to: id:5:initdefault:
You should now be ready to rock and roll-and for some Aspirin and a couch.
SanDisk FIT USB drives can be as large as 128 GB.
USB 3.0 FIT
- SanDisk Ultra Fit 128GB USB 3.0 Flash Drive (SDCZ43-128G-G46) [Older Version]
- Samsung 128GB USB 3.0 Flash Drive Fit (MUF-128BB-AM)
USB 3.0 BAR
- Samsung 128GB BAR USB 3.0 Flash Drive (MUF-128BA-AM)
- SanDisk Ultra Flair USB 3.0 128GB Flash Drive High Performance up to 150MB-s (SDCZ73-128G-G46)
- Lexar JumpDrive S45 128GB USB 3.0 Flash Drive - LJDS45-128ABNL (Black) Computers & Accessories
- Patriot 128GB Tab Series Micro-Sized USB 3.0 Flash Drive with Up To 140MB-Sec and Metal Housing (PSF128GTAB3USB) C
- Kingston Digital 128GB Data Traveler SE9 G2 USB 3.0 (DTSE9G2-128GB) Computers & Accessories Beware: Defective units do not work in USB 2.0 ports.
USB 2.0
|
Switchboard | ||||
Latest | |||||
Past week | |||||
Past month |
Apr 29, 2018 | serverfault.com
The backup is made with Tar. I backup the whole system into the Tar file.
If the HDD on my webserver dies, I got all my backups in a safe place.
But what would be the best way to do a Bare Metal Restore on a new HDD with a differential backup make the previous day? Can I boot with a boot cd, and then format a new HDD and untar the backup file into it? How do I do that exactly?
EDIT:
This is my backup script:
#!/bin/sh # Backup script BACKUPDIR="/backups" BACKUPFILE=$BACKUPDIR/backup_$(date +%y-%m-%d).tgz if [ ! -d $BACKUPDIR ]; then mkdir $BACKUPDIR fi if [ -f $BACKUPFILE ]; then echo "Backup file already exists and will be replaced." rm $BACKUPFILE fi apt-get clean tar czpf $BACKUPFILE --same-owner \ --exclude=$BACKUPDIR \ --exclude=/boot/grub/menu.lst* \ --exclude=/home/error.log \ --exclude=/proc \ --exclude=/media \ --exclude=/dev/* \ --exclude=/mnt \ --exclude=/sys/* \ --exclude=/cdrom \ --exclude=/lost+found \ --exclude=/var/cache/* \ --exclude=/tmp / 2>/home/error.loglinux backup debian tar share improve this question edited Dec 22 '11 at 13:25 asked Dec 22 '11 at 3:44 Jonathan Rioux 1,087 4 22 47 add a comment 4 Answers active oldest votes up vote 3 down vote accepted Simply restoring the HDD will not be enough, you're probably will want your boot record too which I hardly believe exists in your backup (am I wrong?, it's better for you if i do!)...Lest assume you got the server to the point it can boot (i personally prefer creating the additional partition mounted to
/boot
which will havekernel
andinitrd
withbusybox
or something similar to allow you basic maintenance tasks). You can also use a live CD of your Linux distribution.Mount your future
root partition
somewhere and restore your backup.
tar
was created for tapes so it support appending to archive files with same name. If you used this method justuntar -xvpf backup.tar -C /mnt
if not you'll need to restore "last sunday" backup and applying deferential parts up to needed day.You should keep in mind that there is a lot of stuff that you should not backup, things like:
/proc
,/dev
,/sys
,/media
,/mnt
(and probably some more which depend on your needs). You'll need to take care of it before creating backup, or it may became severe pain while in restore process!There is many points that you can easily miss with that backup method for whole server:
- commands used to restore may vary to much depend on real commands you used to backup your data.
- boot record
- kernel image and modules are ok and match each other after restore
- ignore unwanted stuff on backup not restore.
- etc, etc...
Some good points on that exact method can be found on Ubuntu Wiki:BackupYourSystem/TAR . Look for Restoring.
BTW:
- have you ever tried to restore one of your backups?
- have you considered changing your backup strategy?
- have you considered separation of data you need to backup and system settings (there is some good stuff today to manage system configuration so it can be easily resorted with zero pain like
puppet
orchief
, so only thing you should care about is real data)P.P.S
I recommend reading couple of Jeff Atwood posts about backups http://www.codinghorror.com/blog/2008/01/whats-your-backup-strategy.html and http://www.codinghorror.com/blog/2009/12/international-backup-awareness-day.html
Apr 29, 2018 | www.linux.com
... ... ...
The backup tape from the previous night was still on site (our off-site rotations happen once a week). Once I restored the filelist.txt file, I browsed through the list to determine the order that the directories were written to the tape. Then, I placed that list in this restore script:
#!/bin/sh # Restore everything # This script restores all system files from tape. # # Initialize the tape drive if /bin/mt -f "/dev/nst0" tell > /dev/null 2>&1 then # Rewind before restore /bin/mt -f "/dev/nst0" rewind > /dev/null 2>&1 else echo "Restore aborted: No tape loaded" exit 1 fi # Do restore # The directory order must match the order on the tape. # /bin/tar --extract --verbose --preserve --file=/dev/nst0 var etc root usr lib boot bin home sbin backup # note: in many cases, these directories don't need to be restored: # initrd opt misc tmp mnt # Rewind tape when done /bin/mt -f "/dev/nst0" rewindIn the script, the list of directories to restore is passed as parameters to tar. Just as in the backup script, it is important to use the
--preserve
switch so that file permissions are restored to the way they were before the backup. I could have just restored the / directory, but
there were a couple of directories I wanted to exclude, so I decided to be explicit about what to restore. If you want to use this script for your own restores, be sure the list of directories matches the order they were backed up on your system.Although it is listed in the restore script, I removed the /boot directory from my restore, because I suspected my file system problem was related to a kernel upgrade I had done three days earlier. By not restoring the /boot directory, the system would continue to use the stock kernel that shipped on the CDs until I upgraded it. I also wanted to exclude the /tmp directory and a few other directories that I knew were not important.
The restore ran for a long time, but uneventfully. Finally, I rebooted the system, reloaded the MySQL databases from the dumps, and the system was fully restored and working perfectly. Just over four hours elapsed from total meltdown to complete restore. I probably could trim at least an hour off that time if I had to do it a second time.
Postmortem
I filed a bug report with Red Hat Bugzilla , but I could only provide log files from the day before the crash. All core files and logs from the day of the crash were lost when I tried to repair the file system. I exchanged posts with a Red Hat engineer, but we were not able to nail down the cause. I suspect the problem was either in the RAID driver code or ext3 code. I should note that the server is a relatively new HP ProLiant server with an Intel hyperthreaded Pentium 4 processor. Because the Linux kernel sees a hyperthreaded processor as a dual processor, I was using an SMP kernel when the problem arose. I reasoned that I might squeeze a few percentage points of performance out of the SMP kernel. This bug may only manifest when running on a hyperthreaded processor in SMP mode. I don't have a spare server to try to recreate it.
After the restore, I went back to the uniprocessor kernel and have not yet patched it back up to the level it had been. Happily, the ext3 error has not returned. I scan the logs every day, but it has been well over a month since the restore and there are still no signs of trouble. I am looking forward to my next full restore -- hopefully not until sometime in 2013.
Google matched content |
...
GNU tar 1.29 5. Performing Backups and Restoring Files
Full System Backup with tar - ArchWiki
Backing up Files with Tar - O'Reilly Media outdate (2002)
Full Hard-Drive Backup with Linux Tar
Bare-metal server restore using tar Linux.com The source for Linux information (2005)
Linux & Windows Bare Metal Recovery - Backup Central
Linux RedHat Bare Metal Restore on dissimilar system
Bare Metal Recovery Linux Journal outdated
Society
Groupthink : Two Party System as Polyarchy : Corruption of Regulators : Bureaucracies : Understanding Micromanagers and Control Freaks : Toxic Managers : Harvard Mafia : Diplomatic Communication : Surviving a Bad Performance Review : Insufficient Retirement Funds as Immanent Problem of Neoliberal Regime : PseudoScience : Who Rules America : Neoliberalism : The Iron Law of Oligarchy : Libertarian Philosophy
Quotes
War and Peace : Skeptical Finance : John Kenneth Galbraith :Talleyrand : Oscar Wilde : Otto Von Bismarck : Keynes : George Carlin : Skeptics : Propaganda : SE quotes : Language Design and Programming Quotes : Random IT-related quotes : Somerset Maugham : Marcus Aurelius : Kurt Vonnegut : Eric Hoffer : Winston Churchill : Napoleon Bonaparte : Ambrose Bierce : Bernard Shaw : Mark Twain Quotes
Bulletin:
Vol 25, No.12 (December, 2013) Rational Fools vs. Efficient Crooks The efficient markets hypothesis : Political Skeptic Bulletin, 2013 : Unemployment Bulletin, 2010 : Vol 23, No.10 (October, 2011) An observation about corporate security departments : Slightly Skeptical Euromaydan Chronicles, June 2014 : Greenspan legacy bulletin, 2008 : Vol 25, No.10 (October, 2013) Cryptolocker Trojan (Win32/Crilock.A) : Vol 25, No.08 (August, 2013) Cloud providers as intelligence collection hubs : Financial Humor Bulletin, 2010 : Inequality Bulletin, 2009 : Financial Humor Bulletin, 2008 : Copyleft Problems Bulletin, 2004 : Financial Humor Bulletin, 2011 : Energy Bulletin, 2010 : Malware Protection Bulletin, 2010 : Vol 26, No.1 (January, 2013) Object-Oriented Cult : Political Skeptic Bulletin, 2011 : Vol 23, No.11 (November, 2011) Softpanorama classification of sysadmin horror stories : Vol 25, No.05 (May, 2013) Corporate bullshit as a communication method : Vol 25, No.06 (June, 2013) A Note on the Relationship of Brooks Law and Conway Law
History:
Fifty glorious years (1950-2000): the triumph of the US computer engineering : Donald Knuth : TAoCP and its Influence of Computer Science : Richard Stallman : Linus Torvalds : Larry Wall : John K. Ousterhout : CTSS : Multix OS Unix History : Unix shell history : VI editor : History of pipes concept : Solaris : MS DOS : Programming Languages History : PL/1 : Simula 67 : C : History of GCC development : Scripting Languages : Perl history : OS History : Mail : DNS : SSH : CPU Instruction Sets : SPARC systems 1987-2006 : Norton Commander : Norton Utilities : Norton Ghost : Frontpage history : Malware Defense History : GNU Screen : OSS early history
Classic books:
The Peter Principle : Parkinson Law : 1984 : The Mythical Man-Month : How to Solve It by George Polya : The Art of Computer Programming : The Elements of Programming Style : The Unix Hater’s Handbook : The Jargon file : The True Believer : Programming Pearls : The Good Soldier Svejk : The Power Elite
Most popular humor pages:
Manifest of the Softpanorama IT Slacker Society : Ten Commandments of the IT Slackers Society : Computer Humor Collection : BSD Logo Story : The Cuckoo's Egg : IT Slang : C++ Humor : ARE YOU A BBS ADDICT? : The Perl Purity Test : Object oriented programmers of all nations : Financial Humor : Financial Humor Bulletin, 2008 : Financial Humor Bulletin, 2010 : The Most Comprehensive Collection of Editor-related Humor : Programming Language Humor : Goldman Sachs related humor : Greenspan humor : C Humor : Scripting Humor : Real Programmers Humor : Web Humor : GPL-related Humor : OFM Humor : Politically Incorrect Humor : IDS Humor : "Linux Sucks" Humor : Russian Musical Humor : Best Russian Programmer Humor : Microsoft plans to buy Catholic Church : Richard Stallman Related Humor : Admin Humor : Perl-related Humor : Linus Torvalds Related humor : PseudoScience Related Humor : Networking Humor : Shell Humor : Financial Humor Bulletin, 2011 : Financial Humor Bulletin, 2012 : Financial Humor Bulletin, 2013 : Java Humor : Software Engineering Humor : Sun Solaris Related Humor : Education Humor : IBM Humor : Assembler-related Humor : VIM Humor : Computer Viruses Humor : Bright tomorrow is rescheduled to a day after tomorrow : Classic Computer Humor
The Last but not Least Technology is dominated by two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt. Ph.D
Copyright © 1996-2021 by Softpanorama Society. www.softpanorama.org was initially created as a service to the (now defunct) UN Sustainable Development Networking Programme (SDNP) without any remuneration. This document is an industrial compilation designed and created exclusively for educational use and is distributed under the Softpanorama Content License. Original materials copyright belong to respective owners. Quotes are made for educational purposes only in compliance with the fair use doctrine.
FAIR USE NOTICE This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. We are making such material available to advance understanding of computer science, IT technology, economic, scientific, and social issues. We believe this constitutes a 'fair use' of any such copyrighted material as provided by section 107 of the US Copyright Law according to which such material can be distributed without profit exclusively for research and educational purposes.
This is a Spartan WHYFF (We Help You For Free) site written by people for whom English is not a native language. Grammar and spelling errors should be expected. The site contain some broken links as it develops like a living tree...
|
You can use PayPal to to buy a cup of coffee for authors of this site |
Disclaimer:
The statements, views and opinions presented on this web page are those of the author (or referenced source) and are not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society. We do not warrant the correctness of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be tracked by Google please disable Javascript for this site. This site is perfectly usable without Javascript.
Last modified: February, 19, 2020