3:44 AM

systemd : faster way to boot you system.


The systemd is a new addition to the linux system which is a replacement to the older initscripts. In earlier versions of arch linux (and on all other distros) the various daemons where started sequentially in the order in which the occure in the deamon array in rc.conf file. The systemd is an agressive parallization technique to start various deamons thus reducing you boot up time.Today I tried systemd and it was good.The system booted in less than 10 sec.

The arch community has dropped their support to the older method and insist users to use only systemd. So I gave it a try. The newer installtions come with systemd by default.

systemd can be installed by pacman -S systemd. Once installed the system can be booted using systemd by adding kernel parameter as /usr/lib/systemd/systemd

The systemd provides various tweaking facilites.

for example systemd-analyze returns the boot time of the system

systemd-analyze blame provides a verbose output of time taken by various services.

A simple graph can be ploted as
systemd-analyse plot tem.svg
eog tem.svg to view the graph.

More tips can be found at http://freedesktop.org/wiki/Software/systemd

8:26 AM

Small brightness tweak on laptop....


It was very hard trying all these days to fix the brightness controll on dell xps15.Finally got it corrected....The ACPI controlls the brightness in your laptop wich can be tweaked through a simple file in the folder

    /sys/class/backlight

The folder contains a number of subfolders like acpi_video0,intel_backlight etc. These folders contain a number of file like
brightness : which contains the present brightness value
max_brightness : the maximum possible brightness value

 use intel onboard graphics which controlls the brightness. All I need to do is to change the value of brightness file in intel_backlight.This can be done simply by echo command.

Here is a simple sript to perform the same.The up arrow key can be used to increase the brightness and down arrow key can be used to decrease the brightness.Make sure you run the script as root who has the right to write into the file.

===================================================


#!/bin/sh

folder="/sys/class/backlight/intel_backlight"

cd "$folder"

value=3000
max=4882
min=100

if (($EUID != 0))
then
    echo "You do not have required previlages to run the script!!!"
    exit 1
fi

while true
do
    read -n3 -s  key
    echo -n "$key" | grep "\[B"
    if [ "$?" -eq 0 ]
    then
        if (($value < 100))
        then
            value=100
            continue
        fi
        echo $value
        echo -n $value > brightness 
        value=$[$value-100]
    fi
    echo -n "$key" | grep "\[A" 
    if [ "$?" -eq 0 ]
    then
        if (($value > 4000))
        then
            continue
        fi
        echo $value
        echo -n $value > brightness 
        value=$[$value+100]
    fi
done

===================================================

11:26 PM

Using NTFS drivers on Linux


In Arch Linux the users will not have any read permissions on NTFS drives by difault. It can be resolved using a simple package called ntfs-3g. Apart from Debian the the ntfs usage has to be manually done by editting the /etc/fstab file. Perform the following as root to add the NTFS capabilities.

pacman -S ntfs-3g

add the following line to /etc/fstab

# <file system>   <dir>  <type>    <options>             <dump>  <pass> 
/dev/<NTFS-part>  /mnt/windows  ntfs-3g   defaults    0       0 
 
  
The partition will be mounted at /mnt/windows.If you do not want to mount the partition by default use none instead.
If you want to people in users group access the drive then use

gid=users,umask=0022 
 
instead of default under options.
Reboot the system and enjoy!!!

8:05 AM

Shell script to convert video to mp3

The following shell script takes a video file as input and converts it into mp3 file at users home directory.Ensure that the file name is specified in double quotes if it contains any whitspaces.

====================================================


#!/bin/sh


folder="/home/$USER/Music"
name=""
if [ -z "$1" ]
then
    echo "No file name specified "
    echo "Please provide the absolute path of the file Ensure that the file name is enclosed in single quotes"
    exit 1
fi

echo "Output file name?"
read name
ffmpeg -i "$1" -acodec libmp3lame -ab 160k -ar 44100 -ac 2 "$folder/$name" 
if (($? != 0 ))
then
    pacman -Q lame ffmpeg > /dev/null
    if (($? !=0))
    then
        echo "Please ensure that lame and ffmpeg are installed on your system"
        exit 2
    else
        echo "No such file exists"
        exit 3
    fi
fi
echo "File successfully converted"
exit 0

===================================================