Top products from r/sysadmin

We found 613 product mentions on r/sysadmin. We ranked the 2,670 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/sysadmin:

u/Sparcrypt · 10 pointsr/sysadmin

All the above, with a few extras;

  • Cable ties
  • Electrical tape
  • Masking tape (for temporary labels)
  • Small/preconfigured wireless AP - bigger businesses this tends to be a big nono regardless of how secure it is but it's nice when you can use it.
  • Powered USB hub.
  • Some kind of hands free system for your phone. The headphones that came with it will do just fine, but bring something. I have seen so many technicians either slowed down to one hand/hurting their neck or dropping their phone because they didn't bring one.
  • Derp, completely forgot - multimeter!

    Things to have but probably leave in the car depending on how often you find them in use.

  • Basic toolkit (I carry a leatherman and keep a 4-in-1 screwdriver in my bag, that's 99% of the tools needed but it's nice not to have to run around looking for the other 1% when they're called for.
  • Basic drill set, include spade bits. It's nice to be able to quickly make that hole yourself rather than "OK I'll run the cable allllll the way around here..".
  • At least one of literally every cable you can possibly think of, especially things like console cables that you can't get at the local electronics store.
  • One of literally every X to Y converter you can think of - again, if you can't walk into the local electronics store and pick one up you should have it with you.
  • Various power boards and extension leads (power and things like USB etc)
  • Decent coil of CAT6 + connectors/crimper.
  • External HDD, bigger the better. Keep it separate from 'your' drives so you can leave it on site or mail it somewhere if you need to (it happens).
  • A few blank USB sticks, preferably encrypted. Same deal as above.
  • Small switch or hub.
  • Spare monitor - honestly I would love to find one that had USB power and a VGA connection. I haven't really looked as this really is just a 'eh maybe' thing for me but I'd be lying if I said I didn't want one. Failing that, just a small spare monitor.
  • External DVD drive
  • External Floppy disc drive and a disk. Putting that SATA/RAID driver on and plugging it in is faster and easier than building custom install media on the fly.
  • Snacks and water! Seriously, keep a few things in the car (or even in your bag) that won't go bad for those times you're stuck and just don't have time to find food.

    Some 'maybe' things - nice to have them in your mind but for most technicians it's overkill. Do the space/cost/how much you'll use it math.

  • Lockpick set - honestly it's a bit extreme and there can be laws etc to consider depending on where you live, but picking equipment locks is super simple and when you add up how many hours you've spent standing around because "Who the HELL either has this key or authorisation for me to get a hammer?!" it's suddenly not so silly. Unless you're charging by the hour, in which case make them call a locksmith!
  • Something like this - any spare KB/mouse will do but these are super nice. Edit: apparently this webpage is super dodgy? I didn't buy one from here, just googled the item. They're on Amazon and other places as well.
  • Bluetooth to serial connectors are always nice - direct is better but if you're going to use converters why not do it from a comfy spot instead?

    Probably more I'm forgetting. Big part of my last job was going to sites with lots to do and little time.. there was always a bunch of things that came up so I learned it was best to just be prepared for anything, it saves you so much time and stress in the long run and makes you look like a god to the clients when every time something comes up, you handle it easily.

    Edit: Cool stuff others have posted:

  • Make an ISO pretend to be a real hardware DVD
  • Portable KVM.. just... drool. I am buying one. Though if anyone knows of a wireless version my soul may be up for bargaining.
u/hso · 14 pointsr/sysadmin

Congrats at getting into NEU. After reading a bit about the school, it sounds like you had to do work hard in your schooling to get into it.

On becoming a sysadmin, be patient. It's going to take a while. However, here are a few things to keep you busy:

exercise 1:

  1. Tutor yourself in vim (vimtutor) or emacs (Ctrl-h followed by t). They are
    your world. DO NOT code in an IDE. Code in them all the way through
    your degree.
  2. Make a custom vim or emacs rc that has syntax highlighting and
    personalizes your editor to you. Become a power user in whatever your
    editor of choice is.
  3. Make a custom profile and rc file for your shell (choose either bash
    or zsh, but if you go with zsh, you have to learn bash anyway) to
    customize your shell to your liking

    exercise 2:
  4. look up the man pages on the commands below and bash to learn what they do (when you type
    things into your shell that the oh-so-helpful! interwebz tell you to do, you should always understand
    what they do before your run them)
  5. open three terminals
  6. in one terminal run:
    strace -eread=all -ewrite=all -f nc -l -p 18100 127.0.0.1 > server_out 2>&1
  7. in the other terminal run:
    strace -eread=all -ewrite=all -f nc -v -v -n -w 1 127.0.0.1 18100 < /etc/profile > client_out 2>&1
  8. as root run: tcpdump -s0 -ni lo -w /home/conversation_out.pcap
  9. use vim or emacs to scroll through the file and annotate everything you see in
    the file until you understand all of it and use wireshark to annotate everything
    that is happening on the network in that pcap you had tcpdump write out all
    the way up the OSI stack

    exercise 3:
  10. look up the man pages on the command below and bash to learn what they do
  11. open a terminal and run:
    strace -eread=all -ewrite=all -f wget -qO /dev/null www.google.com > wget_out 2>&1
  12. as root run: tcpdump -s0 -ni lo -w /home/wget_out.pcap
  13. use vim or emacs to scroll through the file and annotate everything you see
    in the file until you understand all of it. include everything that happened between
    your host and google (you don't know google's internals so just assume they're
    running an apache server) over the network in the annotation. study a webserver
    (apache, lighttpd, nginx) in debug mode with strace to understand what happened
    on the other side of the network connection and use wireshark to annotate everything
    that is happening on the network in that pcap you had tcpdump write out all the way
    up the OSI stack

  • learn the config files and log file formats for major Open Source software (programs such as apache, a syslog daemon, postfix, BIND, ISC DHCP Server, xinetd, ntpd, etc.)
  • learn how to monitor these programs and servers running them (nagios, graphite) and the networks they communicate over
  • have basic understanding of cvs, rcs, git and svn. have advanced understanding of git or svn or both. store ALL the code you work on from here on out in your own software repo and keep it backed up.
  • learn how to compile open source programs from the ground up and build your own packages (both rpm and deb formats)
  • learn about puppet, fabric, capistrano, chef, mcollective
  • learn about rabbitmq and stomp message brokers
  • learn file permissions, user/group ownership, absolute and relative paths and how these translate to structures in the filesystem
  • learn perl compatible regexes inside and out
  • learn how to script in a bourne compatible shell, perl, python and ruby and get really good at scripting in shell and one of the other languages
  • learn how to read C and be able to write simple programs in C. use gdb to single step some of these programs (both lines of C code and x86 instructions) and learn how they interact with the stack, heap, environment, kernel, c-library functions etc.
  • play with sqlite, postgres and mysql to get a general idea of how databases work
  • pick a web framework and set it up in a webserver, learn MVC and use a database back end as you develop some apps. you could track your homework or whatever with the apps you make but the point is learning. any of rails, django, pylons, sinatra are fine. starting with sinatra and sqlite is probably easiest.
  • learn how to harden your operating system so that ONLY the services (daemons) that the OS needs are running
  • learn how to write iptables rules to protect your host
  • get one or two trusted friends to attack the host that you've hardened and see if they can compromise it
  • learn the basics of all these protocols and their addressing schemes (where applicable) and any crypto they use: IPv4 (TCP, UDP, ICMP, ARP), IPv6, HTTP, NTP, SMTP, POP, IMAP, TLS/SSL, SSH, NFS. Get familiar with the network packets that all of these protocols generate.
  • learn the OSI stack and where protocols and various types of network gear live in the stack (hubs, switches, routers, firewalls, load balancers). all sysadmins should have CCNA level knowledge or better when it comes to networking.
  • learn how to debug and troubleshoot. those friends that attacked your system for you? have them break something on your system. then you go in and figure out what's not working and fix it. do this again and again. if you can find some like minded folks then work together on all this stuff and learn from each other. good sysadmins work in teams to make things happen. we don't teach this in college or secondary ed. the work place ideally (hah!) is all about groups of people pulling off the impossible together.
  • learn how to search in search engines with all the advanced operators that average folk don't use. search engines save you when you run into some weird error message you've never seen before that others have.
  • hang out on serverfault and stackoverflow and learn from others
  • learn the following commands/programs (and what type they all are. 'type' is your friend): ack-grep, apt-cache, apt-get, ar, as, autoconf, automake, awk, base64, bc, bison, bzip2, cal, cat, cd, chgrp, chmod, chown, cpio, curl, cut, date, dd, df, dig, dpkg, du, echo, env, eval, exec, exit, expr, false, fg, find, flex, ftp, fuser, g++, gcc, gdb, gnupg, grep, gzip, head, help, history, host, hping3, id, install, iostat, jobs, kill, killall, last, ld, ldd, less, lftp, ln, ls, lsof, make, man, md5sum, mkdir, mknod, mktemp, more, mv, nc, netstat, ngrep, nice, nm, nmap, nohup, nroff, nslookup, ntpdate, od, openssl, pax, pcregrep, ping, pkill, ps, pstree, pwd, readelf, rm, rmdir, rpm, rsync, scp, screen, sed, set, sipcalc, size, sleep, socat, sort, ssh, stat, strip, stty, su, sudo, tail, tar, tcpdump, telnet, tmux, top, touch, tr, type, uname, uniq, vmstat, wc, wget, who, whoami, xargs, yum, zcat
  • learn how to use shell script snippets and perl/ruby/python oneliners to make yourself more efficient at the commandline

    Read these whitepapers:

  • http://labs.google.com/papers/gfs-sosp2003.pdf
  • http://labs.google.com/papers/bigtable-osdi06.pdf
  • http://labs.google.com/papers/mapreduce-osdi04.pdf

    Buy this book and learn it inside and out. It is your bible.

    If you do all this and learn it well, get a couple years experience under your belt (frequently there are computer labs that students can work in in college, that is one place to go) and then move to Silicon Valley or some other hub (sounds like you'll already be in Boston--there should be opportunity there). You'll never run out of work and you'll have the opportunity to try to work for the companies that make directly make money from their computing systems instead of being inside an IT shop that is a cost center in some company that does not appreciate you.
u/mr_chip · 3 pointsr/sysadmin

I say this all the time, but: Who would have thought that in the 2012, the greatest OS war of our day would still be BSD vs SystemV (iOS vs. Android)?

Generally, a focus in Windows is going to take you into corporate IT, building internally-oriented tools to support organizations. Here you'll want to learn bout VMWare, the full Microsoft stack, and look closely at tools designed for Enterprise support. There's less demand in this arena for nix, but also less chance to make a real impact on the world. Sure, there's something to be said for helping maintain the compute clusters inside of banks, or using Altiris or similar tools to manage hundreds of desktops for gigantic offices. I've done this myself, but I didn't have very much fun.

For my money, where you want to be is in web operations, building the systems that drive popular websites. Think about Instagram, Etsy, Netflix, companies that move enormous amounts of data around on the cheap, with relatively tiny staff. Read the blogs by the infrastructure team behind Etsy, and you'll realize quickly that these guys are geniuses.

Here you'll want to learn about how to interact programmatically with cloud compute providers, such as Amazon AWS, Rackspace Cloud, and the OpenStack providers that are starting to pop up, like HP. (A cloud provider is generally not just virtualization, but virtualization coupled with an API. It may sound small but it's a big difference!)

Here's some reading: If you want to learn a lot about
nix operating systems, check out The Armadillo Book and The Practice of System and Network Administration.

If you're interested in learning web operations-oriented sysadmin, which is a VERY interesting place to be, also check out The Art of Scalability -- well, the first 2/3 anyway -- and the followup book, 50 Scalability Rules.

And especially, especially read and understand this, because there won't be many web-oriented companies still in business by 2014 that don't follow this process: Continuous Delivery.

Good luck! You picked a GREAT time to get started in the industry. The 00's were pretty boring by comparison. :)

EDIT: I KAN SPEEL

u/Kynaeus · 1 pointr/sysadmin

Good for you, you're seeking out your knowledge and it sounds like you're dedicated to learning as well.

You won't get a good sense of what we do alone, especially because it is a very diverse field and can include specializations in storage, virtualization, databases, helpdesk, desktop support, mobile device management, security (which in itself has a number of specializations), operations, project management, monitoring and reporting, copper and fiber networking, firewall management, programming or developing... See my point? You can read a little more on the fields here

Anyway, if your computer is capable I would suggest you at least familiarize yourself with SOME of what we do, try and get Hyper-V running and learn some of the Powershell commands for interacting with the VMs, then use those VMs to run some *nix stuff and learn how to use those.

There is honestly a ton of free stuff, books, documentation and such available for you, you just have to know where to look and what you might want to see. The search bar here sucks but use the google advanced search for this subreddit and there is a ton of stuff to find, here's a few examples you may find useful:

u/goobteki · 5 pointsr/sysadmin

The best way to learn is to use it as your primary system, and you'll learn as you have to solve problems. If you're looking to learn its recommended you use something that isn't going to abstract everything like Ubuntu or Linux Mint does, and use something such as Debian etc. (or if you're adventurous and really want to accelerate your learning, Gentoo or others) where you're a bit more involved with less hand holding.

Since you're also wanting to peruse it for purposes of future career options, depending upon your location (NA or Europe) you'll see quite a bit of value from Red Hat certs if you're located in North America. For this there's a lot of reading you can do, but generally the recommendations come down to Jang or Sander books. The current RHEL OS is release 7, and the certification follows that so you'll have to make sure you're using up to date information for reasons of release specific changes (systemd as an example).

Additionally you'll want to make use of Administration guides and the official documentation. This will help you learn to use and administrate systems, but if you're looking to understand things on a lower level there are wonderful books such as How Linux Works to really understand what's going on underneath and help tie things together a bit.

At some point after you're familiar with Linux and you've been using it for a while comfortably you'll want to start learning BASH. Having a good handle on the command line with help with picking up BASH as you use the same commands strung together along with logic structures, error checking, and whatnot to accomplish the tasks you're trying to do. At least some BASH is recommended due to the power of it, and how all distros have a version of the bash shell so provided your script is built portable enough you'll be able to script tasks across systems.

This wiki links to a lot of valuable material, you'll want to go through it in conjunction with a guide such as this. As usual solving problems is a great way to learn, so if you give yourself a project to script and figure it out along the way is great.

Best of luck, this'll keep you busy for a while

u/theevilsharpie · 8 pointsr/sysadmin

> windows server/services?

Microsoft's TechNet and MSDN are Microsoft's main reference portals for operations and development, respectively.

For structured learning, Microsoft offers their MCSE Program. Each exam covers a specific topic, and there are learning objectives and links to reference material available. Microsoft Press will usually have a self-study guide available for each exam.

There's also the Microsoft Virtual Academy, but I've never used it and can't vouch for its quality. Of course, it's free, so....

> linux server/common services? (Could be distro specific)

