Pages
Home
What is MooLux
Screenshoot
Download MooLux
Install MooLux
MooLux Save
MooLux Modules
Check laptop battery in Command Line
If you run Linux off a laptop, you might want to check your battery status alt least once a year:
grep -F capacity: /proc/acpi/battery/BAT0/info
This will output something like
design capacity: 7800 mAh
last full capacity: 6414 mAh
Newer Post
Older Post
Home
Popular Posts
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...
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, ...
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...
Android App: Nesoid (NES emulator)
It is good to know that it's possible to play those classicNintendo NES games on any Android device with physical keyboard (Motorola Bac...
What is MooLux
MooLux is a Live USB Linux distribution based on Slackware that utilizes the KDE desktop environment. MooLux is a portable operating sys...
Develop website using bluefish
Linux is at the forefront of web development. Recently, I've been developing web applications using frameworks, and Linux in general mak...
Linux Body Painting
Its, awesome...
Introduction to Shell Scripting in Linux
Shell scripting is a way to write programs that run on Unix/Linux systems. It's a powerful skill to have since it allows users to automa...
Use SSH to Create an HTTP Proxy
SOCKS is built in to OpenSSH, so it’s a trivial matter to set up a local SOCKS proxy with the -D flag. For example: $ ssh -D 12345 myuser@re...
Batch resize images using the command line in Linux
If you have a ton of images that need resizing, you can do it all with the imagemagick package: cd /home/user/images mkdir resized_image...