Pages
Home
What is MooLux
Screenshoot
Download MooLux
Install MooLux
MooLux Save
MooLux Modules
Snapshot of MooLux
Newer Post
Older Post
Home
Popular Posts
du - the disk usage linux command
du stands for disk usage. This simple linux command provides a summary of harddisk or storage space disk usage. It has many parameter argume...
Configuring Proxies for Yarn, NPM, Git, NVM, Yum, and Apt
When developing applications, it is common to interact with various tools that require a network connection to function correctly. However, ...
block consecutive IP address using scripts
How to block long list of consecutive IP address? How to call linux route command inside a script? How to block consecutive IP address usi...
Linux Body Painting
Its, awesome...
Keeping Command History across Multiple Sessions
The bash shell maintains a history of the commands you entered. You can re-execute a command by recalling it from the history, without havin...
Shutdown a windows PC from linux
A remote Windows PC can easily be shutdown, assuming you have Samba installed on your Linux box, and you have a user account on the Windows ...
Using ODBC with bind
I ran into this last week, and the Google was failing me, so here's the reason why you sometimes get "Required token $zone$ not fou...
NVidia Fan Speed Revisited
One of the comments to my last post about adjusting the fan speed on your NVidia graphics card was that what was needed was a script to adju...
IPTABLES - blocking IPs simplified
You can block an IP from IPTABLES by using iptables -I INPUT -s 192.168.0.88 -j DROP You can simplify things a little bit by using a shell s...
Convert UTF-8 to WIN-1251
Function to convert UTF-8 to WIN-1251 charset. function iconv-win1251 { if [ ${1%\.*} == ${1##*\.} ]; then newfile="$1-win1251...