For professional use, the most commonly used Linux distributions are RHEL/CentOS and Ubuntu. (Debian is also popular, but it's close enough to Ubuntu that you can lump the two together.)

Both RHEL and CentOS have documentation available:
RHEL Documentation Page
Ubuntu Server Guide

RHEL's documentation is far more thorough and complete. However, Ubuntu has community support in the form of the Ubuntu Forums and Ask Ubuntu, and I've personally found it easier and faster to find specific information and solutions for Ubuntu.

For structured learning, Red Hat has a certification track available (which is obviously focused on Red Hat technologies), and LPI has a certification track that is more vendor-neutral. There are self-study books available for Red Hat's certifications, but they are all outdated for the current exams, and I don't recommend buying them until they're revised for RHEL 7.

For self-study, the closest thing to a Linux system administration bible that currently exists is the UNIX and Linux System Administration Handbook. However, it's a bit dated in certain respects.

Linux support and documentation, like its development, is spread out over the Internet. If you're looking for how to do something, usually the best place to start is Google. Searching for "[stuff] Ubuntu" or "[things] CentOS" will usually send you to the right place. Stack Exchange is also a pretty good resource:

  • Stack Overflow, for scripting and coding questions
  • Server Fault, for questions regarding system and network administration
  • UNIX and Linux, for questions about Linux in general

    > Networking

    Networking education is split into two worlds: theoretical/academic computer networking, and practical, vendor-specific networking.

    For theoretical networking, your best bet is to pick up a textbook. We recently had a thread discussing recommendations.

    For practical, vendor-specific networking, the big player is Cisco. Cisco has a certification track available with course objective and reference materials. For self-study, anything written by Wendell Odom is gold; however, bear in mind that you really need a lab for self-study to be effective.

    Other companies, like Juniper or HP, also have networking certifications available, but I only recommend them as a supplement.

    Lastly, while I describe Cisco's training as "practical," that doesn't mean that the theoretical aspect of networking is unimportant for a professional. There is an industry-wide push toward software-defined networking, and if your SO wants to get in on that, she'll need to have a firm understanding of computer networking theory.

    > NetSec

    Hardcore NetSec isn't really my field, but /r/netsec has a Getting Started Guide with some resources available.
u/ghostalker47423 · 9 pointsr/sysadmin

We're in the opening stages of buying out a large company. Similar sized (international, thousands of employees, dozens of sites all over the place) to us; but naturally there's months of procedure before the buyout is complete. Gov't approval, shareholders vote, board voting, etc. I'm not allowed to communicate with my counterparts at the incoming company, but have contacts in other industries that do business with both of us. I got word a couple weeks ago that their entire team in a specific IT specialty is quitting. They're all scared that my company is going to fire them all as soon as the ink dries.

First off, nothing could be further from the truth. My company may be an outlier, but we do lots of M&As every year; tempted to say 1-2 a month. Mostly small shops, but every now and then we bag a big one like this. Vulture capitalism is a real thing, but it makes up a very very small amount of buyout and mergers. You're still right to be scared, people are always fearful of change. Buying a new house/car, moving to a new place, taking a new job, etc. Perfectly natural.

I'll take a minute to hit on your core concerns:

> Everything I look after is old

So what? If the old hardware is still meeting its requirements in the production environment, that's fine. It's nice to have newer stuff, but I've never seen management update hardware simply because it was "old". If it was constantly at risk of losing customer data, or had unsolvable security concerns, then upgrading it to newer hardware would make sense.

About 1/3rd of my environment (+1500 servers) is what I would call ancient.... but they're still running. Supporting apps that customers use. Preforming some special process that needs specific hardware/software. In some cases, the team that owned the hardware was divested years ago and nobody told us to turn off their shit when they left. It kinda common. During the merger process, everything will be inventoried and documented, including what the server is actually doing (ie: hosting). This is where the curtain is lifted and suddenly we don't need to keep all these boxes running. The ones that do need to stay will get P2V'ed or V2V'd to better systems, if there's a reason it can't stay in its current environment.

> I get the feeling we're kept here temporarily to keep the old stuff running.

Yes, of course you are. Who else? Your team has the knowledge and experience keeping it all running. You're kinda stuck in a holding pattern though. Until the merger is complete, you can't get a job at the new company, and you can't move up at your current one. If you quit your job, you wont get a place at the new company, even if you fit the bill.

At my place, we do very little external hiring, and even then only for esoteric positions (IE: Lync Engineer, Sharepoint admin, Citrix, etc). M&A's are the primary source of our onboarding. Not just because you have experience with the current systems that the company is inheriting as part of the merger; but because you've played an important role in making your current company attractive to mine, which is what lead to the buyout. If your IT systems were shit, and always crashing/losing data, your company wouldn't have grown to the point where it'd be attractive to buy it out. Also, you're keeping these ancient systems running? Nice... obviously you know what you're doing.

Which brings me to the next part... have you met anyone from the new company's HR team yet? We always send in a team of people (directors, HR, advisors) to meet with the employees of the newly acquired company. Figure out who are the good apples and who are bad. Who knows what they're talking about and who is just faking it for the paycheck. If you haven't met with the other company yet, I'd strongly advise you to not jump ship yet. You could be throwing away an excellent opportunity just because you're scared of the pending change.

> Management is off-site.

This is perfectly normal. My manager is 1000mi away, and I only talk to him over Lync/email. Somehow we take care of all our datacenters, around the world, without having to see each other in person. But hey, this is the 21st century and this is how it works. The best people for the job may not live within 50mi of your office, but are within range of another office. If you need someone sitting in the same building to give you guidance on what needs to be done, then you need to ask yourself why. It shouldn't matter if your orders come over an email, a voicemail, or a sit-down meeting. In my experience, having remote management makes the subordinates much more responsible. They're allowed to get their job done their way, in their time (as long as it meets the metric of success), and then report success over an email/chat/call. Almost everyone I've met loves this kind of system. Much more laid back then say, a micromanaging boss who hovers over your desk and asks for constant updates.

> Pay is low, turnover rate high

This too is normal during your M&A. Accounting doesn't want to introduce extra financial liabilities for the new parent company, because it can throw off their forecasting models. Don't be surprised if you get the bare minimum until about ~6mo after the ink dries on the merger. This applies to new hardware, facilities requests, bonuses, perks, etc. It's not a bad sign... but it can be bad for morale. My suggestion is to just suck it up, because you're not going to win a fight with the accountants.

> Change management is more strict.

Get used to this in larger companies. Can you imagine the chaos of hundreds/thousands of people with their hands in thousands of servers? If a customer app goes down at 9am without CC, how do you figure out who did what where? Was it the app owners doing a code change? Was it the network team upgrading a switch? Was it security rolling out an update to the firewall? Change control saves your ass. I was befuddled by the process too when I started, but they've made a believer out of me.

Why should the company wake up 100 people in the middle of the night, to play Sherlock Holmes in the environment, looking for what has changed, because some developer made an opps?

[Also, if you've never read The Phoenix Project, I strongly recommend it. It'll give you a look at how a company without change control "tries" to get things done, and then you can see how change control, once properly implemented, makes everyone's lives soooooo much easier].

> What to do?

Nothing you've done at this point has been unreasonable. Like I said before, your reaction to the change in your company will naturally cause feelings of fear, anticipation, anxiety; which leads to second-guessing and the sense of flight. Your paycheck is at risk, which puts food on the table, gas in your car, and a roof over your head. Totally normal to be up late at night wondering what the future holds.

I'd suggest you get your CV updated... and also put together a portfolio. If/when the new company comes to visit, they'll want to meet with the team who has kept everything running and see if they can be integrated into the new company. You're not re-interviewing for your current job a la 'Office Space', they want to see if you can provide extra value to the company if given the chance. This is where you impress them with how you saved the day keeping X-system online, or how you automated something that used to take days, into minutes. Things like that.

I would NOT suggest signing a 1yr committal on a new lease with the intention of staying with the company. My advice is from someone who has sat on the other side of the table, and while I'm painting you a rosy picture because you've given me no reason to think less of you.... I will state that someone people will be laid off. Duplicate positions, fakers, incompatible team members, etc. Not everyone makes the cut. If you're a decent worker who can be taught new tricks, odds are on your side of being "asked" to join the new company (where you'll still do your current job, and take on more responsibility for a while, until we can find a way to reduce your criticality to the old entity).


tl;dr - Fear of uncertainty is normal. You don't have the full picture of what's going on behind the scenes. You'll see the writing on the wall IF layoffs are coming. Don't do anything rash.

u/canadadryistheshit · 28 pointsr/sysadmin

I was in your same shoes 3 years ago when I took my first SA internship. I was the only person on site for 8 employees locally, 30 around the country.

I was scared to make actions at first but the first thing you need to do is learn your network in and out and document the shit out of everything before you even make a change. After that, you will be confident and I am sure of it.

1.) Begin a document called "IT Department Handbook" - add everything you find to it, except passwords. Refer to it, love it, it will always save you. Include disaster recovery in it. Make it so that a third grader can understand it. I have one thats 50 pages right now. This will save you as it has saved me so many times. Make it confidential though, because it will end up holding information you don't want people to see on the outside such as IP addresses and your network map.

2.) Keep passwords file but separate from the system and indistinguishable. I actually keep a password file on my phone in my memo's app but I don't have the full account usernames associated with each one. I provide really indistinguishable hints to the username, usually riddles that only I would know.

3.) Get Veeam endpoint backup and find a place to backup your DC (full backup) and any databases at the very least. You can create a standard for backups later.

3a.) Find the Domain Controller's recovery password immediately.

3b.) Create a recovery USB for all your servers and put them in a location where you can find them later.

4.) Get a Network Diagram going, then after that...

5.) List all Roles and Features each server has on the network diagram, what each server stores, what applications run on them and how essential they are to the business. Example: Domain Controller. No domain controller, no work can be done. CRM: No crm, people can't keep of their cases on the webserver but rather locally, they can live without it for a short time. Start thinking about disaster recovery.

6.) Develop a Khanban System. It's an agile project management method I learned from reading This Book -- I highly suggest buying this to help you better your practice. Put tasks in the backlog and move the ones you think need to be done sooner than others to your daily or weekly sprint.

7.) Find out who uses what server for certain tasks. This may take a while but it helps.

8.) Something I do personally before doing any changes to Group Policy or Regedit is I save their current configurations before making changes. Therefore, if something doesn't work right after a setting is changed, you can quickly revert back to it's last state.

9.) If you have the capability and hardware, get clustering going. So if a DC1 fails, DC2 takes over and everyone can still authenticate and work.

10.) If you have the capability and hardware, create a test environment reflecting your live network on a very small scale but enough to test "Ok so if I make this change, can people from workstations still login, can they still access the development server... etc." - you can create a test domain under your current forest and have it remain separate in this test environment.

11.) If it's not already in place (this might take some time) create a naming nomenclature standard. I.E. DC1.example.com (domain controller 1), DC2.example.com, PS1.example.com (production), WEBS1.example.com (webserver), TE1.example.com (test env.), WK1.example.com (workstation number 1...2...), VM1.example.com (virtual machines). This will help when it comes to debugging issues. My boss likes to make personal names for his servers which drives me fucking nuts because we have 20 servers between us and our clients that we manage. It's a lot better for him to mention "yea I cant get into PS1." rather "I cant get into rabbit" - and there I am trying to remember which server rabbit is and what features it holds off the top of my head; which is where a network diagram can come into play.

u/Zaphod_B · 7 pointsr/sysadmin

I sort of am on the fence of recommending these books but have you read?

  • Phoenix Project link

  • Art of the Start link

  • The hard Truth link

    Learning how businesses work definitely improves your tech skills. It helps build logic based around what is best for the business, not what is best for IT, or what is best for you. Learning how IT becomes a finely tuned oiled machine for your business is even better.

    I have read some of the books on start ups and business so I can understand where they come from, what they are trying to accomplish as a business.

    The soft skills will come as you work with more and more people. Just always try to walk into a situation as a neutral part, listen, observe, learn and don't be a jerk. The soft skills will develop pretty easily that way
u/Life_is_an_RPG · 2 pointsr/sysadmin
  1. Backups, backups, backups. When things goes wrong (and they will), you need to be able to restore anything that was lost. Redundancy is your friend - backup to tape, backup to the cloud, backup to anything that safely puts the company's data in another location. No use having a closet full of backup tapes and systems if the building burns down.

  2. Practice restores at least once a quarter. In an emergency situation, you need to be confident in your ability to do restores.

  3. Document everything. Test the documentation and refine. Eventually, you want documentation simple enough to use at 2 AM when you're still half asleep and fighting off flaming zombie ninja pirates.

  4. Get good at scripting. If you do something twice, assume you'll do it again (and again) and write a script. The best compliment you can receive as a system admin is to be called 'lazy'. A lazy system admin writes checklists and scripts so they don't have to reinvent the wheel - or can walk someone else through the task on the phone.

  5. Small companies often don't have a change control procedure - create one and use it. Get approval and/or sign off for significant system and network changes like OS upgrades and installing or decommissioning hardware. When it hits the fan, don't become the scapegoat without a paper trail of notification and approval to deflect or absorb some of the blame.

  6. Implement a guaranteed system downtime window for maintenance every month/quarter. Even if you don't need to perform maintenance, disconnect the network. You want to train (mentally condition) management and users to accepting regular preventive maintenance. Every company thinks they need to run 24/7 and few actually do (if the parking lot isn't as full at midnight as it is at noon, they're not a 24/7 company). Scheduled downtime is better than unscheduled downtime because you were accommodating and kept pushing off preventive maintenance.

  7. If it ain't broke, don't fix it. Unless you have a known bug or the patch/upgrade will fix a security flaw, don't upgrade just because a new version comes out. If the application or OS works fine and users aren't screaming for a new feature, keep using it. New versions mean new bugs.

  8. Always be learning and cross-train others when you can. First, the more you learn about other OSes, scripting languages, hardware, etc., the better you get at solving problems because you can learn to look at them differently. Cross-training helps you learn by forcing you to explain how something works to someone else. It's also how you'll be able to convince your boss the place will survive while you take 2 weeks of vacation. My philosophy for the last 30ish years has been to learn something, document it, and teach someone else how to do so I can learn something else. My goal at every company has been to work (scripting and documentation) and train myself out of job.

  9. Read 'The Practice of System and Network Administration'
    https://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668/ref=sr_1_3?ie=UTF8&qid=1517591045&sr=8-3&keywords=The+practice+of+system+administration
u/xb4r7x · 2 pointsr/sysadmin

I've been doing desktop support for about 3 years for my university.

I just accepted a full-time offer for a Jr. Sys Admin position, and I'm currently reading this book which was recommended by my future supervisor. A lot of the topics covered in the book are things that I already know, but definitely good refreshers. It covers in great detail the things that any good sys admin needs to understand. If you've got time to read 1200 pages I'd recommend it.

A Jr. Sys Admin position is definitely the way I would go... You'll learn a TON (I know I'm going to and I haven't even started yet) and it can potentially pay very well; mine certainly is.

You may want to check out /r/sysadminjobs if you haven't already. That's actually where I found the job I'm starting in September. :)

u/generalonlinepersona · 3 pointsr/sysadmin

Congrats on the good technical review!
Generally soft skills are 'inter personal communication' and 'customer service'.

Answering your direct question though. . .

I think it boils down to time and prioritization. You have to take the appropriate amount of time to do things correctly, and you have to retrain yourself that you want to do things correctly (remember things), and you want to dedicate the appropriate time to meet those goals. I think empathy helps, but its not required.

Develop a discipline to cataloging things in things in whatever system you use at a corporate level. Ask for refresher training from a manager or team-lead.

For a low cost personal solution, just use a pen and paper and write down what you need to complete today. when new things come in, add to the bottom of the list. Mark through them as you complete them. I sometimes use two columns, one for work, and one for home stuff that I need to complete during the day - bills, things like that. When you keep at something like that for a little while, it helps you figure out what's important to track, what details are important to capture, and what is fluff.

For work with teams, I think digital systems are best - ticketing systems specifically, so everyone can see what others are doing, and with appropriate priorities. Details and action logs go there in case you are out, or someone needs to check status but you are busy. Hopefully you have one.

