|
|
发表于 2004-10-1 15:34:10
|
显示全部楼层
这是我机器上的一些软件及配置,自己的note为了方便,用英文写的,至于软件的具体作用可以到主页上看看:
* Install softwares
Most of the softwares should be gtk version,gtk2 seems works not good.
** apt-get http://apt.freshrpms.net/
** firefox http://www.mozilla.org/products/firefox/releases/#new
You can edit firefox/defaults/pref/all.js to change the default
settings,such as download to a defined directory...,~/.phoenix/ can
also change some user settings.
Note: to get rid of the popup window about download plugin,we can
rename the file "libnullplugin.so" in plugins directory.
** thunderbird http://www.mozilla.org/projects/thunderbird/
A mail client from mozilla.
** rox http://rox.sourceforge.net/
** mplayer
cp -r win32codec /usr/lib/win32
cp -r rp9codecs /usr/lib/real
cd mplayer;make distclean;configure --with-reallibdir=/usr/lib/real
** meld http://meld.sourceforge.net/
You need install gnome-python2-gconf-2.0.0-2.i386.rpm first
** hotwayd http://hotwayd.sourceforge.net/
Used to get mail from hotmail...
** antivir http://ww1.kendis-net.com/antivir-2.0.8-1.i386.rpm
A virous killing software in linux,i have not tested in fedora,just
redhat9 OK.
rpm -ivh antivir-2.0.8-1.i386.rpm
cd usr/lib/AntiVir
bunzip2 antivir.bz2
./antivir -update (update the virous database)
./antivir --help
EX. ./antivir /home/temp -allfiles -s -e -del
** tpb http://www.nongnu.org/tpb/
Get it from apt source is more easy.
modify /etc/apt/sources.list,comment others,add following:
# Fedora Core (SdV Plurim?dia, Strasbourg, France)
rpm http://fedora.mirror.sdv.fr/fedora/ fedora/1/i386 os updates stable testing
# Fedora Extras (SdV Plurim?dia, Strasbourg, France)
#rpm http://fedora.mirror.sdv.fr/fedora/ fedora/1/i386
# Macromedia (Europe, Centro de Comunicaciones CSIC/RedIRIS, Madrid Spain)
rpm http://macromedia.rediris.es/apt/ fedora/1 macromedia
rpm http://rpm.livna.org/ fedora/1/i386 stable testing
then apt-get update && apt-get install tpd
** realplayer https://player.helixcommunity.org/
** gthumb
Just as acdsee,to view pictures
** pdftohtml http://pdftohtml.sourceforge.net/
A good tool to convert pdf to html
** GNU Parted http://www.gnu.org/software/parted/parted.html
GNU Parted is a program for creating, destroying, resizing, checking
and copying partitions, and the file systems on them.
** kismet http://www.kismetwireless.net/
It is a powerful linux wireless sniffer.
1. download the lastest stable version
2. do ./Configure && make dep && make && make install
3. configure /usr/local/etc/kismet.conf and /usr/local/etc/kismet_ui.conf
kismet.conf:
# my card is cisco 350
source=cisco_wifix,eth1:wifi0,ciscosource
# log put to /var/log/kismet(mkdir it)
logtemplate=/var/log/kismet/%l-%n-%d-%i
# i have no gps
gps=false
kismet_ui.conf
# i don't like the sound
sound=false
4. scripts to control
start.kismet
#!/bin/sh
cardctl scheme kismet
ifconfig eth1 down
#kismet -i eth1
ifconfig wifi0 up
echo "Mode: r" > /proc/driver/aironet/eth1/Config
echo "Mode: y" > /proc/driver/aironet/eth1/Config
{ mlterm -e kismet ; stop.kismet; }
stop.kismet
#!/bin/sh
ifconfig eth1 down
ifconfig wifi0 down
cardctl scheme none
echo "reseting card parms..."
iwconfig eth1 channel 3
iwconfig eth1 mode ad-hoc
iwconfig eth1 key [1] restricted
echo "waiting 3 seconds for card to settle out..."
sleep 3
echo "ejecting card and reinserting after 3 seconds..."
cardctl eject 0
sleep 3
cardctl insert 0 |
|