Skip to main content

What is a SysAdmin

System administrators. IT pros. The IT guy (or IT gal). Techies. They go by a lot of names, but they all pretty much share a common goal: be the fantastic fixers of all things tech. After all, if weren’t for sysadmins, making copies would require a trusty pen, a steady hand, and a ton of patience.

SysAdmins are always on call, whether it’s updating your company’s antivirus software, replacing that toner waste cartridge or repairing a corrupt SQL database. Here’s a bunch of other tasks IT pros do that you might not have even realized:

  • A SysAdmin unpacked the server for this website from its box, installed an operating system, patched it for security, made sure the power and AC were working in the server room, monitored it for stability, set up the software, and kept backups in case anything went wrong. All to serve sysadminday.com.
  • Another SysAdmin installed the routers, laid the cables, configured the networks, set up the firewalls, and watched and guided the traffic for each hop of the network that runs over copper, fiber optic glass, and even the air itself to bring the Internet to your computer.
  • When your network connection is safe, secure, open, and working, you can thank your SysAdmin. They make sure your computer is functioning in a healthy way on a healthy network. They take backups to guard against disaster (both human and otherwise), hold the gates against security threats and crackers (not the salty, crumbly kind), and they keep the printers going no matter how many copies of the tax code someone from accounting prints out.
  • A SysAdmin worries about spam, viruses, spyware, as well as power outages, fires and floods.
  • When the email server goes down at 2 a.m. on a Sunday, your SysAdmin is paged, wakes up, and goes to work.
  • A sysadmin is a pro who plans, worries, hacks, fixes, pushes, advocates, protects and creates good computer networks. Why? To get you your data, help you do your work, and bring the potential of computing ever closer to reality.

So if you’re able to read all of this, thank your SysAdmin — and know he or she is only one in a tech army bringing you the email from your aunt on the West Coast, the instant message from your son at college, the free phone call from the friend in Australia, and this very webpage. (source)

Comments

Popular posts from this blog

Synchronize Folders Between Computers and Drives with SyncToy 2.1

If you have a few different computers and drives, it can be annoying making sure the same data is each one you need. Today we take a look at making folder and data synchronization easier with the Microsoft SyncToy 2.1 utility. You might have a flash drive that you use to carry files and documents from the workplace to your home office and vice versa. Sometimes though, you might forget to copy the files you need over to the drive. With Microsoft’s SyncToy it allows you to easily make sure the data between drives and folders is synchronized everyday. There are a lot of reasons you might want to synchronize folders. For example, maybe you want to sync your My Pictures folder with the one at work, or sync your music at home with music on another computer. This is a free tool from Microsoft that was once part of the XP Power Toys but has continued to grow and improve. Installing SyncToy When you install SyncToy it also installs Microsoft Sync Framework 2.0 Core Components, which is t...

Windows Server Backup Step-by-Step Guide for Windows Server 2008

The Windows Server Backup feature provides a basic backup and recovery solution for computers running the Windows Server® 2008 operating system. Windows Server Backup introduces new backup and recovery technology and replaces the previous Windows Backup (Ntbackup.exe) feature that was available with earlier versions of the Windows operating system. What is Windows Server Backup? The Windows Server Backup feature in Windows Server 2008 consists of a Microsoft Management Console (MMC) snap-in and command-line tools that provide a complete solution for your day-to-day backup and recovery needs. You can use four wizards to guide you through running backups and recoveries. You can use Windows Server Backup to back up a full server (all volumes), selected volumes, or the system state. You can recover volumes, folders, files, certain applications, and the system state. And, in case of disasters like hard disk failures, you can perform a system recovery, which will rest...

[AIX] How to restart network service in AIX environment?

When network service like telnet connection hangs, then it is possible the inetd subsystem is not working properly. # refresh -s inetd 0513-095 The request for subsystem refresh was completed successfully. If the refresh hangs for some time and comes back with 0513-056 time out waiting for command response, then the inetd subsystem may not be working correctly and should then be killed nicely. Run #ps -ef | grep inetd and do a kill -15 on the process ID on the line that has /usr/sbin/inetd. Once inetd has been killed, type startsrc -s inetd. If inetd starts, try to telnet into the machine. If inetd does not start up successfully, or if telnet still hangs indefinitely, run kill -15 on the PID of inetd again. Back up the original /etc/inetd.conf file to a new file name by typing: # mv /etc/inetd.conf /etc/inetd.conf.backup The original template is in /usr/lpp/bos.net/inst_root/etc/. You can copy it by typing: # cp /usr/lpp/bos.net/inst_root/etc/inetd.conf /etc/inetd.conf Run start...