Don't let app vendors and websites trick you into thinking they have a better mousetrap and all you need to do is spend money. If you don't have the discipline, you won't use them. Some apps do make this process more friction-less, but you may spend more time playing with features than with defining your discipline and using the systems for their intended purposes.

This book may help, and may give you some different perspectives.

TL;DR: There are all kinds of tools that claim to 'do it for you' - ticketing systems, to do lists, iphone apps, but without discipline and re-prioritizing, you probably won't use them.

u/xsdc · 5 pointsr/sysadmin

Personally, I rarely join these organizations for a few reasons. Mostly I feel that they are frequently out of touch and tend to be idealistic, there are rarely speakers or topics of practical use to someone on the job. I understand that most students don't realize this, but being on the job while attending school it really chaps my tender bits.

That said, I am very interested in a decent professional organization provided it meets some requirements.

  1. My time is valuable, please do not waste it.
    1. I don't mean the schedule has to be completely filled every meeting, or that there should be no time set aside for organization matters; I just feel that a lot of these organizations try to fill the time with banal matters when they have nothing else planned but the "end time" isn't there.
  2. Show me, Don't tell me.
    1. Lectures have their place too, but 9/10 times a practical demonstration is much more informative.
  3. How does this apply to me?
    1. If you want people attending speakers, the topic needs to apply to the audience on a wide scale, which I've seen fall down the tubes. In general this point is followed though in these organizations, but it can't be neglected.
  4. Don't try to sell me your crappy software when I ask questions about how to do certain things
    1. this more applies to the speakers from specific companies that come to my work, however I've seen it happen at organizations like this too. Speaker comes and gets asked question on how the software works, yet spends his entire time marketing his product.
  5. Please do not be fanboys.
    1. I know you think 'software x' is the best thing in the world and 'os y' is the end all be all, but not everyone in the profession feels the same way. An OS agnostic group is the only way to go for these organizations as OS preference is fairly polarizing.
  6. Finally: Plan in advance.
    1. If I have to move my schedule around frequently to attend, I will likely decide it's not worth it.

      Now, to go to the actual question presented; What do young professionals want out of an organization like this? this really depends on who you're targeting, those who are in the field will likely be looking for lectures/presentations on best practices, practical examples of deployments of "the next big thing" and hands on training. Those who are in school for this are looking for cool presentations that validate their choice of career, Crazy speakers ("can you get Bill Gates?"), and the stuff I mentioned first. I'm not saying that a person in the field doesn't appreciate that stuff, but the draw for someone in the field is a bit different.

      Last, but not least: books are a good draw. I could see offering a nice book for all the 1 year members or a month or two long promotion "join and get this book free." I'm not sure the budget for you guys, but it's an idea. It'll be hard to draw young people until you have a decent amount already no matter what though.

      Sorry for the long post

      TL;DR: Skip to the paragraph first word "Now" if you want the answer to the actual question.
u/MRdefter · 12 pointsr/sysadmin

For me:

Freakonomics <- Showed me a different level of problem solving, via thinking about the motivation behind things.

The Icarus Deception & Linchpin <- Helped me realize I hate doing the work of a cog in a machine and that I enjoy my work if I get to express myself via creativity.

Currently reading:

How To Win Friends And Influence People <- It may be old, but it's still a great resource for human relations, even today. I don't know about most people around here, but I don't like only staring at my monitor 24-7. You can kind of think of it as the start to social engineering. You learn the correct inputs so that you may get the outputs you desire.


Bonus: Not sure if this counts, since it could be considered "technical":

The Phoenix Project <- If you ever interact with non-IT folks, you should read this book. If you are a non-IT person and interact with them, you should read this book. It shows you there are more ways then simply supporting a business that IT should be utilized. I read this after I'd been "doing devops" for a couple years already, and it really solidified a number of points. It's also a great talking point if you ever interview with someone who HAS read it. The only feedback I've received has been positive when I mention this book (to someone who has read it).

edit: words

u/AltReality · 3 pointsr/sysadmin

I think he is referring to a multi-boot USB, not just selecting a single ISO to 'burn' to the USB. I like xboot myself, but yumi is another one but I wasn't able to get it to work. There is also UNetBootin, but I was also not able to get this one to produce a workable USB. Another one to try is called Easy2Boot. I'm seeing one called multibootusb.org as well, but it looks like it is only linux distros, not just any random ISO file.

Lastly you could invest in something like this, which is a hardware USB that allows you to select which ISO to boot from.

I hope this list helps. Like I said, xboot is the only one that I've been able to successfully boot from windows ISOs as well as linux ones. Good luck :)

u/Midnight_Moopflops · 1 pointr/sysadmin

Another "lunches" book to read after the first is Powershell Toolmaking in a month of lunches there's another book coming out on the matter of Scripting later this year.

Also, for reference see if you can get Powershell in Action

It was written by the man who architected and designed the bloody thing, so you're in good hands. I've not read it cover to cover, but it's certainly the definitive reference on the subject.

All above books rated 5/5 stars on amazon by a lot of people.

If you're so bogged down, stitched up and scared to even think about automating anything, then I'd absolutely recommend The Phoenix Project this is the paradigm shift IT has gone through over the past decade. Essentially, IT has taken on board efficiency and best practices that have been standard in the manufacturing industry for decades, to incredible success.

Seriously, "Bag of Nails" IT shops are on their way out. If they're that unwilling to take a step back and do things the smart way, they're a shit company to work for. Learn about technical debt and why it's critical to pay it off.

DevOps and Site Reliability are in essence the latest buzzwords in IT service management, but there's a lot of positive change going on in the industry off the back of it. There's a sort of productivity Gold Rush.

If you're bogged down your current job sounds like the perfect place to cut your teeth and leapfrog off the back of it to move into a better organisation who wants to work smart.

Have fun!

u/iTguy22 · 3 pointsr/sysadmin

Lot's of questions... but here we go. (Warning... you didn't say I had to self censor. Some swearing below)

  1. I was always in to electronics. I did some time as a car stereo installer as well as doing car alarms. I realized it wasn't going to pay the bills for the rest of my life (or at least not provide the kind of income I wanted) so... I decided to step it up a bit. A couple years doing basic computer work, software installs etc and I decided to go back to school (very late at almost 30).

  2. Basically the ladder - helpdesk, junior admin, tech 3, worked at a couple MSPs and got to my recent employer as lone sys admin.

  3. I'm a manager of a small IT team so for me the hardest has been picking up people skills when I haven't needed them for years. Let's be honest here most of us don't go into IT because we want to be people persons. Other than that - organize. Read Time Management for Sysadmins. But the biggest thing you can learn along the way is when to admit you're over your head on something. Don't screw it up because you're afraid of looking stupid. Admit you don't know, then research the hell out of whatever it is.

  4. Everything is a learning experience. Basic electrical I learned in car audio. Organizational skills, planning etc I learned in a job doing logistics. I don't care if you're working at Starbucks... there's something to be learned wether it's inventory management or marketing.

  5. I went to one of those over priced, spend the rest of your life paying for it technical colleges. Why? Well I needed to take classes at night. Also, the major universities offered CS courses. I want to actually learn systems administration and networking and I didn't have 4 years for theory. I needed to hit the ground running as I was already employed in the field. Most important class? Cisco CCNA. Network fundamentals are something you will use every day.

  6. RHCSA (Red Hat), MCP SharePoint. Maybe another but I can't remember. They haven't been overly huge in my career. They have been work related in one way shape or form and paid for by the company.

  7. These days being a manager... becoming a people person. Playing the politics. Keeping people happy (customer and staff). Working with high expectations on a minuscule budget. Being in the K-12 space we're broke and expected to make miracles happen. Think enterprise support on a small company budget.

  8. Technology Manager. I report to a director but I'm more technical so basically I drive the bus.

  9. Roughly 95k. I could be making more in the private sector, but I agreed to it, so I'm ok with it.

  10. No. Yes. Maybe. It all depends on the day. I'm not going to bullshit you and say IT is all roses. It's stressful day in and day out, night in and night out when you reach a certain level. When the infrastructure is your responsibility and the buck stops with you it weighs on you every day all day. It's the first thing you think about when you wake up and the last thing you think about when you go to bed. So, no it's soul crushing. BUT... when it's humming along and the train is rolling it's the best job in the world. When shit is crashing down around you, everything is broken and you're the one in the fire, there's nothing like it. And if you manage to get it all back ... well you'll remember it for years to come.

  11. See #10. But ultimately management sucks. I want to be technical. I don't really want to be a people person. I want to work with the systems, the network... I could give a shit that you can't come to work today because your kid has the sniffles or you ate some bad sushi. We've got shit to do and you're holding up the bus. :)

  12. Solving problems. By far the best part of working in IT is solving weird shit.

  13. Like any other job that works in an office building. I have an office, a desk, a chair, a computer and phone that never stops ringing. And email... the emails never stop.

  14. Yes. My wife supported me going back to school, my folks were always helpful and have always been my rock. I speak to my mother at least a couple times a week and she's always my sounding board. Monetarily... no. My wife and I paid and are still paying the bills.

  15. Trick question. I would change everything. I'd be a pro hockey player. Or something badass like that. In IT... I may have changed some stuff, but so far it is working out. I'm not as far along as some of my peers from school, but I'm worlds ahead of others.

  16. The world doesn't owe you shit. You're NOT entitled to anything. I don't care who your parents are, I don't care that you've grown up with computers. Yes, work life balance is a thing. Yes, some people have it. NO, you're not going to have it in the majority of small IT shops especially if you're the sysadmin or network admin. Someone will call you at 2am to say something is broken and you damned well better be in the car 10 minutes later. Sorry, that was harsh! But, the reality of IT work beyond the help desk and desktop tech roles is the business doesn't run without you. If you want to get ahead and get promoted, start making better money, you have to commit. It means being on the verge of burnout, It means being willing to come to work at 2am because some putz in Europe can't get to the mail server. That's the job. If you don't think you can do it... go in to accounting.

  17. Systems admins are a dying breed - the really good ones will stay working, but Cloud services, MSPs and the like are making that look like a closing door. Network admins, programmers, DBAs, security... I don't see them going anywhere anytime soon. Even if you don't become a programmer - learn the basics. Powershell, etc... HTML/CSS/SQL and the like are all good skills to have and stuff you will use regularly in a lot of roles.

    Hope that helps. I'll PM you my basic info shortly.
u/DaNPrS · 5 pointsr/sysadmin

Fuck that. You want to learn the newest shit, not some old antiquated OSs that your company just happens to use atm. Yes I'm being very blunt, you will have a better career if you do so.

  1. Yes. Powershell in a month of lunches and /r/Powershell . If you're gonna do Windows you need this.

  2. No. If you're gonna learn Windows, learn 2012R2. I'm running the 2016 version at home already in test. MCSA atm is for 2012R2, so stick with that. No reason to focus on 2008. The menus are very similar, functions are identical only 2012R2 has some added capabilities and some different ways of implementation. Learn the new way and you'll have better career opportunities. Including where you work now - what happens when they want to update to 2012R2 and you already know that OS?! Don't think of the present, think of the future.

  3. Not familiar with it.

  4. I run it at home for personal use. It's ok, wish I could join it to the domain and it'd stick/be stable at it. For storage is alright. I would not feel comfortable implementing it for a large business though. Small sized, maybe. Great to learn iSCSI and shares and BSD I suppose.

  5. Sure. Edgerouter Lite or even PFSense are great home routers. A coleague runs PFSense as a VM btw. /r/Ubiquiti /r/PFSENSE

  6. Not familiar with it.

  7. Get VMWare 6.0 (Look to the future)

    Also note that Hyper-V is free if you'd like to play with that. You can get that and other Windows Evaluation OSs here.

    I run a Hyper-V cluster with two Lenovo M93 systems, a VMWare 5.5 hypervisor on a TS140, and FreeNAS on a custom machine. My network is all Ubiquiti, ERL, ES Lite, 2x UAP-AC.


u/ghyspran · 2 pointsr/sysadmin

So, architecture can be hard without things to architect, it's very true, and expectations of a junior candidate are going to be lower here, since a lot of junior work is implementing or maintaining things other people have designed and architected. That said, work on finding things to build that have some sort of practical use, whether it is running a site for some club or organization you're a part of, setting up a media streaming system at home, or building some home automation. Then—the important part—be able to discuss intelligently why you made the decisions you did, e.g., "why did you use Apache instead of nginx?" or "why did you use a pair of 1TB hard drives in raid 1 instead of a home NAS?"

An understanding of operational principles also really only comes with actually operating things, and, as a junior, hiring managers are usually going to be mostly concerned with whether you understand that certain concepts are important, rather than whether you can implement them adequately. Some examples of the sort of questions you should be able to talk about confidently, even as a junior:

  • Do you understand the basic concepts of automation and config management and why they are important?
  • Why might someone choose to run something on-prem vs in a cloud provider?
  • Why might someone run something on bare metal vs virtualized?
  • What benefits or concerns would someone need to consider when deciding whether to use containers to deploy something?
  • What are some things to consider when deciding what operating system to deploy something on?
  • Why is the principle of least privilege important?
  • Why is monitoring important? How do you decide what to monitor? How do you decide what should page someone vs send an email or create a ticket?
  • Why are ticketing systems important?
  • How do you decide what to document and at what level?
  • What do you need to consider when setting up logging for a system, group of systems, or an application?
  • What do you need to consider when setting up backups for a system or application?
  • Why is HA important? What are some methods of implementing it? Why might you choose one over another?
  • What considerations do you need to take when planning for business continuity/disaster recovery?

    Team play and project work, however, are not tech-specific, and you certainly already have experiences of some sort in these areas. Anything where you had to work with a group of people over a period of time is relevant experience you can learn from. It doesn't really matter whether you're talking about a school project, helping your aunt build a deck, or defeating the evil lich lord with your motley band of D&D characters. What's important is whether you can talk about good and bad experiences working with other people to accomplish a long-term task that involved planning and coordination, along with what you learned from the experiences.

    For example, while interviewing for my current job, I talked about getting fired from an on-campus job at college for flat-out telling my boss in front of my coworkers that I wouldn't do a particular task. At first blush, you'd think that would immediately get me rejected, but I explained

  • how I felt I was justified in pushing back against doing that task
  • how we ended up working things out for the benefit of everyone involved
  • how the incident arose from keeping silent about issues I had with the way things were operating until something pushed me over the edge and I reacted emotionally, and how I learned from the experience to bring up issues like that earlier and in a more appropriate time and place.

    That example and the job it relates have nothing to do with tech, but it's still an example of how team play is important.

    You should check out The Practice of System and Network Administration; it discusses a lot of concepts in a general manner and should help provide a basis for talking and learning about them competently.
u/kusumuk · 2 pointsr/sysadmin

hmmm...I grew out of that position this past year. It was similar in scope to yours. In your position I highly recommend going desktop infrastructure. Studying for it will allow you to at the very least have a clear understanding of the latest technology available to you for architecting desktop solutions. However, it's not enough to know just that. Here's some advice:

  • If you don't have a whiteboard by your desk, get one.

  • learn scrum or some kind of other project management methodology and at first apply it to yourself, then apply it to everyone else within your domain. Hold your bosses to the same standards.

  • learn ITIL and start using the terminology. You don't have to adhere to all the standards, either. Furthermore, it helps you understand your role in IT as part of the enterprise as a whole, and it helps you understand how to architect your IT shop using best practices.

  • If you don't have a testing environment, make sure your department has one. Microsoft MSDN subscriptions allow for as rich a testing environment as you need for as little as 700 bucks a year. Most subscriptions also come with free courses as well. Furthermore, you can buy an r900 hexacore quad socket server with 128gb of ram for under a grand. Plenty of hardware for a competent testing environment.

  • Learn powershell. Don Jones has written books and made training videos showing you how to learn powershell. It's a powerful tool. Learn the .net classes that it can use. If you look up the MSDN writeups for the C# versions of the classes, they are pretty darn close to the powershell version of it.

  • Everything you learn in your studies, test it out. Learn it. Nurture your test environment. Get intimate with the checkpoint feature in virtualization. Get cozy with it.

  • As soon as you possibly can, but only after you've gotten the above fundamentals down, learn system center. It's complex, but wonderful. It'll put you on a whole other level. That will guarantee you a job.
