Thursday, May 26, 2005

Webmin 1.200 setup successfull story..apis17

There are steps to install webmin on your rh9 server..
1. goto http://www.webmin.com and download required file. Just click at Downloading & Installing button and you will go to installation menu.

2. after download webmin-1.200-1.noarch file then you can install by typing this command..

go to terminal, login to normal user

$ .. type su
then enter your root password

go to download path
# type cd /path/to/download/location

then install the software
# use command rpm -ivvr webmin-1.200-1.noarch.rpm

*note that extra v is for debugging process
use -ivr command to disable debug text (u cannot see what happened during installation, so -ivvr is recomended)

next step is to configure your webmin,
first go to /usr/libexec (created after rpm installation)
# type cd /usr/libexec
# type ./setup.sh /usr/local/webmin

wait for a while and just enter default value if asked for example..
[/etc/webmin]
the log directory.. and etc.

almost finished.. the last step is to set default webmin user
# type /usr/local/webmin/changepass.pl /etc/webmin root <your_password>

**you can add and remove another webmin user later in your webmin control panel

now you're done.. test your server now using http://your.server.com:10000

for example http://apis17.serveftp.com:10000
user: pelawat
password: PassPelawat

if you have any comment or question just write here.. tq..
apis17: http://www.apis17.net
Webmin is a great tools for all linux fan to try.. check it out
--get help here
http://www.webmin.com/faq.html
http://www.webmin.com/download.html

http://taufico17.fotopages.com -- pinjam kejap aa.. :)

Interesting Linux Gadget

1. ntop.. status: installed (OK)
2. Webmin.. status: downloaded but cannot run at this momment.. hehe

more tool next time lah..

Setup this day.. 26/may

still setup ODBC database with linux.. get error Can't find X includes. so after searching in google i found that this software require xorg-x11-devel

http://www.linuxquestions.org/questions/history/321701

now i'm downloading X11R6.8.2 Release using CVS method..

http://xorg.freedesktop.org/wiki/X11R682Release?action=show

i don't know what will happen then.. :)

Saturday, May 21, 2005

LINUX which command...

ps -aux -- list all process
which useradd -- to find where is that command located

http://www.linuxquestions.org/questions/showthread.php?threadid=176503

Thursday, May 19, 2005

ctrl+alt+F1 Disaster in Linux

After Ctrl+Alt+F1 you can always return to your GUI with Alt+F7. It is not connected to a change of runlevels (you remain in runlevel 5, the X server is still running). What message do you get, when you try to login as user? In case you cannot see a message, boot into runlevel 3 (type '3' on the grub menu), login as user and start KDE with 'startx'. This should return messages.

http://www.linuxquestions.org/questions/history/321700

Tuesday, May 17, 2005

Embded Media Player

use this solution for firefox browser.. the background music thing doesn't work because of the code used, <embed> is deprecated, and Firefox won't recognise it.


<object id="MediaPlayer"
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft® Windows®
Media Player components..." type="application/x-oleobject"
width="460" height="18">
<param name="AnimationatStart"
value="false">
<param name="FileName" value="URL_HERE">
<param name="TransparentatStart"
value="true">
<param name="AutoStart" value="true">
<param name="ShowStatusBar" value="true">
<param name="ShowControls" value="true">
<param name="ShowDisplay" value="false">
<embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/windows/windowsmedia/en/download/default.asp" src="URL_HERE"
name="MediaPlayer" showcontrols="1" showstatusbar="1"
showtracker="0" autostart="1" width="460" height="18"
border="0"></embed>


now my radio is compatible with firefox browser.. :)
thank you .. http://regretless.org/viewthread.php?tid=29890

Embded Media Player

use this solution for firefox browser.. the background music thing doesn't work because of the code used, <embed> is deprecated, and Firefox won't recognise it.



now my radio is compatible with firefox browser.. :)

thank you .. http://regretless.org/viewthread.php?tid=29890

GZ2 Problem..

http://www.linuxquestions.org/questions/showthread.php?threadid=192334

How do I extraxt .tar.bz2 files? tar -xvjf returns an error msg telling me this file isn't a bz2-file. The same command works fine on files ending only with .bz2

try bunzip2 , and then tar xvf

:)

RPM Redhat 9

to update use: rpm -Uvh file_name
to install: rpm -ivh file_name
to freshen: rpm -Fvh file_name

then your files goes to :
/usr/src/redhat/SOURCES

Linux Operation

http://www.linuxcommand.org


cp - copy files and directories
mv - move or rename files and directories
rm - remove files and directories
mkdir - create directories

:)

SKGD Radio Online..

http://skgd.serveftp.com/radio - Online Radio
http://portal.apis17.net - portal download apis17™

Simple install procedure
========================
% gzip -cd glib-2.6.4.tar.gz tar xvf - # unpack the sources
% cd glib-2.6.4 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB
[ Become root if necessary ]
% rm -rf /install-prefix/include/glib.h /install-prefix/include/gmodule.h
% make install # install GLIB

Working on linux server.. ODBC compunents

http://www.linuxquestions.org/questions/archive/2/2003/09/1/83745
1. How to install mdbtools..
-- remove GLIB (2.2.3) rh9

checking for pkg-config... /usr/local/bin/pkg-configchecking for GLIB - version >= 2.0.0...
*** 'pkg-config --modversion glib-2.0' returned 2.6.4, but GLIB (2.2.3)
*** was found! If pkg-config was correct, then it is best
*** to remove the old version of GLib. You may also be able to fix the error
*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing
*** /etc/ld.so.conf. Make sure you have run ldconfig if that is
*** required on your system.
*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH
*** to point to the correct configuration files

Ahhh..
Anybody can help me?
Related Posts Plugin for WordPress, Blogger...