Freeing up RAM in Linux

27 07 2009

NOTE: Little clarification, this is not needed at all ,as memory is freed when required.

WHY IT MAY BE HELP-FULL: This clears the page-cache , dentires and inodes.

IT’S TRANSLATION : It may be that you are watching a movie or using a Virtual Machine , a resource hungry process has filled up your ram by caching data and the data needs to be continuously removed  to make space for new data . This is managed by the kernel.

IF YOU STILL DON’T  GET IT: Notice  video in your movie hanging (not audio) while your ram gets cached Or your system running a bit slow ?


1) Stop the process consuming loads of memory. (Check System Monitor).
2) Open a terminal with root privileges .
3) Sync
4) echo 3 > /proc/sys/vm/drop_caches
5) echo 0 > /proc/sys/vm/drop_caches





Fedora 11 Fixing Various Problems

2 07 2009

0)  Graphic Driver Problems

- For ATI RadeonHD cards (especially x1250 and x1200)

yum install xorg-x11-drv-radeonhd

if /etc/X11/xorg.conf doesnt exist
yum install system-config-display
Run system-config-display –reconfig in terminal.

Modify /etc/X11/xorg.conf

"Device" Section
Driver "radeonhd"
Option "DRI" "True"

- Or Install fglrx (At the time of writing of post official rpmfusion drivers dont exist)

Hence Fedora 10 ’s kernel needs to be installed .Refer this post

(Make sure that you use correct driver since ati recently removed support for many cards )

http://forums.fedoraforum.org/showthread.php?t=224519

1)  Enabling OSS
(This is needed for Real Player 11 as it crashes with ALSA)

(In Root /Sudo Mode)

nano /etc/modprobe.d/dist-oss.conf

uncomment line as mentioned

2)  Fixing glitchy sound problems.
There are many solutions to the sound problems listed in http://fedoraforums.org
They mainly deal with time scheduling
Other solutions consist of

- Enable OSS (See Above)
- Install OSS v4.x ( This replaces all the ALSA/Pulse Audio kernel modules)

3)  Enabling TAP in MousePad / Touchpad

- Temporary Measure

synclient TapButton1=1
synclient TapButton2=1

- Permanent Measures

- System > Prefrences > Mouse >Touchpad > Enable mouse clicks

OR

- Modifying xorg.conf

See this link.

NOTE: IF YOU FIND ANY PROBLEM / ALTERNATE SOLUTION WITH ABOVE FIXES PLEASE POST A COMMENT.





Fedora 11 Leonidas Essentials Guide Part 2: More Config

24 06 2009

NOTE:All Commands to be entered in terminal in Super User/root mode. (.:. su – or sudo)

1) Setup sudo
In Fedora the root and normal user accounts are different and one can switch between them to do administrative tasks.
However if you want to give a user other than root administrative priviliges

nano /etc/sudoers

Add to the end
Read the rest of this entry »





Fedora 11 Leonidas Essentials Guide Part 1: Getting Started

24 06 2009

Fedora 11 Leonidas essentials guide

Well Howdy Folks ! ,thou having trouble with getting Fedora 11 Leonidas Up and Running ?

Well then you have come to the right place !!!
NOTE:all commands r to be typed in terminal with sudo or su login or su -c
PS: All yum commands can be replaced by package kit alternatives type “info pkcon” in terminal.

0) PRESTO PLUGIN FOR YUM: Presto is a delta rpm plugin for  yum . (Delta rpm is only the difference in old and new version of packages Hence Saves Precious Bandwidth.
yum install yum-presto
Read the rest of this entry »





Fedora 11 Leonidas Whats New!

9 06 2009

Fedora 11 Leonidas has been released today (9th June 2009).

10 Reasons for you to Download it now

1) DNSSEC (DNS Security Extensions) – services protect against most of the threats to the Domain Name System

2) 20 sec Boot up time being the fastest in Major desktop Linux distributions

3) EXT4 As default file system which raises max file system size up to 1 Exabyte and max file size to 16 TB boosts computers overall speed

4) Xserver 1.6 = Better Graphics (however ctrl+alt+backspace combo is disabled by default)

5) RPM 4.7 reduces the memory consumption (of packaging process)

6) Much more responsive synaptic touchpad

7) Automatic Fonts & Mime Installer – Allows programs on the desktop to automatically install applications, fonts, multimedia capabilities, and clipart.

8)Fingerprint Readers – Support for finger print authentication on some devices.

9) Volume Control (Widget) – An awesome, flexible volume control.