u/J_de_Silentio · 6 pointsr/sysadmin

I don't have ADD, but I do exhibit some super mild symptoms similar symptoms sometimes (from what I understand, maybe just one symptom), so I have a few suggestions.

  • Find a comfortable place to work. I work best on my couch and at my desk. If I'm anywhere else, I often have a hard time maintaining focus (coffee shops, other offices, conference rooms, etc.). I think comfortable working spaces is one of the workarounds for ADD.

  • Stop reading shit like reddit and slash dot. You said you used to read for enjoyment, but now you can't. I've been an avid reader in adulthood and read fiction and super technical philosophy (journals and books). I've found in the past three years or so my ability focus has waned. I read somewhere that short Internet articles are to blame (or contribute to the problem). So I've stopped using reddit and other online media as much and my focus has improved (it takes time, though).

  • Th pomodoro technique works for some people to help them focus (not me).

    Also: This book might help
u/Mariognarly · 1 pointr/sysadmin

This book is a very good self study resource for Red Hat's entry level sys admin certifications. Covers RHCSA stuff (entry level), and RHCE (intermediate level). Start with the RHCSA items, it will run you through basics of setting up FTP, HTTP, DNS, Samba, etc. servers.

Also, there are efforts like this one that crowdsources preperation material for those above certifications as well.

But like others have suggested, install RHEL/CentOS in a VM, and just play with it. Familiarize yourself with common commands, services, tasks, installing software (yum), and google linux forums for answers.

Congrats! Welcome to linux administration, and best of luck.

u/dailydishabille · 2 pointsr/sysadmin

The team I'm on is somewhat unique in our organization and we have been using a modified and always evolving Kanban method.

Our choice to try Kanban came after having read The Phoenix Project by Gene Kim. We really loved the iterative feedback that a system like Kanban can provide.

We started with yarn and sticky notes on a whiteboard until we felt comfortable with the process and then migrated to Kanbanflow. We do individual task time tracking in Toggl.

We had played with bigger solutions targeted for VAR/MSPs but found that they also wanted to be CRM solutions (and a lot of other cruft that we didn't need). Basically, we were wasting our time trying to learn tools instead of processes.

Will we be using these solutions six months from now? Who knows. We are able to shift pretty easily between tools and like to be able to pick what we need. We tend towards simple, useful SaaS offerings that know what they want to provide and do it really well.

u/ramblingcookiemonste · 11 pointsr/sysadmin

Sounds like you already know what you want to do! I'm on the Microsoft side of the house, love scripting, and am fortunate enough to spend the majority of my day working in PowerShell.

Definitely check out The Practice of System and Network Administration if you haven't already, it lays a great foundation for the areas in IT.

If you go the Linux / scripting route, read up on and spend more time with shell scripting and Python (perhaps Ruby if you get into config mgmt). If you go the Windows route, read up and spend more time on PowerShell. Either way, being able to code and automate will be very important in our field, it sounds like you are on the right track.

Cheers!

u/lerun · 1 pointr/sysadmin

DevOps is a pretty large field and it is not only tech.
For beginners I would recommend reading the Phoenix Project, it's a novel about a bunch of ppl and you follow along as they make the journey from traditional IT to the DevOps way. It's a nice introduction, though it does not give you answers for how to do DevOps (https://www.amazon.com/Phoenix-Project-DevOps-Helping-Business/dp/0988262592).


DevOps is the next step in making Development and Operations work better together with less friction. To achieve this one needs more lean processes and better tooling.
The tooling part is where you would put automation that help lessen the burden of everyone.
DevOps is a bit in the hype, and many understand it as a magical bullet that will make everything so much easier. Though this is not true, it takes a lot of effort to develop and maintain automation.


I'm working mostly with VSTS (Visual Studio Team Services) and Azure. Here I develop Powershell code to make it easier for code to flow through our different environments by leveraging tech to help remove some of the more burdensome processes.

Though if Operations does not already have a good ITSM framework in place, and you have Developers that just want do whatever the hell they fancy. The road to DevOps will be a hard one.

I did not have much DevOps experience when I started, though I had a strong background from Ops where I was well versed in how to merge processes and tech beforehand. So it was just an extension of this. Also my Powershell skills are good enough so I can write the automation I discover is needed as I investigate the existing glue in place between Dev and Ops.

I would say the biggest hindrance for most to do great DevOps is control of WIP (Work in Progress). This is Business Projects, Internal Projects, Operational Change and Unplanned Work. If one can visualize all these types of WIP flowing through Dev and Ops, one have a good foundation to build the rest on top of.

u/norcalscan · 2 pointsr/sysadmin

Time Management for System Administrators has some great ideas to get you going, that work for solo on up to large teams.

A lot of people have said it already, in short

  • Learn to say no, or at least "not at this time"
  • Carve out literal time for certain tasks. Morning can be tickets, afternoon can be projects, or whatever best fits your day (if your calls usually happen in afternoon, make the morning your project time)
  • Out of that carved time, Friday's are read-only, so handle light-weight tickets during ticket time, but project time on Friday is for investing in YOU, education, catch up on industry news, etc.
  • You will need to time-shift your day, so get everyone (and you) used to submitting tickets, leaving voicemails, taking "I'm busy at the moment but let's try after 1pm today" seriously, etc.
  • Let the phone ring, or put it on silent during project time. They'll find you if there's an emergency. If your alerts don't tell you, users will definitely alert you to flames coming out of the server. (No flames, then come back after 1pm please...)

    edit: I missed you had sites as well. You can make a certain day or two travel days, the sites know to expect you only then, primary site knows not to expect you. Even better, if you only have 1 or 2 tickets for the site with 6 users, bring your projects with you (or self-investment ed) and enjoy the peace and quiet of a remote site. Nobody misses you at the main site because you're expected to be gone. Site support as a solo IT can really throw a wrench in all of this, so you'll really need to set/define expectations of service etc there.
u/mappie41 · 1 pointr/sysadmin

If you are in a lower cost-of-living area then that is probably ok. What you describe seems like mostly level1/2 stuff. My jr sysadmin makes more than that but I think the help desk people make less, but those are the level1 hd people. I don't know how much our level 2 people make (I'm not their manager).

As for my own experience, I made about that much 20 years ago as a level 2 help desk/jr sysadmin at a large company in contract role. I worked a lot on learning everything I could that would help. The more valuable you make yourself to your company the more you'll make, over time and if they have a good management team. This is why switching jobs every few years can be so fruitful, big jumps in pay or smaller jumps with a bigger title and then growth at the new company.

​

Read about time management (https://www.usenix.org/legacy/event/lisa06/tech/slides/limoncelli_time.pdf), script everything you can (https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617291080), and document everything you can (a wiki or runbook or such).

u/dnietz · 2 pointsr/sysadmin

Yep, a typical compressor condenses moisture and there is a risk of blowing out moisture.

They do sell "dry air" blowers, but they are expensive. They are 100% dry though and an option if you can afford one. The broadcast industry uses them frequently for their transmission antenna cleaning.

The other option is a fan blower, which is much more powerful and efficient than canned air. I have several of these:

http://www.amazon.com/Metro-Vacuum-ED500-500-Watt-Electric/dp/B001J4ZOAW

They are pretty awesome.

u/planiverse · 14 pointsr/sysadmin

I think you need to keep an extremely open dialog with the COO. She's your boss. But she's likely hoping you become a trusted adviser rather than someone who needs to be managed.

  1. You need to let her know that your feeling uncomfortable with the new role and responsibilities, and let her know you have a plan to move forward.

    Don't go in there helpless. But don't hide your deficiencies either. If you want to grow, she will help you do it. But you need to be self-reflecting and have ideas as to how to move forward.

    The plan itself will come in the next suggestions.

  2. Try to piece together as many past projects as you can remember. Recall the goals you were trying to achieve, the general timeline, and any roadblocks along the way.

    Reflect on what was successful, and what could have gone better. Get a feel for the general process you defined. Could you have communicated the goals in a more organized fashion? Could you have defined milestones to help set management expectations? Should you have explicitly mentioned certain things weren't goals? What alternate plans where there, why were they rules out, and did management know about them? Were they properly budgeted? Was there adequate testing? Was it prioritized properly?

    Do this for every singly project you can remember, then focus on identifying the strengths and weaknesses of each rollout. The strengths are what you were good at doing. The weaknesses were what you were bad at.

    It could be as simple as "You know, looking back at this rollout, it all feels like one big step to me. I'm having trouble breaking them apart into steps, so it's hard to know when one piece of the project is done." You also need to identify why it's a problem and could get in the way of the project.

    Look for patterns, and lay them bare. She'll be aware of some things and not on others. But you're demonstrating a clear willingness to grow, and that your solutions aren't just grasping at straws.

  3. Research training options.

    When you assess training options, you need to realize what you actually need. Do you need a class on project management, where you can ask an expert questions, or should you focus on ITIL standards, maybe you just need to start with a book, or maybe a book about modern it departments, or just a professional community.

    Your project successes and sore spots, as well as your own comfort level will answer this question.

  4. You asked about tools and tips here. That's important, but if you don't know what problems you're trying to solve, you can't choose an effective tool.

    For any suggestion here, make sure you can justify its efficacy. How will the tool solve something that went wrong with a project?

    Maybe the tool isn't a program, but a process . . . A process that you're technically building up by reflecting on project results and starting the dialogue.

  5. Define your role. What do you perceive your role to be now? What do they perceive your role to be now? What is the immediate goal for your role? What do they expect of you in 5 years? Where do you expect to be in 5 years?

    They might want you to stop break/fix entirely. You won't be getting an assistant, but you'll be put in charge of someone with their own role, goals, and projects. THEY handle break/fix, rolling out an update, deploying a project.

    So when a rollout moves past configuration and basic veirfication, they're role is to test it. Then give it to the people you direct. Then give it to everyone. They're not assisting you, they're following their own objectives within the parameters of their job description.

    Maybe they see you as becoming a CIO type in 5 years: the budget, vision for the company, etc. will fall on your shoulders. You'll have a team of people under you doing technical work, while you handle technology from the business perspective. And maybe that's not what you want.

    You might want to stay technical and specialize. You'll need project management skills as a Sr. admin or a manager, so your short term goals align. And they're not big enough for a CIO now anyway, so there's no harm.

    But your building the expectation that, once you grow large enough, there WILL be someone over you. Because that's not what you want.

    ------------------------------

    It's all about being comfortable, open, and trying to improve. Right now, you're deep into the learning phase. Own it. Everyone will respect you for it.
u/yacoob · 4 pointsr/sysadmin

If you are looking for general advice, instead of domain specific (ie. Windows, Unix, networks...), this book should give you plenty of information and ideas for further reading. Very practical and sane approach. ITIL materials might be also useful, but that's much heavier reading, and rather, um, self-centered.

Keeping a blog with things that you've discovered/struggled with/hacked up together is rather useful - both for you, and for community at large. I actually do this both at work, writing about things specific to our infrastructure, and on the outside, when I find something interesting. It's easy to fall into trivial topics area though.

Last but not least: respect for picking sysadmin job despite having strong developer background. We need this kind of people :) You might also want to read around on DevOps, although take it with a grain of salt.

Good luck!

u/AnonymooseRedditor · 3 pointsr/sysadmin

In short...yes. But there are a few things I would change given the chance. As others have said, either get certified, MCSA, MCSE and/or Network+ / CCNA. Or get a 4 year degree. The 4 year degree is more of an HR filter than anything, but now that I'm older and have a family it's a lot harder for me to go back to school and complete it. Small companies or managed service providers are great for a short term to get your feet wet in the industry. This is a great book The practice of network and system administration It is not very technical and it is kind of dry but it gives a lot of really good insight with how business IT works, things to consider when working on a particular type of project. For example moving an office, there is a chapter on office moves and what to think about... Some say it's a lot of common sense stuff but I found it helpful early on in my career.

u/warpigg · 2 pointsr/sysadmin

Best book IMO that will get you everything start and finish in Linux AND be a great future reference:

UNIX and Linux System Administration Handbook (get the latest edition - I think its 5th ed)

Also I like the Linux Foundation certs - same folks that employ Linus. They are very good (read: hard as RH certs) now and allow you to take Ubuntu or RH as distro to take the exam in . Plus cheaper and free retake. Linux Foundation

HOwever best practice is to work with it over and over practice building/installing web servers, databases , mail servers, docker etc etc. Learn vi, learn to search on command line, bash etc.

u/codecx81 · 1 pointr/sysadmin

I found it to be one of the easier tests, just a lot of reading and memorizing their terminology.

Like its been said multiple times in this thread, its really not for you, its just to have it on your resume to catch the eye of Non-IT HR types and get you past the screening process.


I once had a director who claimed to have her ITIL. If she managed to pass it, you can. Trust me.


If you want to augment ITIL with practical knowledge, this book was mentioned a few days ago. I picked up a copy and read a few chapters. Really thorough, I think its probably one of the best resources I've read on the topic.

Ended up tweeting Thomas Limoncelli just to tell him how awesome he is. His sysadmin prowess is legit, the guy replied within minutes. Even at Google, the sysadmins are symbiotically hooked to their smartphone like the rest of us. lol

u/LordEli · 1 pointr/sysadmin

Sure.

  1. Have confidence
  2. Study, study, study. Ideally you should naturally love learning. Check out the A+ exam objectives. here
  3. I recommend buying a copy of The Practice of System and Network Administration
  4. TRY to get 8 hours of sleep a night.

    Good luck. You'll do fine.
u/sycnewtox · 2 pointsr/sysadmin

I appreciate you asking! I love sharing knowledge and resources.

I learned by using PowerShell in a Month of Lunches, and also a wonderful subreddit called /r/PowerShell.

On top of that, I looked at other people's work whether it was on GitHub, Reddit, or YouTube, and I learned how the language worked. Remember, everything in PowerShell is an object. If you remember that, it'll help you a lot!

I also used Microsoft's Virtual Academy for PowerShell, located here: https://mva.microsoft.com/en-us/training-courses/getting-started-with-microsoft-powershell-8276

If you have any other questions please don't hesitate to ask.

u/Noobmode · 4 pointsr/sysadmin

Some tips.

r/homelab is a great place if you want to look and ask quiestions

r/SysAdminBlogs is a great place to find other information from other sysadmins

r/PowerShell is great for powershell stuff

If you want to get started on powershell the book "Powershell in a month of lunches" is a great read if you have time!

https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617291080

u/joshlove · 1 pointr/sysadmin

When I was a field tech, mostly working with structured cabling and networking equipment I took the following along with me, some of these things are no longer needed with VOIP phones though:

u/unix_heretic · 2 pointsr/sysadmin

Powershell. Think Python, but with more obnoxious syntax. Powershell in a Month of Lunches is well-regarded, and if you know Python already, you can probably skip the first several chapters.

If you already know a CM tool (e.g. Puppet/Ansible/Chef/Salt), check into the Windows/DSC support in said tool.

AD = Dynamic DNS + LDAP + Kerberos. ADSI Edit will be your friend.

Start learning the basics of GPO - it's sort of the desktop/back-office server equivalent of a CM tool. Most often hooked into an AD group/OU.

Learn to live with love Event Viewer. Simple text-based logs are a rarity in Windows world (with the possible exception of IIS).

Don't sweat it too much. Learning the basics of Windows should be pretty quick for a Linux admin.

u/almostdvs · 3 pointsr/sysadmin

First, read our Wiki. It is very thorough and answers a lot of these common questions such as

day to day? The Practice of System and Network Administration
And the topical reference books listed below.

Books to help in shaping a sysadmin? The above &:
The Phoenix Project
Time Management for System Administrators


Topical Books I see mentioned often and have been very helpful to me:
Powershell in a month of lunches
Learn Python the hard way
Unix and Linux System Administration Handbook
Windows Server 2016: Inside Out

Group Policy
AbsoluteBSD
FreeBSD mastery:ZFS
CCNA
RHCSA/RHCE
Pro Puppet
SSH Mastery

On my docket:
FreeBSD Mastery: Advanced ZFS

Michael W. Lucas and Thomas Limoncelli are very good sysadmin writers, you can't go wrong with a topic they have chosen to write about.

Most of the *nix stuff assumes a baseline knowledge of how to use a unix-based system. I learned as I went but did pick up an old copy of Unix Visual Quickstart Guide not too long ago at a used books sale, which seems like a good starting place for someone overwhelmed with sitting at a terminal and being productive.
I notice I don't have any Virtualization books, perhaps someone else can fill in good books. Most of my knowledge regarding virtualization and network storage has been a mix of official docs, video training, and poking at it. Seems innate but it isn't.

u/achthonictonic · 9 pointsr/sysadmin

cc him on code reviews for your day to day scripts and proactively go over the small ones with him, line by line, a few times a week.

I have a list of exercises(pm me if you are intested) from: http://www.amazon.com/UNIX-Linux-System-Administration-Handbook/dp/0131480057 -- I assign 4 of these exercises weekly and go over it in 1:1s. Buy him a few books, and explain that you can't send him to a conference because of budget issues this year, but you want to invest in his career development -- it will go along way to building the mentor-mentee relationship.

The thing I like about this book, its age does give a good historical perspective, but the questions at the end of the chapters are easily adapted into good questions to fit a particular environment.

I've used this approach to bring up 3 jr linux sysadmins so far.

u/PoorlyShavedApe · 7 pointsr/sysadmin

Grab a copy of Time Management for system Administrators and actually read it. It took me months to make the time to read it but it is worthwhile. To start with you get instant confirmation that you are not the only person in your situation and that there is hope to improve the situation.

If management will not let you have a second person talk to them about hosted email. That would remove a chunk of the "stuff" you have to manage. Do a three and five year ROI on it just to make sure, but you are likely to come out ahead after you factor in DR, licensing, and time. Use the old Exchange install and what it took to upgrade as examples.

Even with an open floor plan you need a ticketing system and you need to believe in the system. If people complain tell them the ticketing system is so that "I can better do my job helping you."

The personal PC crap has to end. You open yourself and the company up to liability working on personal hardware.

For your bosses, have a sit-down chat about their "lottery bus" plan. That is what if you a) get hit by a bus on the way home, or b) win the lottery on the way home. For the company it doesn't matter because you're not going to be in to work the next day.

