0024 | ลง MRTG บน CentOS/Fedora แบบง่ายๆ

ขั้นตอนพวกนี้ ก๊อปปี้แล้ววางได้เลยครับ
จดไว้กันลืม 555+
ทำมาด้วยความขี้เกียจของตัวข้าพเจ้าเองแหละ

yum -y install net-snmp mrtg
wget -4 -O /etc/snmp/snmpd.conf www.icez.net/files/snmpd.conf
wget -4 -O /var/www/mrtg/mrtg-load.sh www.icez.net/files/mrtg-load.sh
chmod a+x /var/www/mrtg/mrtg-load.sh
/etc/init.d/snmpd restart
cfgmaker --global 'WorkDir: /var/www/mrtg' --global 'Options[_]: bits,growright' --no-down --zero-speed=1000000000 --noreversedns --output /var/www/mrtg/mrtg.cfg --ifdesc=name --snmp-options=:::::2 public@localhost
wget -4 -O /tmp/mrtg.cfg www.icez.net/files/mrtg.cfg
cat /tmp/mrtg.cfg >> /var/www/mrtg/mrtg.cfg
/bin/cp -fv /var/www/mrtg/mrtg.cfg /etc/mrtg/mrtg.cfg
echo "Alias /mrtg /var/www/mrtg" > /etc/httpd/conf.d/mrtg.conf
/sbin/chkconfig snmpd on
indexmaker /etc/mrtg/mrtg.cfg > /var/www/mrtg/index.html
if [ -d /usr/local/directadmin ]; then ln -s /var/www/mrtg /var/www/html/; fi
/etc/init.d/httpd graceful

สั้นๆ ง่ายๆ ได้ใจความ

ปล. สำหรับ fedora 9 ไอ้ mrtg ที่แถมมามันรันไม่ขึ้น ไม่รู้เน่าตรงไหน
ก็เลยต้อง compile เพิ่มเองนิดหน่อยครับ
ขั้นตอนตามนี้ (copy แล้ววางอีกแล้วครับทั่น)

cd /usr/local/src
wget http://oss.oetiker.ch/mrtg/pub/mrtg-2.16.4.tar.gz
tar zxf mrtg-2.16.4.tar.gz
cd mrtg-2.16.4
yum -y install libpng-devel gd-devel
./configure --prefix=/usr/local/mrtg && make && make install
echo "*/5 * * * * root LANG=C LC_ALL=C /usr/local/mrtg/bin/mrtg /etc/mrtg/mrtg.cfg --lock-file /var/lock/mrtg/mrtg_l --confcache-file /var/lib/mrtg/mrtg.ok" > /etc/cron.d/mrtg

Tags: ,

0023 | Collections Framework

ไม่มีอะไรครับ เอา code มาเก็บไว้เฉยๆ 555
กลับมาอ่านอีกทีคงลืมแล้วแหงๆ ว่ามันไว้ทำอะไร

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.*;
class Product implements Comparable<Product>
{
public int id;
public String name;
public int qty;
public double price;
 
public Product(int id, String name, int qty, double price) {
this.id = id;
this.name = name;
this.qty = qty;
this.price = price;
}
 
public String toString() {
return this.id +:+ this.name +:+ this.qty +:+ this.price;
}
 
public int compareTo(Product s) {
return s.qty - this.qty;
}
}

———————————–

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.*;
class ProductDB
{
public static void main(String[] args)
{
List<Product> db = new LinkedList<Product>();
db.add(new Product(1, “pen”, 20, 5.50d));
db.add(new Product(2, “ruler”, 18, 10.00d));
db.add(new Product(3, “notebook”, 15, 18.50d));
db.add(new Product(4, “rubber”, 40, 15.00d));
db.add(new Product(5, “pencil”, 25, 3.00d));
Collections.sort(db);
for (Product i : db) {
System.out.println(i);
}
}
}

Tags: , ,