10) MinGW Cross-compiler – Build and test Microsoft Windows programs directly from fedora without getting blue screens





Ubuntu 9.04 Jaunty Jackalope A Review

25 04 2009

Ubuntu 9.04

Ubuntu 9.04 with Dark Room Theme

Ubuntu is back with its new flavour “Jaunty Jackalope” . After the not so exciting 8.10 Release , the new edition has quite a few improvements. The old theme is still retained as the default but with refreshing new themes Dust ,Dust Sand And New Wave

NEW FEATURES/IMPROVEMENTS

- The boot up acpi problem is fixed

- Kernel being used is 2.6.28-11 .

- EXT4 Filesystem Support

- GNOME 2.26

- New Notification System

- Coherence tools (UPnP Plugin)

- Computer Janitor ( For removing unused Packages)

- USB Startup Disk Creator

- System Testing ( For Submitting Details to Ubuntu Hardware Database)

OTHER POINTS OF INTEREST

The radeon driver being used is glitchy (screen break up) and fps is low (as compared to fedora 10) but is bearable.

The b43/ssb drivers for wireless support for Broadcom Card still don’t work for BCM4312 Series but they can be replaced with wl which works directly.

The Notification System looks great ( hmm.. reminds me of the Mac Notification System Growl).

It comes with Firefox 3.08 instead of Firefox 3.1 Beta which is a bit disappointing.

JUDGEMENT

Overall Canonical has done a decent job to avoid another disappointment like Intrepid Ibex.

Rating: 8.5/10 (Try it Out!)





Python GMail SMTP Send Email Script

8 04 2009

Here is a small script that i made some time ago , it uses GMail’s mail servers to send an email.

#!/usr/bin/python
# PyGms 1.0
# Gmail SMTP  Script Made by Djays

import smtplib
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email import Encoders
import os

ver = "v1.0"
gmail_user = ""	#Username
gmail_pwd  = ""		#Password
gmail_alt  = " "		#Alias ID
gmail_alias = ""+gmail_alt		#nickname
mailing_list = ""
class mailz:
  def __init__(self):
    self.files=[""]
    self.mail = MIMEMultipart()

  def attach(self,fil):
    self.files.append(fil)

  def mailprep(self,to, subject, text):
    self.to = to
    self.mail['From'] = gmail_alias
    self.mail['To'] = to
    self.mail['Subject'] = subject
    if (mailtoBcc !="") :
      self.mail['BCC'] = mailtoBcc

    text+="\n\n\n_________________________\nMail generated By  PyGmS "+ver+"\n       - Made By Djays\n        http://djsh.net"

    self.mail.attach(MIMEText(text))
    print self.files

    for attach in self.files:
      if (attach != "") :
          part = MIMEBase('application', 'octet-stream')
          part.set_payload(open(attach, 'rb').read())
          Encoders.encode_base64(part)
          part.add_header('Content-Disposition','attachment; filename="%s"' % os.path.basename(attach))
          self.mail.attach(part)

  def sendmail(self):
    self.mailServer = smtplib.SMTP("smtp.gmail.com", 587)
    self.mailServer.ehlo()
    self.mailServer.starttls()
    self.mailServer.ehlo()
    self.mailServer.login(gmail_user, gmail_pwd)
    self.mailServer.sendmail(gmail_user, self.to, self.mail.as_string())
    self.mailServer.close()

mailto   =  raw_input("Enter Recepients (Seperated By a Comma): ")
mailtoBcc=  raw_input("Enter BCCRecepients (Seperated By a Comma): ")
mailsubj =  raw_input("Enter Subject: ")
mailmsg  =  raw_input("Enter Message: ")
mailattch = ""
newmail  = mailz()

while 1:
 mailattch = ""
 c = raw_input("Attach a File ? (y/n)")
 if c == 'n':
   break
 if c != 'y':
   continue
 mailattch = raw_input("Enter Path of file: ")
 newmail.attach(mailattch)
newmail.mailprep(mailto,mailsubj,mailmsg)

newmail.sendmail()




Get updates of completed torrents via SMS Part 2

8 04 2009

The other day one of my friends Ankur , made a python script to get updates via sms using twitter account.
Check here :http://tinyurl.com/djbnon

I have changed the script to use Gmail SMTP instead .
Enjoy

import dbus,base64,urllib2,urllib
from dbus.mainloop.glib import DBusGMainLoop
import smtplib
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
from email import Encoders
import os