u/crankysysadmin · 1 pointr/sysadmin

I started working full time a bit over a decade ago. Did some PC tech work part time when I was a senior in high school. Did help desk, web development and light sysadmin work for my university while in college over a period of 4 years.

Right now I deal with RHEL and Windows (60/40) most of the servers are VMs running on top of VMware with NetApp used for storage.

I've worked with RHEL, Windows and VMware for my past few jobs over the past 6-7 years. I've done Windows and Mac desktop support. At various points touched Solaris and FreeBSD (waste of time now).

Get this book. It should be your bible. It is fairly OS agnostic:

http://www.amazon.com/Practice-System-Network-Administration-Edition/dp/0321492668

As far as other books, it depends what you want to do. If you have to put food on the table right now and you already know Windows, then I guess you have to be a Windows admin.

But otherwise I'd seriously try to stay away from being a Windows guy. It is by far the most overdone OS and Windows people are literally a dime a dozen. A lot of them are really horrible at their jobs too since without much training you can kinda fumble your way through a Windows environment. As a result, there are a lot of really shitty Windows admins who support Windows PCs and a handful of servers for small business, and get paid absolute shit money to do it.

If you're going to be learning tech skills, focus on linux, vmware, cloud stuff, networking, etc

There will be fewer jobs, but when they do come up, they will pay better, and will be more interesting.

You should still know windows, but you want to learn all those other things. I like that my team is hybrid windows and linux. we pick whichever works best for the application in question.

So if you want books, other than the "bible" i suggested, learn about linux, or vmware, or something that is not windows.

u/gnubyter · 1 pointr/sysadmin

Give me a DM if you need some help and I am cool pointing out resources or giving some pointers. The key is to make the data in the end valuable, instead of a jumble of graphs.

It was recommended to me by the Practice of System Administration book, which I highly recommend as it outlines many great 2017-2018 practices .

u/BryceKatz · 4 pointsr/sysadmin

A few thoughts. Hopefully at least one of them will be helpful.

  • Learn How to Speak Boss. Stop reading this post and go watch this. Yes, right now. I'll wait.
  • Your job is just a job. They get your time in exchange for a paycheck. They do not get your physical and/or mental health.
  • Work you ass off for 8 hours then GTFO. Do things you love, with people you like, and don't answer the fucking phone or your work email until your return to work the next day.
  • Long weekends are your friend. You have vacation time. Use it and don't even feel bad. Don't think of 10 days as "two weeks". In a place this crazy, taking an entire week off will be utter hell coming back - assuming you'll even get an entire week off approved. Think of 10 days as "one long weekend every 6 weeks". Put the time off requests in all at once.
  • Work from home is evil. Home is your safe place to get away from work. Working from home defeats this purpose. Fight me.
  • Read Time Management for System Administrators then do what it says.
  • Document how you spend your time. Do this in addition to the ticketing system, because the ticketing system only tracks time on tickets. You have other things to do, too, and that time probably isn't visible to your supervisor.
  • Document what you do. Get in the habit of documenting EVERYTHING. Convince yourself the task isn't completed until the documentation has been updated, and do not move to the next task until the current task is done. Ignore the tendency to "document it later, when things calm down". Pro Tip: Things will NEVER calm down. Build documentation time into your project timelines.
  • There is never enough time. Ever. I don't care how many people are on your team, IT isn't about having no tickets. It's about properly managing the workload.
  • Incremental progress. You aren't going to change things in big chunks. Don't try. Read The Practice of System and Network Administration: Volume 1: DevOps and other Best Practices for Enterprise IT and do what it says - even if nobody else on the team does.
  • Automate all the things. Seriously. You have better things to do than manually perform system checks. Automate that shit. If it can't be automated, make the business case for upgrade and then automate it.
  • Sometimes it's better to ask forgiveness than ask permission. If your boss is resistant to process automation, pick a small non-critical process, document how much time it takes to do manually, then automate it anyway. Show how much time you saved by not doing this one thing manually. Repeat as necessary until you're the most productive motherfucker on the team. Then use this information to justify a pay increase.
  • Slow the fuck down. My dad used to say, "I'm always in a hurry, but I never rush." Do things as efficiently as possible, but do NOT rush. Rushing causes you to overlook critical aspects of things. Rushing makes you frazzled. Rushing makes you leave your keys on your desk & locks you out of your office. DO NOT RUSH. Things take as long as they take.
  • The phone on your desk is Satan incarnate. Don't answer it unless you absolutely must. (Y'know, like when your boss calls.) Staff will do everything they can to bypass ticketing systems. The ringer on my desk phone is turned all the way down; I can barely hear it. Our phone system integrates with email, so messages show up in my Inbox. Playing back a message from my email is less of an interruption to my workflow than actually talking to some asshat who can't be bothered to submit a ticket. Most of the time, people won't leave a message, anyway.
  • Close your email when you need to focus. Not just minimize the window. Close it completely. If desk phones are Satan, email is one of the Dukes of Hell. Just because someone emails you doesn't mean you have to read it immediately. In fact, replying as soon as a message arrives only serves to encourage users to email you directly as a bypass to the ticketing system. I check my email three times a day.

    I could go on, but most of the above is already in the two books I listed and I'd just be riffing on a theme. I'll leave you with this:

  • They can't take away what you learn. Seriously. Learn it ALL.
  • The best time to find a job is when you have one. Absolutely keep your resume updated and sign up for job alerts on your favorite job site (sent to your personal email, obviously). Take a page from actors & musicians and never stop looking for your next gig.
u/paulexander · 1 pointr/sysadmin

Maybe it will get easier; depends on the culture where you work, and what kind of support you could get from them. Have you approached your higher ups with your concerns, or are they just part of the problem?

Yes, sometimes you get those new projects where your confidence level is high, but being in IT, I learned long ago that nothing is ever as easy as it seems.

If you want some skills to help with productivity and organizing the constant stream of distractions, I recommend two books:

Getting Things Done by David Allen
Time Management for System Administrators by Thomas Limoncelli

Both are better reads than you would think.

u/jordanontour · 1 pointr/sysadmin

I don't think anyone is going to do this work for you but this is the best thing for you; today you are going to learn powershell and it is going to own your soul.

How are your powershell skills? If you haven't yet read anything about Powershell, here are your starting points:

u/blzed · 1 pointr/sysadmin

I've been struggling with the same thing in my environment, so I'm not sure I can answer this question for you. That being said, I've been doing a fair bit of reading on best practices for this issue and from what I can tell the general consensus is "what works best for your environment".

I've been organizing users and computers into their own OUs by department. That may not work best for your environment though. You may need to do by physical location, both in the office, and nationally/internationally.

I've been architecting mine to best be able to use GPOs and GPPs. Again, you'll want to think about your final setup here. Are you going to have printers mapped by location? Are you having specific printers for specific users or groups? Do your users move between floors? Between sites?

These are questions I've been learning to ask when thinking about AD design. I've been reading The Practice of System and Network Administration and I can't recommend it enough. Another book I've been reading is Group Policy: Fundamentals, Security, and the Managed Desktop. The Group Policy book is a great resource and poses different scenarios out to help with organizing AD which I found particularly helpful.

As for those "migrated" users, you'll likely want to put them in the proper OUs, it sounds like there was a merge or something similar in this environment. It may be best to just start over and rebuild the domain, but that's a big if.

u/vilelm · 5 pointsr/sysadmin

You know I signed the NDA and can't talk about the exam, but I can give you my personal opinion.

I finished the RHCSA an hour earlier than the given time, I found it quite easy, but consider that the majority of the Red Hat official objectives are part of my daily job (user management, LVM, scripting etc.) thus I rushed through the questions without problems. I usually work through the CLI because I really enjoy it but also becouse it's quite faster than the GUI.


The RHCE was a bit more difficult, Red Hat gives you less time and I felt the stress of the previous exam (I took both the same day, one in the morning and the other in the evening).

I studied for a couple of months using the M. Jang book. I found it very useful, particularly the labs and the exam samples.
I can just recommend you to do a lot of practice. Install CentOS, spin up a couple of VMs and go through all the labs and examples in the book. Then delete the VMs and restart from the beginning until you can rush through them without googling or looking up in the book.

Then just book your exams and pass them! :)

u/IANALAMA · 1 pointr/sysadmin

If you're involved in windows admin work at all, it's in your best interest to learn powershell. It is so much more robust and...well, powerful than any GUI you use, especially for queries and reporting. I have this book, i'd recommend it highly, about halfway done so far

u/CaffinatedSquirrel · 2 pointsr/sysadmin

Powershell is a favorite at my place of work and allows us to automate some pretty fun stuff.. if you get started scripting or have any questions feel free to P.M. me anytime.. as for resources for powershell:

https://leanpub.com/powershell-scripting-toolmaking - PDF

https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617294160 - Book

https://www.youtube.com/watch?v=6CRTahGYnws&list=PL6D474E721138865A - Video

Hope this helps.. :)


u/baronbrownnote · 2 pointsr/sysadmin

I rate this Redhat RHCSA and RHCE study guide which covers pretty much everything you'll need to know about Centos/RHEL. Maybe even take the RHCSA or an equivalent exam when you're ready (ie LPIC 1, Linux+), it'll certainly help you learn and get hired.

Ignore the gui tools as much as you can, typically they're not going to help you learn any quicker and you'll likely end up not bothering with them at all down the line anyway.

Once you have a grounding, just get out and find yourself a linux admin job as that's where you'll really cut your teeth. Don't be afraid to start looking sooner rather than later, just be honest about your level of experience.

Good luck!

u/jamandbees · 2 pointsr/sysadmin

What OS are you running your svn server on? The basic solution to people offsite accessing svn securely is https, which involves generating an ssl certificate and is fiddly. SVN has a pretty good handbook called the red bean book: http://svnbook.red-bean.com/. The chapter covering your options is: http://svnbook.red-bean.com/en/1.5/svn.serverconfig.html

If I were you, I'd follow bandman614's advice: list everything adn then prioritise. The thing to think about with priorisation is: who are you blocking? Could be that a few developers are getting paid and can't work until you've got the svn setup dealt with. Could be that they're fine for now, in which case don't worry about it before backups.

I imagine your vm to hardware migration is least important, but it depends on why you need to do it: is the hardware that the vms are running on going to vanish? Or is it just to better utilise available resources? Or is it because everyone's getting network timeouts because the VMs are underpowered and running your DNS server and DHCP server, and most of your company can't work properly until they're migrated?

List, prioritise, work through the priorities. http://www.amazon.com/Management-System-Administrators-Thomas-Limoncelli/dp/0596007833 is pretty damn good.

u/robertito42 · 34 pointsr/sysadmin

I'm not sure I'd consider Powershell devops than a core Windows administration tool. Devops to me would be like Chef, Puppet, Ansible, Salt, etc. (Puppet I think would be good for a Windows person to learn.)

You can do Powershell in a month of lunches: https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617291080

You can do the Microsoft Virtual Academy as well: https://mva.microsoft.com/en-us/training-courses/getting-started-with-powershell-3-0-jump-start-8276

Powershell is very object oriented and pipelined, it's not a bunch of "++1, !, +3," style of true programming. It's more of a "get-aduser doej"

A lot of the commands are the same syntax prefixes, like "get" and "export".

Don't be discouraged, envision yourself knowing this inside and out in a year, and your mind will work you toward this goal.

What, specifically, do you work with that you think can benefit from scripting?

u/TheGraycat · 5 pointsr/sysadmin

'Best practice' is such a vague term that you're going to run into issues defining it in a meaningful way for your client's environment.

I'd look at generic guides (u/jhend28 mentions a good one) but also read up on specifics that apply to your environment. For example: best practice for a level 4 data center hosting financial data for banks etc. will not apply at all you a SME with two servers on premise that don't sell direct and hold no Top Secret data.

Have a read of The Practice of System and Network Administration: Volume 1 for a good starting place.

u/Antoak · 8 pointsr/sysadmin

I started in the same boat as you, but I've been doing this for a few years now. Probably worse than someone who came up in a very structured environment.

Get a orchestration mgmt system setup, like salt, puppet, chef, etc.

