Skip to main content

Posts

Showing posts from February, 2009

Install Webmin on Centos 5.2

Not like other linux distribution, to install webmin you need verified pgp. You can download webmin pgp key in here . After download pgp key and webmin 1.450 do this step: - rpm --import jcameron-key.asc - rpm --U webmin-1.450-1.noarch.rpm After that, don't forget to open port 10000 and run Webmin service. from your browse go to : https://localhost:10000. 'localhost' can be your server ip address.

Opensuse 11.1 wireless connection on Acer Aspire 4520 Notebook

Opensuse 11.1 is very good linux distribution on Acer Aspire 4520. Most hardware is setup perfectly and all application running smoothly. One and the most problem is wireless network is not so simple to configure. This morning my wireless is not work, what happen? After check hardware, I get one problem, that is the network hardware detect different driver. Network configuration detected hardware is 'ath5k' but in hardware check that is 'ath5k_pci'. Finally I change network configuration to ath5k_pci. And the network is run again.

Access Pidgin from Squid Proxy

In my Office some person like using Pidgin as Chatting tools to connect to Yahoo messager. Because my office using Squid as Proxy server, some modification of squid.conf is adding. This line below (red bold) you must add on squid.conf. acl SSL_ports port 443 acl SSL_ports port 5050 acl Safe_ports port 80 acl Safe_ports port 21 acl Safe_ports port 443 acl Safe_ports port 70 acl Safe_ports port 210 acl Safe_ports port 1025-65535 acl Safe_ports port 280 acl Safe_ports port 488 acl Safe_ports port 591 acl Safe_ports port 777 acl CONNECT method CONNECT acl shoutcast rep_header X-HTTP09-First-Line ^ICY\s[0-9] acl apache rep_header Server ^Apache Restart Squid : #service squid restart Try connect from pidgin. If any problem don't be ashame to put comment in this post. Thank's .