Archive for the 'NIX Posts' Category
Setting the Static IP on your Samsung Ace 2X S7560 has a very short solution: can't be done from the GUI the device offers, OOTB. The way to do this is to set a Static DHCP IP on the router. Since we have DD-WRT on ours, the process is fairly straight forward though I had to part […]
August 21st, 2013 | Posted in NIX Posts | No Comments
To prevent hotlinking, which is direct linking to another site's content such as images, videos, documents without actually storing them on your own hosting account often happens on the web and is generally frowned upon. To prevent this, we include the following in our .htaccess file to prevent image / media hotlinking. This is because […]
August 18th, 2013 | Posted in NIX Posts | 1 Comment
In AIX Maintenance mode, /dev/random and /dev/urandom are not configured. This can be done manually like this to help recover the functionality though it's not readily available to start with: # [[ -r /dev/random ]] && rm -rf /dev/random; # [[ -r /dev/urandom ]] && rm -rf /dev/urandom; # mknod /dev/random c 39 0; # […]
August 16th, 2013 | Posted in NIX Posts | No Comments
This is a short Screen for Unix and Linux: HowTo and Reference for everyday use. This quick screen tutorial and reference guide aims to provide the most commonly used features of this very useful utility. When working with multiple ssh terminals it's handy to save a session especially where typing passwords is required often or you […]
August 15th, 2013 | Posted in NIX Posts | No Comments
Your akismet stats will report caught spam over time. However this can start to number in the thousands. You can block wordpress spammers using .htaccess IP blocks. This had a dramatic effect. This post is an extension of WordPress: Dealing with Comment and User Registration Spam. where we describe how to identify spamming IP's to your […]
August 13th, 2013 | Posted in NIX Posts | No Comments
When you see this: [root@localhost eth1]# yum search udev Error: Cannot retrieve metalink for repository: fedora/19/i386. Please verify its path and try again [root@localhost eth1]# it likely means you have't got a network connection problem. See this post for resolving. Cheers, TK
August 12th, 2013 | Posted in NIX Posts | No Comments
So once our upgrade to FC19 was done, we notice we haven't got a network connection anymore. This is because we try to use yum and get a bunch of error messages. Here's how to solve it on the new system through a debugging session into the issue.
August 12th, 2013 | Posted in NIX Posts | 1 Comment
The error rpmlib(X-CheckUnifiedSystemdir) is needed by filesystem came about when trying to upgrade from FC16 ( Fedora Core 16 ) to Fedora Core 19 ( FC19 ). There is a fundamental filesystem change that has been done impacting every rpm on the new Fedora Linux distribution. More towards the error, it came about when trying to upgrade rpm […]
August 11th, 2013 | Posted in NIX Posts | 2 Comments
(continued from here) [root@moto F13toF18]# rpm -aq|head liboil-0.3.16-5.fc15.i686 arj-3.10.22-13.fc15.i686 perl-POE-1.289-6.fc16.noarch autocorr-sv-3.4.6.2-1.fc16.noarch python-iniparse-0.4-3.fc15.noarch unique-1.1.6-5.fc16.i686 kde-i18n-Finnish-3.5.10-17.fc18.noarch finger-0.17-43.fc15.i686 hyphen-it-0.20071127-6.fc15.noarch libXrender-devel-0.9.6-2.fc15.i686 [root@moto F13toF18]# [root@moto F13toF18]# Which is perfect and we're at FC19 with RPM and glibc and libdb. Now time to see if yum works so we try and get the FC19 repos this time to complete this job. […]
August 10th, 2013 | Posted in NIX Posts | No Comments
What if you had created a post half a decade ago, had it dropped from the index (Or at least it wasn't listed in any results.) after another unrelated site copied your entry then Google lists that copied (literally copy + paste) page on the first page of search results? I wouldn't think this can happen through […]
August 3rd, 2013 | Posted in NIX Posts | No Comments