Get monitoring set up if you haven't already. Central logging and automatic alerting, etc. If you have time, set up visualization for logs so you can see trends, using things like splunk or elk.

Make sure you have backups, and make sure you can actually restore from backups.

These are good, and written by someone with way more experience than me: 'The Practice of System and Network Administration, Second Edition', 'Time Management for System Administrators'

u/skadogg · 2 pointsr/sysadmin

Check out "The Practice of System and Network Administration: Volume 1: DevOps and other Best Practices for Enterprise IT (3rd Edition)" by Thomas Limoncelli.

https://www.amazon.com/dp/0321919165

I'm also pretty new to this job, and this book has been really helpful in better understanding all that we get to do.

u/OdinTheHugger · 2 pointsr/sysadmin

Advice to noobies:

  • If you're the book learning type buy this book
    I use it myself all the time as a reference if nothing else.

  • If you're the experience learning type stand up a series of VMs, and test out whatever tools you expect to be working with.

  • Learn the bare basics of ansible, the command line tool, or even just ssh-agent, it'll help a lot when managing multiple servers/instances

    What I wish someone had told me:

  • Unless the environment has EXCELLENT documentation going in, don't blindly trust ANYTHING. Be prepared to audit your servers and be sure to note down any interesting running services, if you don't know what they are or how they work, that's your homework.

    explaination: I ran into a job where the manager believed things worked in a specific way, with specific servers handling specific things, but no substantial documentation... During my time there I personally found more than 60 VMs and 4-5 physical servers that no one but the previous sysadmin had known about.

    Turns out most of those servers and VMs were a combination of things vital to business processes, but a very small handful of them were very creative attempts at establishing a backdoor into company systems, or 'temporary workarounds' that had become production critical services without proper authentication.

  • Other than that, be prepared to google. Every environment is different, within the open source and Linux communities there are 100s of ways to solve any particular problem, each with tradeoffs and requirements, it may seem daunting but if you're smart enough to ask for advice before starting the job? You'll be just fine.

  • https://stackoverflow.com/a/137173 This is a simple script that displays all user's cron jobs, this will absolutely come in handy, run it against all servers under your purview to find out if there's any hidden magic at work.
u/somahaiken · 3 pointsr/sysadmin

I highly recommend starting with The Phoenix Project. Don't pass by this book just because it says "DevOps" in the title. It quite specifically addresses the ideas of change management, why they are important for IT, and more importantly why they are important for the business.

Then once you're sure you're ready for Change Management, The Visible Ops Handbook is a more prescriptive book that will help you on the beginning stages of implementing Change Management.

u/NoOneLikesFruitcake · 5 pointsr/sysadmin

I found this book in a thread and I've gone through the first four chapters so far. I only got it a little while ago but I really do like how it reads, and the amount it covers is nice. Check out the table of contents on amazon and you'll see what I mean about the coverage.

Other than that we're looking at the same kind of stuff. Let me know if you get any good leads :P

u/ge01f · 1 pointr/sysadmin

Have him read this:

http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668

If he's interested in doing these kinds of processes, and actually finishes the book (it's easy enough to read, just processes not tech stuff), then it might be worth it to just give it a try. Im guessing the expectations aren't very high if the guy doesn't care that he doesn't have experience. This is a job based on experience.

Anyway, thats a good start to the process, then he should start playing around with whatever OS the guy has in a small lab (VMs work great for this).

If it's a real company of any size, it seems unlikely this is going to go great, but it will give him a start in a career, and if he's up for trying it will be a good experience, for experience's sake.

u/eramnes · 3 pointsr/sysadmin

/r/powershell is a nice place to begin and there are a number of links on the sidebar that can help get you started. When I was getting started I used the book Windows PowerShell Unleashed which I really liked. I have heard good things about Learn Windows PowerShell In A Month Of Lunches but I haven't had the chance to look in to it myself.

For free online resources I like ss64 and I also referenced computerperformance.co.uk when getting started.

u/rcas312 · 2 pointsr/sysadmin

Agreed. OP, you nee to take some time and learn powershell - you can certainly do all the tasks that you listed in your post, but again, you need to learn the basics. I suggest starting with this book. Best of luck.

u/scruggsdl · 5 pointsr/sysadmin

Michael Jang's books albeit hard to understand and read at times... are great for prepping for the RHCSA. I have my RHCSA, haven't started on my RHCE yet.

http://www.amazon.com/RHCSA-Linux-Certification-Study-Edition/dp/0071765654/ref=sr_1_1?ie=UTF8&qid=1397241140&sr=8-1&keywords=RHCE

http://www.amazon.com/RHCSA-Certification-Practice-Virtual-Machines/dp/007180160X/ref=sr_1_2?ie=UTF8&qid=1397241140&sr=8-2&keywords=RHCE

Asghar Ghori released his updated book to his RHCT classic that I loved
http://www.amazon.com/gp/product/1467549401/ref=oh_details_o01_s01_i00?ie=UTF8&psc=1

My friend says this one helped him out a lot.

As for the command line, there's a ton of online crash coarse resources you can find with a Google search. Also, there's the lower 100 courses Red Hat has and I'm pretty sure they deal with command line if you have the bucks, or company funding for it.

u/losmancha · 3 pointsr/sysadmin

I currently have a computer science degree (coding) that I got after 5 years working in IT and I found that there's a lot of concepts that you get from studying computer science that you would never get learning to code on your own unless you were very motivated. A lot of the stuff I learned really helped me put the things I already knew into perspective. For instance, learning about different data structures like trees and heaps really locked down my networking and DNS knowledge in particular. I can script circles around most other sysadmins I've met, and i'm far less afraid of tasks I don't know how to do after being told things like 'what's the big deal, it's just a different programming language' in some university classes. I find the computer science degree will teach you how to think in a more structured way, and teach you how to tackle much larger problems. In an IT degree, I'm not sure you'd pick up much that you couldn't get from The Practice Of System and Network Administration. The Cisco stuff... Buy yourself a couple switches or one of those home lab kits and practice with the gear - this way you'll learn the most important thing a sysadmin can learn: how to teach yourself. If you go the sysadmin route, you'll end up needing to learn how to code none the less, so you might as well get that the hard way. My advice though, is spend your off time in university coding or playing with systems rather than playing video games... The guys I know who are really good with all this stuff learned to make it a game for themselves rather than just doing it as work.

u/87TLG · 15 pointsr/sysadmin

There's a lot of information you need and I highly doubt you're going to get it all from one post, one individual or one source.

If you know your IT director is leaving then stay on his good side and bend his ear a bit on how things work there. This will save the owed-beers and frantic phone calls when some shit hits a fan and you can't Google your way out of it.

As for what to learn, Windows or Linux, etc; If you want to stay with this company for a year or few then look at what they need. Find problems, research solutions, test them, present them to your boss in the context of how your solution can save money and/or increase productivity. Is every user emailing you requests for assistance? Setup a ticket system. What's your backup setup like? If you don't have one then you need to figure that shit out quick. Backups are boring and second-class to most people until they need to recover an important file.

I also highly recommend picking up a copy of The Practice of System and Network Administration. http://www.amazon.com/Practice-System-Network-Administration-Edition/dp/0321492668. Most of us wouldn't recommend a tech book from 6 years ago but most of the information in this book is the non-tech stuff you need to know to do your job and do it well.

Oh, and keep lurking online and here in /r/sysadmin

Good luck.

u/uptimefordays · 1 pointr/sysadmin

A decent water bottle.

Earplugs are very helpful.

Whiteboards are also great for tracking work or explaining stuff.

On occasion a knife is also handy.

UNIX and Linux Systems Administration is also great.

I tend to work at a desk and in places where you can't bring your own random gear--which is not something that bothers me.

u/NoyzMaker · 1 pointr/sysadmin

Start with this book: Time Management for System Administrators.

> Currently I write down all my tasks at the start of the day, then split them down to smaller tasks and fit them into 30 minute chunks.

This may be part of your problem. Stop micromanaging your tasks.

> I have done none of my tasks for the day as I have been chasing up other things.

What these other things you are chasing? Why are you chasing them? Start documenting these shiny objects and sit down with your boss and be honest with them, "Hey. I have been trying to get all this stuff done but I keep getting pulled on doing things like this, this, and this. How would you like me to handle these when they come back up again?"

In addition you can see where you time is going and realize you are getting a lot accomplished. Just not prioritizing the right work to get done.

u/threadsoflucidity · 1 pointr/sysadmin

Some literary resources you should find helpful. When in doubt, track down the best in your field and find out what they are writing/doing (Good Luck!)

Learn Windows PowerShell in a Month of Lunches https://www.amazon.com/dp/1617294160/ref=cm_sw_r_cp_apa_c--CzbBZM4SFB

https://www.manning.com/books/learn-windows-powershell-in-a-month-of-lunches-third-edition

Virtual Labs
Building Virtual Machine Labs: A Hands-On Guide https://www.amazon.com/dp/1546932631/ref=cm_sw_r_cp_apa_4b.Czb24JYXTM

Microsoft Books:
(I am positive you can scrape some useful AD information from this collection)
https://blogs.msdn.microsoft.com/mssmallbiz/2017/07/11/largest-free-microsoft-ebook-giveaway-im-giving-away-millions-of-free-microsoft-ebooks-again-including-windows-10-office-365-office-2016-power-bi-azure-windows-8-1-office-2013-sharepo/

u/NastiN8 · 5 pointsr/sysadmin

Rule 1: You better start learning how to teach yourself cause classes are probably not gonna happen. I got this book and taught myself the fundamentals of powershell. You'll need to do something similar. For the application, I'm sure the developer provides an entire site full of documentation for you to use to help develop your skills. It may seem intimidating now, but you'll get used to it.

Note: The powershell book is very easy to find for free if you know where to look.

u/dundir · 1 pointr/sysadmin

I was in the same boat 2 years ago. Go and purchase a copy of this book and read as much as you can. This is the best book out there and will give you an idea of how IT should be handled.

Be upfront with whoever you answer to about the situation. Its bad, and it may get worse. Don't make promises you can't fulfill. If there is anything sketchy (i.e. licensing etc) make sure everything is in writing to CYA. The previous IT person left for a reason.

I would start with validating login credentials for all key systems and ensure you have administrative access followed shortly by evaluating backups, and mission critical services. If you don't understand what something does, don't touch it until you do.

Have the backups been tested, how often are they done, What would happen if x server went down. It doesn't need to be detailed at first and RAID is not a backup. How long is the RTO (Return to Operation) from a critical disaster?

Documentation takes time, but this is what they pay System Administrators for and why they make the big bucks.

Without documentation you can't do your job, you can't take a vacation, and the business will grind to a halt. Its that important.

If you don't have administrative credentials and the previous person was halfway proficient a complete rebuild from the ground up is the most cost-effective longterm solution.

Infrastructure is a foundation, you need it solid before building on it and if it wasn't done properly to begin with its better to have it designed right the first time. If you can't do it then bring in a consultant but it will be expensive.

Edit: I almost forgot. Keep a personal composition book with you, when you find a solution for something write it down. I've found so many solutions and 6 months down the line needed it again but couldnt' remember. This guarantees you won't spend a lot of time searching for the same solutions multiple times.

u/aelfric · 1 pointr/sysadmin

If you're interested in change control, then I recommend The Visible Ops Handbok. It's an excellent, short, introduction to how to implement effective change control in an IT environment.

u/strat_sl · 1 pointr/sysadmin

A book that might help you sort some of this out is The Practice of System and Network Administration by Limoncelli. He has a lot of advice on how to work smarter instead of harder, how to standardize procedures, and sensible ways to structure workflow for both yourself as well as an IT department. It's a great resource for any sysadmin, and doubly so for someone just getting started.

u/coltwanger · 2 pointsr/sysadmin

Honestly, I could never find a technical solution for the non-ticket task items that really worked for me.

After reading this book I went the analog route and write down every task I do. Then, first thing the next morning I bring over tasks that are still on my list from the day before. This has been the best way to keep myself on track and not forget about my action items.

