1. How to setup a Samba share on a CentOS 7.3 server

    Anytime you want to share some files over the network, NFS comes to mind. But what happens if you want Windows servers to be able to access those files as well? That's when you need Samba.

    Follow those steps on the host that will act as a server:

    1. Install …



  2. transfer.sh: a simple file sharing service

    friend of mine introduced me to transfer.sh more than a year ago. transfer.sh is a simple and free file transfer service that plays along with Linux very well.

    Here's some notes on how I use it:

    For this example, we'll download the Mozilla Firefox Source code. Then …



  3. Replacing gzip and bzip2 with their parallel alternatives pigz and pbzip2

    Almost all modern systems come with more than 1 core. Why not get a significant performance gain from any application that uses gzip and bzip2 simply by switching to their multi-core cousins?

    Wait, how do I know that I have more than one core on my host?

    Easy! Use the …


  4. Building redir from source

    Greetings interwebs,

    Folks who have worked with me before (or who have been reading my blog - yeah I know, I know) know that redir is one of my most favorite tools.

    Unfortunately CentOS 7 (including EPEL) does not come with redir. What's a sysadmin to do when one of his …



  5. CentOS 7.3 kernel upgrade using ELRepo

    Upgrading the kernel always gives me trouble on CentOS 7.x so here's some notes on how I did it:

    1. Figure out what your current active kernel is:

    Current kernel:

    uname -a
    Linux kernelupgrade 3.10.0-327.10.1.el7.x86_64 #1 SMP Tue Feb 16 17:03:50 …

  6. How to setup a ZFS pool on CentOS 7.3

    Here's my quick notes on setting up a ZFS pool with 5 drives in it.

    1. Create 5 fake devices:

    Each one will be 2GB:

    truncate -s 2G zfs01.img
    truncate -s 2G zfs02.img
    truncate -s 2G zfs03.img
    truncate -s 2G zfs04.img
    truncate -s 2G zfs05.img …

  7. How to install ZFS on CentOS 7.3

    Hello internet,

    ZFS is an advanced filesystem originally developed by Sun. It has a ton of advantages, including a built in volume manager, compression live snapshots etc. It's been ported to FreeBSD and Linux.

    1. These are my notes on how I got it installed on CentOS 7.3:

    cat …

Page 3 / 13