snd-hda-intel on Acer Aspire 3680

Tuesday, July 31, 2007 | Label: | 3 komentar |

The sound default on Ubuntu Feisty is absolutely low quality. I want louder, more clear. So, I decided to compile an alsa by myself. Download using wget,

wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.14.tar.bz2

Extract,

tar -xjf alsa-driver-1.0.14.tar.bz2

Came to inside alsa folder,

cd alsa-driver-1.0.14/

Configure,

./configure

Compile,

sudo make
sudo make install

Reboot,

sudo reboot

Log in back and edit alsa base configuration,

sudo vim /etc/modprobe.d/alsa-base

Put this code at the end of the file,

options snd-hda-config model=auto

Reboot,

sudo reboot

Log in back and open mplayer also edited their sound configuration. I've choosed alsa driver in here.


Enabled all,


Then close it, and restart mplayer. Open an example movie and hear the sound quality. For me, it is better than before.

How to hide navbar in Blogger

Monday, July 30, 2007 | Label: | 0 komentar |

Just put this code in your Blogger template,


/* ---( page defaults )--- */
/* === Hide the NavBar === */
.Navbar {
visibility:hidden;
display: none;
}
/* === Hide the NavBar === */

Cek traffic server Debian

Monday, July 09, 2007 | Label: | 0 komentar |

Katanya si pake ntop. Tapi setelah browsing kok lebih kerenan nvstat yak..

Text mode.


#apt-get install nvstat

Trus jalanin

#nvstat -u -i eth0

Untuk ngeliat traffic

#nvstat

Lebih lengkapnya

#nvstat --help

Nge cron buat clamav

Thursday, July 05, 2007 | Label: | 0 komentar |

Setelah instalasi clamav, hal yang perlu dilakukan adalah menetapkan update virus definition clamav secara otomatis dan scan folder secara otomatis. Caranya?

crontab -e

Yang isinya (ditempatku),

# m h dom mon dow command
00 07 * * * freshclam
00 11 * * * freshclam
00 15 * * * freshclam
00 07 * * * clamscan -r /var/www
00 11 * * * clamscan -r /var/www
00 15 * * * clamscan -r /var/www
00 19 * * * clamscan -r /var/www
00 07 * * * clamscan -r /home
00 11 * * * clamscan -r /home
00 15 * * * clamscan -r /home
00 19 * * * clamscan -r /home


Update :

To remove infected files, we must add "--remove " option. Example,

00 19 * * * clamscan --remove -r /home

technorati tags: