EAK Just Debian Guru Page :) Just another Linux weblog

2Feb/10Off

`perl: warning: Please check that your locale settings` error on debian

perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = "en_DE:en_US:en_GB:en",
        LC_ALL = (unset),
        LANG = "en_US"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory

dpkg-reconfigure locales

good luck ...

7Jan/102

Nice Ubuntu themes for karmic Users

1Jan/10Off

Ucretsiz Filim Sitesi (free movie) :)

Reklamsiz filim izlemenin tadini cikartmak istiyorsaniz iste aradiginiz site.
tv ,dizi ,film ,sinema ,cinema
ismide garip :) ama guzel bir site benim hosuma gitti belki sizlerinde hosuna gider
http://tv-dizi-film-sinema-cinema.info :) degisik bir isim , google daha cabuk yakalansin diye bu sekilde isim alinmis olmali bakalim ne derece basarili olacak , merak ediyorum .

31Dec/09Off

happy new year 2010


happy new year 2010

2Dec/09Off

How to :Auto + secure Mount remote SSH filesys with AUTOFS and SSHFS + samba

http://ubuntuforums.org/showthread.php?t=580989
At home i have a unix (unslung) based router with an usb harddisk mounted on it wich supports ssh and scp
My goal is to have access to that remote file system as it was a local file system from the folder /RemoteDiskSSH on my Laptop running Ubuntu 7.10
I want it to be a secure connection because i allso want to be able to have access to the remote file system over the internet.

For me automaticly mounting and dismounting the remote drive with sshfs is the solution for me.

22Nov/09Off

How to Install Adobe Flash in Debian Etch/Lenny/Sid

If you run Etch you will want to use backport.org

First you need to edit the /etc/apt/sources.list file using the following command

#nano /etc/apt/sources.list

add the following line

28Jul/09Off

Google Apps for Domains IMAP Mail Login Problem

Sometimes Google Apps for Domains won't let you login with IMAP. This article explains how you fix the problem so your Outlook or Thunderbird can do an IMAP login.

When trying to login with an IMAP connection to your Google Apps for Domains email account, you may encounter this error:

Web Login Required

What Google is telling you is that you need to unlock your account, via your browser, by entering a CAPTCHA. Here's what you must do:

1. Type the URL below into your browser, replacing YourDOMAIN.com with your Google Apps domain.

https://www.google.com/a/YourDOMAIN.com/UnlockCaptcha

2. Enter your Google Apps for Domains User ID, password, and the CAPTCHA displayed by Google.

3. You should then be able to access your email account via IMAP.

For the details of how to configure your IMAP email client, read Google's Instructions - a list of supported client software programs is included.
Document Actions

source:http://plone3.trueblade.com/knowledge/google-apps-for-domains-imap-mail-login-problem

2Jun/09Off

Installing VirtualBox on a PAE Kernel System

Asagidaki islemleri yapmadan once bunlari yuklememiz gerekiyor yoksa kernel modul derlenmesi sirasinda sorunlar cikabilmektedir.

yum install kernel-devel
yum groupinstall "Development Tools"

Sonrada asagidaki adimlari uyguluyoruz.
I recently got stuck while trying to install Headless Virtualbox on a Centos 5.2 server per the directions at Howtoforge here. The RPM failed with the error that it couldn’t find the kernel source. I thought I had already installed kernel-devel, and confirmed that I did. The instructions were to define the KERN_DIR variable like so:

$ export KERN_DIR=/usr/src/kernels/2.6.18-92.1.22.el5-i686/
$ /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module [ OK ]
Removing old VirtualBox netflt kernel module [ OK ]
Removing old VirtualBox kernel module [ OK ]
Recompiling VirtualBox kernel module [ OK ]
Starting VirtualBox kernel module [FAILED]
(modprobe vboxdrv failed. Please use 'dmesg' to find out why)

dmesg shows this:

vboxdrv: disagrees about version of symbol struct_module

Interesting!

After several missteps, it turns out there is a separate development rpm for the PAE kernel:

$ yum install kernel-PAE-devel

After that installs, we are good:

$ export KERN_DIR=/usr/src/kernels/2.6.18-92.1.22.el5-PAE-i686/
$ /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module [ OK ]
Removing old VirtualBox netflt kernel module [ OK ]
Removing old VirtualBox kernel module [ OK ]
Recompiling VirtualBox kernel module [ OK ]
Starting VirtualBox kernel module [ OK ]

Kaynak:http://systembash.com/content/installing-virtualbox-pae-kernel-centos/

9Feb/090

Debian web site

Debian kullanimi sirasinda faydasini gordugum ve goreceginize inandigim web siteleri.

debian.org
http://www.debianhelp.org/
http://www.debianhelp.co.uk/
http://www.debianadmin.com/
http://www.debian-administration.org/

[ad#ad-1]

Filed under: Uncategorized No Comments
9Feb/090

Blocking a DNS DDOS using the fail2ban package

[ad#ad-1]
Are you tired of getting multi-thousand line emails from the logcheck package that contain multiple reports of denied queries from named? If so this article will show how you can reject these DDOS attempts via the fail2ban package.

apt-get install fail2ban

mkdir /var/log/named
chmod a+w /var/log/named

Next, edit /etc/bind/named.conf.local and add the following lines

logging {
channel security_file {
file "/var/log/named/security.log" versions 3 size 30m;
severity dynamic; print-time yes; };
category security { security_file; };
};

now to set up fail2ban. Edit the /etc/fail2ban/jail.conf file and change from:

[named-refused-udp]
enabled  = false to:true
[named-refused-tcp]
enabled  = false to true

Then restart fail2ban in the usual manner,

/etc/init.d/fail2ban restart

read more article for click