I got a nice planner with a set of planner paper that works well for me (close to what's discussed in the book). It's always open on my desk, and I always have it with me in meetings, so I never have an excuse to not log a task.

u/maximusmgm · 3 pointsr/sysadmin

This book: Best $10 (kindle edition) you'll spend.

http://www.amazon.com/Management-System-Administrators-Thomas-Limoncelli/dp/0596007833/ref=sr_1_1?s=books&ie=UTF8&qid=1342718941&sr=1-1&keywords=time+management+for+system+administrators

I've been doing the sysadmin thing for 6 years and he has taught me some very valuable skills. I wish I would have read this book years ago!

u/randomguy186 · 13 pointsr/sysadmin

> No one else even has admin level access-- except me, very recently, with a big fight.

If this fight was with your current "computer guy," then you have big problems. They may be political, or technical, or security; he may be just offended that a family scion is encroaching on his "turf," or he may be afraid that someone will see his incompetence, or he may be disgruntled by the whole employment experience and planting some deadman switches. Take some time to mend fences; emphasize your need to learn this area of the business, and that you don't intend to displace him, and that the more you learn about what he does, the more you, as a future owner, will be able to advocate for the expenses necessary to keep "IT department" operating smoothly.

But also make it clear that the guy who pays the bills has placed you in charge, and that while you want to hand him his paycheck indefinitely, you are the guy signing the paycheck. Things are going to change, and he needs to get on board with that. He may not be willing to accept this change, in which case you will, unfortunately, have to quietly start planning to replace him.

Give him a chance; he may come around. It sounds like for a long time he's been able to run the "IT Department" however he wanted to, so this is a huge life change for him. I can't emphasize enough how much you need to make clear your loyalty to him, but that the price for that loyalty is his loyalty to you the other members of management.


> We have at least 8 computers still running XP.

Is this because computer guy didn't want to replace them (bad) or because users didn't want them replaced (still bad, but not computer guy's fault)?

> He keeps everyone's passwords on his phone.

This is almost certainly because of employees who think he should know everything about computers, including their password. I'd start with a culture change among employees that passwords are secret; that no one, not even the owner, should have their password; and that writing down or sharing a password should be a fireable offense. However, you need to be sure that passwords are easy to remember.

> Am I wrong to be thinking we shouldn't be having these frequent crashes/problems?

No, you're not wrong. Review your support agreement in detail. Start keeping meticulous records of the problems you're having and the impact to the business, in terms of number of users affected, lost hours of work, and lost revenues. Notify the software company of each problem. When you get to three problems, you need to politely but firmly request an escalation to someone who can address and prevent these problems systematically. There's a good chance that the software company will report back that these problems are the results of past decisions your company has made in contravention of the software company's recommendations.

> yelling at people

Does your company have a culture of yelling at people? Does the owner yell at people? Do managers yell at people? If so, then he's merely following his leadership. This is a culture change that you will have to work on, quietly and calmly, but forcefully. If / when leadership doesn't manage by yelling, then I would make it clear to computer guy that he gets one free yell, but a second one will result in harsh disciplinary action. If the job is that frustrating, get him a heavy bag for the server room and tell him "Whenever our employees are too stupid for words, excuse yourself, tell them that your boss 0110100101110100 told you you have to do something, and go punch the bag." This sounds like it might also be symptomatic of the end users expecting the computer guy to be able to fix anything immediately, and that if he can't, he's an idiot. This is something else that may require some culture change among the end users.

> it's impossible to fix

This is a different problem. If he says he can't fix something, you need to show him that he can. If he exhibits any behavior other than wanting to learn more, you need to shut him down hard. IT changes constantly. Anyone who doesn't want to learn something new all the time doesn't belong in IT.

> visual basic

Eh, unless you're doing custom software development, I'd let this slide as a quirk. Everyone has a right to stupid opinions about things they know nothing about.

> where do I start?

Buy a copy of The Practice of System and Network Administration I think most folks on this sub would agree that it's a good reference for a starting (or even a seasoned) sysadmin. Read it, encourage him to read it, and use it as a starting place for the changes you want to make.

TL;DR IT guy's behavior is symptomatic of a bad relationship between users and IT. It's not all his fault. You need to take charge of the situation and bring him along. If you can't handle one frustrated sysadmin, what makes you think you can run a company?

u/spots5004 · 3 pointsr/sysadmin

I'm currently in the process of revamping my help desk. I'm pretty much following the guidelines set out in this book. I didnt really agree or understand it at first, but after really taking a step back and looking at how things were done, defining the policies and guides he recommends has really helped.

You can also run through the first couple questions of this test. It's done by the same guy who wrote the book, and is a great self-evaluation of how things are currently running for you.

u/sudoraymond · 3 pointsr/sysadmin

There's not better starting point than: The Practice of System and Network Administration, Second Edition

http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668

I've referred back to this book more than any other in my library and I absolutely love it. I hope you'll enjoy it as much as I have!

u/Pyro919 · 2 pointsr/sysadmin

Surprised no one else has mentioned it, but the best resource that I've found on this subject is

Tom Limoncelli's - Time Management for System Administrators

Don't just read it, but actually implement his teachings and you'll be much better off.

u/Seven-Prime · 1 pointr/sysadmin

I would highly recomend The Practice of System and Network Administration as a guide book for moving on to bigger roles. It isn't technical but that's a good thing. It will help build a common vocabulary when talking with more advanced people.

u/Calmwinds · 1 pointr/sysadmin

I was recommended this book, and in my opinion it's quite good. I could link you to a torrent full of every book you could possibly need for stuff like this, but PM me though.

http://www.amazon.com/Linux-System-Administration-Handbook-Edition/dp/0131480057 <-- Great!

u/Konkey_Dong_Country · 5 pointsr/sysadmin

I've always wanted to get one of these hard drive enclosures that supports mounting an ISO so you can choose what to boot all from one device, like this one. They all seem kind of cheap though, but this one has good reviews and it's an attractive price.

u/lustrate1 · 5 pointsr/sysadmin

I recommend using both https://linuxacademy.com/ AND Jang's book https://www.amazon.com/RHCSA-Linux-Certification-Study-Guide/dp/0071765654. Personally, I completed LA first and then worked through the entirety of the RHCSA section in the book, being sure to do every single lab and exercise along the way while also taking handwritten notes.

Using the above, I earned my RHCSA last month. Currently studying for the RHCE with the same two resources and study strategy. Good luck!

u/Clemlar · 3 pointsr/sysadmin

Honestly, this is by far one of the best books I’ve read and should help get you started:

UNIX and Linux System Administration Handbook https://www.amazon.co.uk/dp/0134277554

u/_Maragato_ · 1 pointr/sysadmin

I've just search the thread and couldn't find a pointers I think is worth mentioning:

  • have a diary, a 1 dolar notebook where you write down what you have to do and what you have done each day.

    This helps you not only to track your efforts and see what you have to do but also gives you a feeling of accomplishment on the end of each days.


    Time Management for System Administrators is also a must read IMHO with many great pointers.
u/100hp100armour · 1 pointr/sysadmin

It sounds like you're trying to use technology to solve a problem that correct and useful documentation and processes would solve.

You don't want your team to have to re-invent the wheel every-time a patch is required.

Here is a useful book I would recommend.

Book

u/gamefaff · 14 pointsr/sysadmin

> Crankys Guide to Sysadmin

I would honestly read that. It would make a great no-bullshit addition/supplement to something like The Practice of System and Network Administration.

u/mr_dave · 2 pointsr/sysadmin

Sounds to me like you need a good reference. Something to guide your thought processes and help you evaluate your position from not just a technical stance but a logistical and political one as well.

It sounds to me like you need to hunt down a copy of our bible: The Practice of Network and System Administration

u/MicroFiefdom · 3 pointsr/sysadmin

Sounds like you couldn't get one in time to help with this project. But these "Iodd 2531 Black - Usb3.0 - Hdd -Ssd - Virtual Cd-rom" Enclosures come in incredibly handy. It let's you store a bunch of ISO image, you select which image you want to load and then it creates a virtual DVD emulator that loads via USB letting you boot from ISO images. The Iodd version is basically a slightly updated version of the old Zalman that's become difficult to find. One of the best $40 I've spent in IT in a looong time.

https://www.amazon.com/dp/B00TDJ4BJU/ref=olp_product_details?_encoding=UTF8&me=

u/gort32 · 3 pointsr/sysadmin

Depends on the issue and its priority. Managing and juggling your priorities is everything in this sort of job, involving considerations like "is this a fix or an addition?", "how many people is this affecting?", "how long is it going to take me to resolve this?", and "how confident am I that my estimate is accurate?". Then there's always the wildcard of your manager dropping a scanner install for a secretary that is drop-everything-urgent, pulling you away from fixing your domain controller (which will happen).

Related, this book is the standard for this sort of discussion: https://www.amazon.com/Time-Management-System-Administrators-Working/dp/0596007833

u/youreyestheyturnme · 2 pointsr/sysadmin

Anyone utilized this book or others like it?

http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668?ie=UTF8&keywords=systems%20administration&qid=1465486795&ref_=sr_1_1&sr=8-1

I have come to terms with the fact I am a terrible SysAdmin though I have been in the job for two years. I work at a place that literally has nothing in place other that 2 ADs in terms of administration and I have implemented nothing new to assist in support of a small network of 14 windows servers, about 30 win clients, and 40 switches. I start several projects but they fall by the wayside. I need to mentally reboot and get myself and systems into gear. Any suggestions for resources when dealing with small shop IT (just 1 person) would be greatly appreciated.

u/ScottRaymond · 2 pointsr/sysadmin

I really liked this book: http://www.amazon.com/gp/product/1118289420/

It covers a lot of the 410-412 stuff in really good detail and was an easy read.

u/adam12176 · 9 pointsr/sysadmin

Please tell us more about the benefits of making someone sing and dance as related to IT. Don't worry, I'll wait for you to google some more horseshit.

You want a team building exercise, or something to bring someone out of their shell? There are a ton of them that don't involve stupid shit like this. This gave me anxiety just reading it, and I would not participate. Is this really worth losing a brand new hire? If so your company must have more money than brains.

Recommended reading: A book with literally nothing about singing and dancing in IT.

u/tokyolunchboxes · 2 pointsr/sysadmin

It might be worth it for you to pick up a good study guide for the new material to give you a better idea of what has and has not changed. I have a copy of this one, it's very well laid out and covers a lot of ground.

u/cawfee · 1 pointr/sysadmin

Or if you want to take things outside and blow dust everywhere, these are great fun!

u/pandiculator · 1 pointr/sysadmin

I recently took (and failed) 70-417, the upgrade exam which combines 70-410, 70-411, and 70-412. I studied all three courses as prep for 70-417 as although it only covers a subset of each course you can be examined on any area.

By far the best book I've come across for 2012 is Mastering Windows Server 2012 R2 by Minasi et al. It's not geared specifically towards the exams, you'll need to pick out the objectives. It's eminently readable but at 1670 pages will take a while to get through.

Assuming the Exam Ref books for the individual courses are similar to the 70-417 Exam Ref book, as an overview of the objectives they'll be fine but they don't go deep enough.

If you're after videos, I wasn't that impressed with 70-410 or 70-411 content on PluralSight but there are now two 70-412 courses: a retired course by Mike Hammond and a new course updated for the R2 content by Greg Shields and I thought both were excellent.

u/trynsik · 3 pointsr/sysadmin

If you're looking for a good book, I highly recommend "The Practice of System and Network Administration".

http://www.amazon.com/Practice-System-Network-Administration-Edition/dp/0321492668

Read it, every page, cover to cover. It'll be a phenomenal crash course for you in system and network administration. Then if you need to dive into more intricate technical details later you can start looking at technical certifications. But again, this book will be a great start.

u/Byzii · 3 pointsr/sysadmin

Even earlier versions would be a very good read despite the DevOps hype, but the 3rd (new) version includes best DevOps practices even without having any devs.

u/puremessage · 6 pointsr/sysadmin

I know you didn't ask but I'm going to recommend this book: http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668

I picked up that book and I've been reading it. I've been a sysadmin for 10 years and the book is teaching me things. I'm impressed thus far. It's written the way that I want books to be written.

u/natriusaut · 6 pointsr/sysadmin

THIS. So much. I bought this https://www.amazon.de/Management-System-Administrators-Thomas-Limoncelli/dp/0596007833 and its really helpfull imho, but you should do it.
I have to keep it up. Thanks for reminding me :)

u/leodavinci · 25 pointsr/sysadmin

I highly recommend The Practice of System and Network Administration. Goes over a whole bunch of real world tips of what you will need to be successful and keep you sane in the process. Goes over ticketing systems, time management, documentation, patching, imaging, and various other processes that are vital for any Sys Admin.

http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668/ref=pd_bxgy_b_text_b

u/kilrainebc · 2 pointsr/sysadmin

Being too busy to inundate oneself with nuances of a specialty =! helping a specialist understand your issue.

>If you've done a good job, your coworkers shouldn't even know you exist, TBH.

Please read "The Practice of System & Network Administration ...

Visibility is incredibly important.

u/litemage · 1 pointr/sysadmin

/r/powershell is a good place to start.

This book is also commonly recommended as a good starting point as well if you prefer books.

u/redditniker · 4 pointsr/sysadmin

Would recommend reading,
"The Practice of System and Network Administration, Second Edition"
lots of good starters on different topics. It helped me quite a bit.

Good reviews
https://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668

u/b26 · 2 pointsr/sysadmin

Just got these 2 for xmas.. I'm still in the process of figuring out where I want to go within the industry, but both provide a good foundation for Administration and Networking. Plan is to get at least CCNA to help with the networking fundamentals.

Practice of System & Network Admin

CCENT

u/MartinsRedditAccount · 111 pointsr/sysadmin

I personally use an IODD 2531, it's works very similar but you use a menu on the screen to pick an ISO.

Link: https://smile.amazon.com/dp/B00TDJ4BJU

(Note: It's basically the same as the Zalman enclosures but apparently with better firmware)

As they both support Secure Boot it really doesn't matter which one you use, I prefer the IODD though as I can set it to be only the ISO with no access to the disk.

u/IanPPK · 1 pointr/sysadmin

Not free software, but I have heard of people having good luck with this once loaded up:

https://www.amazon.com/Iodd-Iodd2531-Black-Virtual-Enclosures/dp/B00TDJ4BJU/

u/xxdcmast · 21 pointsr/sysadmin

I like a nice ham sandwich for a lunch point.

As far as getting into PS. This is the usual recommendation.

https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617291080

Enjoy your book and sandwich.

u/zinver · 2 pointsr/sysadmin

> What knowledge do you carry over from the history of our field that you can't easily learn or discover now?

and

> Instead of one system to do everything for the business, I am starting to see a trend towards many specialized systems that are built to interface with other systems.

Go together nicely. This is how things were before the PC took over. What did the old-timers do? What approaches to system design need to be taken into consideration when dealing with multiple vendors that are not interoperable? What about support contract management? These things haven't changed much. And they are hard questions to answer through a book.

Books to read? Hmm. I generally suggest:

u/jmreicha · 1 pointr/sysadmin

Pretty much the defacto for Red Hat training. The best part is that much of it can be transferred to other Linux variants.

http://www.amazon.com/RHCSA-Linux-Certification-Study-Guide/dp/0071765654

u/dmen91 · 2 pointsr/sysadmin

So I have the MCSE Mobility and I do not know if that alone will last.

Would rather say it depends on your skill. You can also become a sysadmin without a certificate as the others have already mentioned. The MCSE Mobility does not really go deeper into server landscapes like the MCSA Server 2016 does.

The topics to be covered is:

Deplyoment

Inunte

And SCCM with intune I think.

I chose Deployment because I already had experience.

This contains:

LTIDeployment (mdt)

ZT Deployment (sccm)

WDS

USTMIf you really want to go deeper I can recommend the following book

is also recommended here in the wiki.

https://www.amazon.com/Practice-System-Network-Administration-3rd/dp/0321919165/hope you get your sysdamin place :)

u/CptTritium · 4 pointsr/sysadmin

Thanks for linking this, I hadn't seen it yet. As a Windows admin looking to get into Linux, this seems interesting.

Also, for your automation, I'd recommend Automate the Boring Stuff with Python, if you haven't read it already. It can also be found for free here: Automate the Boring Stuff.

I'll add another plug for The Practice of System and Network Information, even if you have a good feel for the philosophical part of the job.

u/cackleberry · 3 pointsr/sysadmin

As soon as is practical, get your hands on a copy of "The Practice of System and Network Administration" (Your college library may have it, or try Amazon: http://www.amazon.com/Practice-System-Network-Administration-Second/dp/0321492668 ).

One of the earliest chapters covers taking control of a situation like this, and walks you through how to dig yourself out.

The rest of the book is great too.

u/pooogles · 1 pointr/sysadmin

>How did you get started in DevOps?

I watched https://www.youtube.com/watch?v=LdOe18KhtT4. I realised this was the future and if you wanted to be in a high performing organisation you need to do what they're doing.

Unless you're in an organisation that is willing to undergo the cultural change of Operations and Development working together you're probably not going to go far. Creating a devops organisation from scratch is HARD unless everyone is on board.

Looking into the technology is the simple part, try reading around the movement. Pheonix Project (http://www.amazon.com/Phoenix-Project-DevOps-Helping-Business/dp/0988262509) is a good start, from there I'd look into Continuous Integration and Continuous Delivery (https://www.amazon.co.uk/Continuous-Integration-Improving-Software-Signature/dp/0321336380 & https://www.amazon.co.uk/Continuous-Delivery-Deployment-Automation-Addison-Wesley/dp/0321601912).

If by this point you don't know a programming language you're going to be in serious trouble. Learn something, be it Powershell (and honestly you probably will want to move onto C# if you want to be amazing at what you) or Python/Ruby.

Honestly you should be working towards what Google does with SRE if you want to be at the leading edge. https://www.amazon.co.uk/Site-Reliability-Engineering-Production-Systems/dp/149192912X.

u/brons0n · 1 pointr/sysadmin

Runlevels and the filesystem heirarchy.

You may want to invest the time into reading The Unix and Linux Administration Handbook and The Practice of System and Network Administration.

I also support performing linux from scratch. It is one of the best learning tools available.

u/jfractal · 1 pointr/sysadmin

My apologies if it seems like I was jumping down your throat about these things - I do think that you should spend some time with AD in a testing environment, and studing the specifics of AD (Try the 70-640 study material if you are going 2008 http://www.amazon.com/Self-Paced-Training-Configuring-Directory-Microsoft/dp/0735651930/ref=sr_1_1?ie=UTF8&qid=1422558588&sr=8-1&keywords=70-640).

It is definitely an important topic for you to learn about - just be aware that this is an intermediate to advanced topic that needs to be handled appropriately and not in a "learn as you go" sort of way.

u/gdhhorn · 21 pointsr/sysadmin

Learn Powershell in a Month of Lunches

Also, SS64 has a great Index/reference of PS commands.

Another good thing to do is to start searching the web for "how do I $taskName in Powershell."

u/Pseudo_Idol · 7 pointsr/sysadmin

I have been trying to use Powershell more and more every day. Almost every task I do in a day, I first try and figure it out in Powershell. If I need to create a new LUN on the SAN... Powershell. Need to install some software on an end-user's computer... Powershell remote. Need to give a boss permission to an employee Exchange mailbox... Powershell! Learn by doing.

I have several Powershell scripts setup to clean out old files out of network shares, send out password change reminders to users' who work remotely, run a daily status report of all my servers, drive space, and error logs.

I am working on a script in my spare time to setup new user accounts, give them a mailbox, email their manager the new login credentials, add them to the proper groups, setup their home directories and permissions. Haven't had much of a chance to play with it, we don't get many new employees around here.

Here's some resources to get you started with Powershell:

u/phrstbrn · 15 pointsr/sysadmin

Canned air is so wasteful. Get one of these guys

www.amazon.com/gp/aw/d/B001J4ZOAW/

They're much more powerful as well, they make canned air look like a toy.

u/imwearingatowel · 2 pointsr/sysadmin

Not really fair to link to a PDF copy of the book. It's a fantastic book and worth purchasing and supporting the author.

It can be purchased on Amazon

u/toy71camaro · 2 pointsr/sysadmin

We shifted to a couple of these Nyrius Aries wireless display options in our conference rooms. Plug it in, and it "just works" (which was very important for our non-techy users). So far, its worked great (we're a few months in).

​

We tried a Barco Clickshare, but after connecting to your PC, you had to install an extra piece of software from the thumb drive it created. which was "too much" to ask for our end users. ;)

u/chimney3 · 6 pointsr/sysadmin

Read this book: http://www.amazon.com/The-Visible-Ops-Handbook-Implementing/dp/0975568612

It's short and provides excellent guidance through the process of stabilizing a fragile environment. It saved my life at my last job and ensured that my current job never got crazy to begin with.

u/aberugg · 1 pointr/sysadmin

https://labgopher.com/ - Get an old server from there if you can bring something like this home and run it occasionally.

https://www.microsoft.com/en-us/evalcenter/ - Setup a domain, and all that stuff, to simulate roughly the layout of your work, all in VM's.

https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617294160/ - Use this and do the examples multiple times.

Within the 30-day mark you should know a good amount to get you started.

Download VSCode, use Powershell IDE, also get the preview version of powershell to stay ahead, find out how to do GUI's for powershell for end users, automate things where you have to enumerate and analyze large information, like folders and all their permissions to audit permissions overall. Make scripts that remove unnecessary win10 components via GPO to workstations. Etc...

u/Linuturk · 4 pointsr/sysadmin

I've used Spiceworks in the past.

I also went down the path of using Trac after Spiceworks. I liked the built in Wiki features that let me document things for my users. I also made use of the code repositories to track my work.

I also recommend The Practice of System and Network Administration. It helps to justify and understand why a ticketing system is so important and will give you the ammo you need if you get push back from management.

u/elacheche · 1 pointr/sysadmin

That's a great book! I also recommend this book /u/sudz3 → The Phoenix Project

u/slmagus · 2 pointsr/sysadmin

May I recommend time management for sysadmins. A lovely short, tongue in cheek read. Sometimes a bit dated, mentions palm pilots but the lessons still hold true.

https://www.amazon.com/Management-System-Administrators-Thomas-Limoncelli/dp/0596007833

u/telecomando2 · 1 pointr/sysadmin

Also, for some reason I keep thinking "Maybe Reading the Phoenix Project might help." It was free on amazon a few months ago so I read it (thanks to the people here for the suggestion) and it was interesting. There are tons of eye roll moments and it can be silly at times but it does help your thinking when it comes to being buried in neck deep in projects. It's probably worth the $10 to read it as a piece of fiction alone.

http://www.amazon.com/Phoenix-Project-DevOps-Helping-Business/dp/0988262592/ref=sr_1_1?s=books&ie=UTF8&qid=1369923896&sr=1-1&keywords=the+phoenix+project

u/mbond65 · 13 pointsr/sysadmin

I keep seeing this book mentioned on this sub reddit, I haven't read it yet but it looks like what would help you: http://www.amazon.co.uk/The-Practice-System-Network-Administration/dp/0321492668

u/Wargala · 1 pointr/sysadmin

We use these:

https://www.amazon.com/gp/product/B009E6R89C/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

They work well, are wireless, and don't require software to install on a persons machine. So it's great for when clients come in and want to put a demo up on our screens, all we have to do is give them an HDMI dongle to plug in.

u/Keinichn · 14 pointsr/sysadmin

Get this.

Read it, learn it, love it. Follow it like whatever religion you are a part of.

u/dropped_packet · 2 pointsr/sysadmin

The Visible Ops Handbook: Implementing ITIL in 4 Practical and Auditable Steps

The Practice of System and Network Administration: Volume 1: DevOps and other Best Practices for Enterprise IT (3rd Edition)

For us a Change is any change to the environment that isn't controlled by a separate process, like new employees, termination, etc.

If your not sure, it's a CM.

u/pertymoose · 1 pointr/sysadmin

A+ and Net+ and all the other +-certs are entry level. CCNA is entry level, and 70-680 is entry level.

Something to consider is that everyone has certs these days, so the certs you get must make you better than "everyone".

For example, CCNP is a rather high-end cert. You don't see a lot of CVs with this on, because people with this cert only need a Linkedin page, and the offers will come in endless streams.

MCSE is absolutely good to have if you want to go anywhere in a Microsoft environment, though Microsoft doesn't really do high-end certs anymore, so the only thing you can really aim for with an MCSE is an MVP award, but that does take some serious effort.

WCNA is worth some brownie points in the right places.

You should also supplement certs with in-depth knowledge, and recommended practices, for example,

u/Lord_NShYH · 2 pointsr/sysadmin

OP,

/r/SysAdmin is more focused on professional systems administration which is likely why you have received so many downvotes. You are asking basic question that some quick research via Google can answer - we are not here to do your homework. There are many posts in /r/SysAdmin that already cover many of your questions. Please search before posting.

I recommend you read The Practice of System and Network Administration, Second Edition.

Also, you should read the FAQ.

u/FuRy2k · 7 pointsr/sysadmin

Pick up The Practice of System and Network Administration. It's OS agnostic, so you'll still need to research into other OS specific areas, but I found it was a great starting place for fundamentals.

u/laststance · 1 pointr/sysadmin

I believe they removed the Linus System Administration Essentials course. The Linux Foundation Edx page only show these two courses.

I think the industry standard is still RHCSA/RHCSE which might be cheaper than the Linux Foundation Course. Going for RHCSA is $400 USD for the exam, and you can probably attain the training material for about 60-70 USD.

I think going for RHCSA would better suit anyone who might want to pursue a career in Linux Admin work because the name would get picked up by HR filters or listings. Whereas the LS cert is still new and not really recognized by many companies.

This book, and the practice companion is about $30 USD each.

Or has there been a shift where Linux Foundation certs aremore valued over RedHat certs?

u/jaywalkker · 2 pointsr/sysadmin

Get the MS-Press 70-640 book. It's 17 chapters that cover all the high points of DCs, ADUC, DNS, sites, domains, trusts, certificates, auditing, roles etc. It has 2-4 exercises in each chapter so you do what it just described.
It's certainly not in depth and doesn't cover PowerShell or all the command line options that are necessary in more than a topical manner, but it'll do. If you plan on using this book to pass exam, definitely go beyond the labs with hands on practice. Also, get a second book, like Sybex to bone up on what practice tests say you lack.

u/sandwichboy41 · 8 pointsr/sysadmin

Don't use batch. It's outdated and should only be used for compatibility with very old versions of Windows.

PowerShell is the right way to to do this. I'm assuming when you say "create 20 users in Windows Server 2012" you are referring to Active Directory (AD) users, and not local users. You'll want to use the New-ADUser cmdlet to create the AD users. For importing from a csv file, you will need to use the Import-Csv cmdlet.

I won't tell you how to write the script, you should learn that on your own. The two cmdlets I mentioned should point you in the right direction. If you know nothing about PowerShell and need to learn the basics then get the book Learn PowerShell in a Month of Lunches. The book will teach you everything you need to know to get started with PowerShell.

u/mjmacka · 1 pointr/sysadmin

Windows Server 2012 Unleashed was good the 2016 version should be out soonish: https://www.amazon.com/Windows-Server-2012-Unleashed-Morimoto/dp/0672336227

Mastering Windows Server 2012r2 is good, make sure you check for corrections because there are some scripting issues in the original printing: https://www.amazon.com/Mastering-Windows-Server-2012-R2/dp/1118289420/ref=sr_1_2?ie=UTF8&qid=1479226853&sr=8-2&keywords=server+2012r2

Windows Server 2012 R2 Administrator Cookbook is good, but not really a beginners book: https://www.amazon.com/Windows-Server-2012-Administrator-Cookbook/dp/178439307X/ref=sr_1_12?ie=UTF8&qid=1479226852&sr=8-12&keywords=windows+server

u/OgreMagoo · 11 pointsr/sysadmin
u/ApprehensiveEdge6 · 2 pointsr/sysadmin

"how can I learn to script powershell without having the basics for syntaxes"

honestly, i think if you try going this route, you're going to wind up very frustrated. you really ought to start with the basics. you can't just jump straight to the "knowing" part -- have to go through the process of learning before you get there. crawl before you can walk, and all that.

i bought myself a copy of "Learn Powershell in a Month of Lunches" (amazon link: https://www.amazon.com/Learn-Windows-PowerShell-Month-Lunches/dp/1617294160/) and i like it. many people here on /r/sysadmin recommend it, as well. i would start there to build a good foundation. one of the earliest things the book teaches you is how to use powershell's built-in help and how to read error messages and such, which will become extremely helpful when you do get to the point where you start writing scripts.

buy that book, and/or ask your supervisor to buy you a license to a training site like CBT Nuggets or PluralSight. some people prefer videos and narration over books, but find what works for you, and remember to start with the basics and move up from there.

u/cheeseprocedure · 2 pointsr/sysadmin

I found myself getting yellow stickies and marking interesting passages/suggestions as I read through. It now resembles some sort of ornate flower. I like kd5vmo's suggestion: return to the book from time to time and review the sections relevant to the day's events.

Pick up his "Time Management for System Administrators" book as well; as TheSojourner said, you'll likely find it won't fully sink in until you're a couple years into your career:

http://www.amazon.com/Management-System-Administrators-Thomas-Limoncelli/dp/0596007833

u/bulletproofvest · 9 pointsr/sysadmin

Yep, if you're a Windows admin you need to learn powershell.

This is a great book to get started.

u/bleeping_noodle · 1 pointr/sysadmin

I have ordered these two books.

http://www.amazon.com/dp/111821854X/ref=pe_385040_30332200_TE_item

http://www.amazon.com/dp/0071765654/ref=pe_385040_30332200_TE_item

I read some of the linux bible in a pdf and really enjoyed it so decided to order the two books.

I have also picked up the centOS CBT nugget videos and will VM it at home and hopefully in a couple of months I will know whats going on in RH.

u/fsweetser · 3 pointsr/sysadmin

Keep in mind that a lot of modern system administration has nothing to do with the actual tech. Things like process and documentation are every bit as important.

This book will give you a good broad overview:

The Practice of System and Network Administration, Second Edition https://www.amazon.com/dp/0321492668/ref=cm_sw_r_cp_apa_MWPtzb8FS21YW

u/motodoto · 2 pointsr/sysadmin

Well I'll be the first one to give you generic information that you could have found with the search function.

You just do the needful.

https://www.amazon.com/dp/032194318X/ref=wl_it_dp_o_pC_nS_ttl?_encoding=UTF8&colid=3IXCECMPTZ0C5&coliid=IJFXHOHENJ2FH

https://www.amazon.com/dp/0321492668/ref=wl_it_dp_o_pC_nS_ttl?_encoding=UTF8&colid=3IXCECMPTZ0C5&coliid=I3J2AR8V86JZMD

https://www.amazon.com/dp/0596007833/ref=wl_it_dp_o_pC_nS_ttl?_encoding=UTF8&colid=3IXCECMPTZ0C5&coliid=I2OPTI4J0S4UG2

Good screwdriver set.

https://www.ifixit.com/Store/Tools/64-Bit-Driver-Kit/IF145-299

A network tone tester in case you need to map out your network and document everything. Also functions as a basic cable tester.

https://www.amazon.com/Fluke-Networks-MT-8200-60-KIT-IntelliTone-Toner/dp/B00N2S6RPY/ref=sr_1_5?ie=UTF8&qid=1473701817&sr=8-5&keywords=fluke+networks+tester

A punch down tool.

https://www.amazon.com/TRENDnet-Punch-Krone-Blade-TC-PDT/dp/B0000AZK4D/ref=sr_1_1?ie=UTF8&qid=1473702091&sr=8-1&keywords=punchdown

An ethernet crimper.

https://www.amazon.com/TRENDnet-RJ-45-RJ-12-RJ-11-TC-CT68/dp/B0000AZK4G/ref=sr_1_1?ie=UTF8&qid=1473702137&sr=8-1&keywords=ethernet+crimper

A quick cable stripper.

https://www.amazon.com/Monoprice-Stripper-Cutter-Cables-107051/dp/B0069LRBU6/ref=sr_1_3?ie=UTF8&qid=1473702190&sr=8-3&keywords=ethernet+stripper

A usb hard drive dock.

https://www.amazon.com/Sabrent-External-Duplicator-Function-EC-HDD2/dp/B00IKC14OG/ref=sr_1_2?ie=UTF8&qid=1473702021&sr=8-2&keywords=usb+hard+drive+dock

A notebook.

https://www.amazon.com/Rhodia-Meeting-Book-Made-France/dp/B001DCDSW6/ref=sr_1_1?ie=UTF8&qid=1473702220&sr=8-1&keywords=rhodia+meeting+book

Your necessities may vary, this applies to more of a one-man shop, and there's plenty of other things you'll want to get that I don't have listed here depending on your job.

I dunno how much you should get paid.

u/Artoriassss · 1 pointr/sysadmin

> As for a Sysadmin Bible, i would recommend the book: The Practice of System and Network Administration: Devops and Other Best Practices for Enterprise it.

This is going to sound dumb, but I don't want to spend $50 for the same book. I have "The Practice of System and Network Administration: 2nd Edition", already:

http://www.barnesandnoble.com/p/practice-of-system-and-network-administration-thomas-a-limoncelli/1100835152/2675158637613?st=PLA&sid=BNB_DRS_Marketplace+Shopping+Textbooks_00000000&2sid=Google_&sourceId=PLGoP20452&k_clickid=3x20452

The DevOps one (3rd edition) is an entirely different book, right? Or is it just the 2nd edition with some DevOps stuff added to the end? Hard to tell when taking the Amazon page at face value.

https://www.amazon.com/Practice-System-Network-Administration-Enterprise/dp/0321919165

u/arusso23 · 1 pointr/sysadmin

Might be good to keep this book on hand.

u/SolitarySysadmin · 1 pointr/sysadmin

my suggestion would be The Practise of System and Network Administration - http://www.amazon.co.uk/The-Practice-System-Network-Administration/dp/0321492668/ref=sr_1_1?ie=UTF8&qid=1344431505&sr=8-1
Limoncelli, Hogan and Chalup.

It's my go-to-guide for new (and old) SysAds - covers pretty much everything and is easy reading, different levels of expertise will get different things from it.

u/inictu_oculi · 2 pointsr/sysadmin

If you are looking for stuff to do in your environment, this book will give you some pretty good pointers:

The Practice of System and Network Administration