Working with ISO from the Linux Command Line
avatar

If you have wondered how to create an iso from the command line, it is very simple.  You just need to use the following commands:

mkisofs -o <name of iso>.iso <directory to be iso>

To burn an ISO from the command-line many people do a DD, this doesn’t always work since it is technically not the correct way to do it.  To do it the proper way you would need to run the following commands:

  1. Determine the Device ID number by running the following command:

    cdrecord -scanbus

    * The device ID number will be x,x,x on the row which lists the CD/DVD drive you will be using.

  2. Next you will want to do the actual burning of the ISO to that device using the following command:

cdrecord -v dev=<Device ID from the scanbus command> <ISO to burn>.iso

Posted in Arch, CentOS, Fedora, Linux | Tagged , , | Leave a comment

Unlock An Account
avatar

To unlock a user in Linux is quite easy you just need to run the following command:

passwd -u <account>

This will unlock the account which has expired, but if you have turned on the advanced PAM Account Auditing you will also need to reset their account using the following command:

/sbin/pam_tally2 –user <account> –reset

This will reset the number of times they have incorrectly logged in so the account can be used again.

Posted in Arch, CentOS, Fedora, Linux | Tagged , | Leave a comment

Tight IP Controls Added
avatar

I added tighter IP Controls which limit the number of connections allowed from the same IP at the same time.  This is to address the issue of certain people trying to download the entire site and to try and limit over aggressive search bots and website spiders.

The average user will see no difference.

Posted in Harptabs.com, News | Leave a comment

Facebook, Twitter and Google Plus
avatar

I have added Facebook, Twitter and Google+ to the website so now you can like your favorite tabs and tweet them.

Posted in Harptabs.com, News | Leave a comment

Rolling Back Security Update
avatar

The security update I put in which displayed 403s was causing too many false positives again so I rolled it back.  I am going to do some more work on it and bring it back in the future.

Posted in Harptabs.com, News | Leave a comment