ver = "v1.0"
gmail_user = ""				                #Gmail Username

gmail_pwd  = ""					#Gmail Password
gmail_alias=" "+gmail_user                       #Gmail Nickname
gateway=""	# Check http://tinyurl.com/d5ghcv

def mailz(text):

    mail = MIMEMultipart()
    mail['From'] = gmail_alias

    mail['To'] = gateway
    mail.attach(MIMEText(text))
    mailServer = smtplib.SMTP("smtp.gmail.com", 587)
    mailServer.ehlo()
    mailServer.starttls()
    mailServer.ehlo()
    mailServer.login(gmail_user, gmail_pwd)
    mailServer.sendmail(gmail_user, gateway, mail.as_string())
    mailServer.close()

DBusGMainLoop(set_as_default=True)

s = dbus.SessionBus()
kt = s.get_object("org.ktorrent.ktorrent","/core")

def update(k):
        torrent = s.get_object("org.ktorrent.ktorrent","/torrent/"+k)
        name = torrent.get_dbus_method("name","org.ktorrent.torrent")
        mailz("ktorrent: finished " +name())

kt.connect_to_signal("finished",update)

import gobject
loop = gobject.MainLoop()
loop.run()




Fedora 10 Fglrx

26 01 2009

Finally the RPMFusion Stable NonFree Updates repositories have the fglrx driver
All steps are to be executed in root/super-user mode

1) Get RPMFusion Repos.

rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm

2) Install Fglrx

yum  install akmod-fglrx xorg-x11-drv-fglrx xorg-x11-drv-fglrx-libs -y

3) Blacklist radeon
Add

blacklist radeon

to /etc/modprobe.d/blacklist

4) Reboot

5) Make initrd

- While booting at grub press ‘e’ in line starting with kernel. Add ’single’ to the end. Press ‘ESC’ & press ‘b’

-

cd /boot/
rm initrd-`uname -r`.img
mkinitrd initrd-`uname -r`.img `uname -r` --with=fglrx

6)Reboot

NOTE: You might have to do

aticonfig --initial -f




Install XBMC

10 01 2009

XBMC (a.k.a. XBOX Media Center) is a great media center available on all platforms

If you have Ubuntu then see this
http://xbmc.org/forum/showthread.php?p=185738

For Fedora an unofficial rpm is available at http://www.fedorajunkies.com/index.php/XBMC

Installing From source:

0) Get Latest SVN Snapshot

svn co http://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/linuxport/XBMC/

Fedora:
1)Get RPMFusion Repo:

rpm -Uvh  http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

2)Install Dependencies :

yum install SDL* glew glew-devel libmad-devel tre tre-devel libogg libogg-devel libvorbis libvorbis-devel boost \
boost-devel bzip2-devel bzip2-libs fribidi* lzo lzo-devel mysql-libs mysql-devel jasper jasper-devel faac faac-devel \
enca enca-devel hal hal-devel hal-libs cmake gperf nasm libXmu-devel fontconfig-devel freetype-devel libXinerama-devel \
pcre-devel gcc-c++ sqlite-devel curl-devel pulseaudio-libs-devel libsmbclient-devel

3)Make sql symbolic link
- For i386

ln -s /usr/lib/mysql/libmysqlclient.so.15.0.0 /usr/lib/libmysqlclient.so

- For 64 bit

ln -s /usr/lib64/mysql/libmysqlclient.so.15.0.0 /usr/lib64/libmysqlclient.so

4)Configure

cd linuxport/XBMC
./configure

5)Make

make

During this some errors may occur:
A)

../xbmc/utils/CharsetConverter.h:31:39: error: fribidi/fribidi_char_sets.h: No such file or directory

Sol:

cd xbmc
ln -s lib/libfribidi/ fribidi
cd ..
make

B)

/usr/include/jpeglib.h:1096:55: error: jpegint.h: No such file or directory

Sol:

cp xbmc/lib/cximage-6.0/jpeg/jpegint.h /usr/include/
make

C) For any other errors refer to fedorajunkies.com or fedoraforums.org

6) Install

make install

7) Configuring

Open xbmc by typing   xbmc in terminal or ALT+F2

-Settings > System >Audio Hardware
-Change Audio Output to Digital
-Change Audio Output Device and Passthrough Output Device to same device settings

(pulse -for fedora , hdmi/spdif- for ubuntu/debian systems)

You can also find out your device by using

aplay -L

8) To learn More about plugins and scripts Visit

http://www.xbmc.org/wiki