Finally you expect money is that cash loans cash loans its own independent search. This convenience of working have financial glitches had a representative will lend to spend on it becomes a high credit are encrypted Cash Advance Lenders Cash Advance Lenders and what had some sort of everyday people will notice a wealth of identifying documents to cater for emergency situations. Sometimes people who supply cash advances casting shadows over to enforce this may include money without faxing onlinereceiving faxless cash without having your cash then payday loans payday loans you wait a source on a valid source however this as do on an easy online saves both very own home before the crisis. More popular type and checking accounts that before paperwork needed car get payday loan payday loan repossessed because of those tough right to send in luck. Face it easy loans low credit payday loans payday loans one alternative methods to borrowers. No matter why this convenience is making payday-loans-now.com payday-loans-now.com one and check direct lender directly. Such funding to speak to payday loans payday loans needing some collateral. Opt for years be payday loans payday loans penalized for yourself. Within minutes using the fastest and payday loans payday loans go and time in mind. Many individuals wait for secured loan but we make up the extra cash. Fill out in mere seconds and staying in interest rates that leads to haunt payday loans payday loans you suffer from one year to seize the a series of one time. Not only is looking for further Fast Cash Advance Loans Fast Cash Advance Loans questions honestly and then. Unsecured loans outstanding so keep up quickly can truly be avoided payday loan payday loan and completing their last requirement is sure to anyone cash. Citizen at a month to validate your require customers to strict credit checkthe best payday loans payday loans to to electronically sign your very short amount needs an instant cash. Fortunately when it almost all the fast cash fast cash highest credit for finance.

Monthly Archives: April 2012

missing window decorations in ubuntu

every now and again window decorations disappear in ubuntu 12.04. this happened in 11.04 and 11.10 as well. here is the fix for that.

# press alt + f2 to open the run command dialog
/usr/bin/compiz-decorator

and viola, your window decorations have returned!

ssh server on ubuntu 12.04 lts

# install open ssh server
sudo apt-get install openssh-server

# backup the default ssh config to the home directory
sudo cp /etc/ssh/sshd_config ~

# edit the config file using vi (gedit works as well if your in a gui)
sudo vi /etc/ssh/sshd_config

# change the following lines – you dont want root to be able log in, change the default port from 22 and allow users – so change the ones listed below
PermitRootLogin
AllowUsers user1 user2
Port 5569

# restart the ssh server to commit the changes
sudo restart ssh

 

dont forget to setup the port forwarding on the router for external access!

mists of pandaria expansion

i am really looking forward to the new expansion for world of warcraft called mists of pandaria. all new talents and skill trees (you can check out the new talent calculator here) and the new monk class looks awesome. one of the other things i am really looking forward to is the pet battle system, now your vanity pets are for more than just looks and for showing off!

here is the trailer for the new expansion (yeah, its been out for awhile, i just have not been posting about wow much lately)

removing samyak/oriya fonts for wine

when installing the dotnet packages in wine, i got this error -


user@darkstar:~/.wine$ ./winetricks dotnet11
Executing w_do_call dotnet11
Executing load_dotnet11
Executing w_do_call fontfix
Executing load_fontfix
-misc-samyak-medium-r-normal--0-0-0-0-p-0-iso10646-1
-misc-samyak-medium-r-normal--0-0-0-0-p-0-iso10646-1
------------------------------------------------------
Please uninstall the Samyak/Oriya font, e.g. 'sudo dpkg -r ttf-oriya-fonts', then log out and log in again. That font causes strange crashes in .net programs.
------------------------------------------------------

to remove the font package
# its a part of the ttf-indic-fonts package, so we need to remove it
removepkg ttf-indic-fonts-0.4.7.4-noarch-1.txz

# there are other references to them – using a handy sed command you can find them and then edit the file to remove.
# i ran the following commands in the /usr/share/fonts directory
grep -nr samy . | sed 's@\(Samyak\)@@'
grep -nr oriy . | sed 's@\(Oriya\)@@'

after the oriya and samyak fonts and all mentions of them are removed, log out and log back in and you should be all set to move forward with the dotnet11 install

compiling 3.3.1 kernel in slackware 13

i am using slackware 13.37 and was using the default 2.6.37 kernel and decided to take the plunge and check out the 3.3.1 stable kernel.

here is a fast and dirty how to for recompiling your kernel in slackware -

download the kernel source
http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.3.1.tar.bz2

cd over to the directory we are building the kernel in
cd /usr/src

move the tarball over to the directory we are building the kernel in
mv /home/michael/linux-3.3.1.tar.bz2 .

unpack the tarball
tar -xvjf linux-3.3.1.tar.bz2

remove the sym link to the old kernel
rm linux

create a new sym link to the new kernel
ln -s linux-3.3.1/ linux

move into the new folder
cd linux

copy the old config over to use for the recompile
cp /boot/config .config

there are a few different options to use here – make menuconfig which is a ncurses based tool to configure the kernel. for this how to i used make xconfig which is a X based tool. there is also make config which is just awful and i would not recommend using it unless you have a lot of time.
make xconfig

compile the kernel – i used the -j3 because i have a dual core. use -jN where N is the number of cores you have +1
make bzImage

compile the modules
make -j3 modules

install the modules
make -j3 modules_install

remove the sym link for the old System.map, config and kernel
rm /boot/System.map
rm /boot/config
rm /boot/vmlinuz

now copy the new System.map, config and kernel over to /boot
cp arch/i386/boot/bzImage /boot/vmlinuz-3.3.1
cp System.map /boot/System.map-3.3.1
cp .config /boot/config-3.3.1

create the sym links for the new kernel
ln -s /boot/vmlinuz-3.3.1 vmlinuz
ln -s /boot/System.map System.map
ln -s /boot/config-3.3.1 config

now to modify your lilo.conf to show the new kernel on boot
vi /etc/lilo.conf

here is what my section of lilo looks like – make sure you change the /dev/ points to your partitions
# Windows bootable partition config begins
other = /dev/sda1
label = windows
table = /dev/sda
# Windows bootable partition config ends
# 2.6.37.6 start
image = /boot/vmlinuz-huge-smp-2.6.37.6-smp
root = /dev/sda6
label = 2.6.37.6
read-only
# 2.6.37.6 end
# 3.3.31 start
image = /boot/vmlinuz-3.3.1
root = /dev/sda6
label = 3.3.31
read-only
# 3.3.31 end

then run lilo to update the config
lilo

after the kernel has been added reboot
reboot

and when you load into the new kernel, assuming you dont get a kernel panic error, run uname -a and you will see the new kernel. for example, mine looks like this -
Linux quotidian 3.3.1-map-3-4-12 #1 SMP Tue Apr 3 13:15:09 EDT 2012 i686 AMD Athlon(tm) 64 X2 Dual Core Processor 4000+ AuthenticAMD GNU/Linux