CentOS use ext3 file system, and it do not support reiserfs. Therefore if you try to mount a drive with reiserfs partition, it give error
mount: fs type reiserfs not supported by kernel
It's possible to see what filesystems are supported by running this command:
cat /proc/filesystems
On my fairly default install CentOS 4 machine, the output of the above command was this:
nodev sysfs
nodev rootfs
nodev bdev
nodev proc
nodev ... [ Continue reading... ]
In /etc the file, localtime, is a link to or copy of a file containing information about your time zone. Zone information files are usually in /usr/share/zoneinfo but this depends on your distribution. So if your localtime file points to a zone info file that is not your time zone you can change it by browsing the directories in /usr/share/zoneinfo to find your country, then find your city or a city in the same time zone and link localtime to... [ Continue reading... ]
Simple steps
1) Login to your mybb admin panel
2) go to mycode
3) Click on "Add new Mycode"
4) Now write following
i) Title: megavideo
ii) Regular expression:
\[megavideo\](.*?)\[/megavideo\]
iii) Replacement:
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0" width="432" height="351"><param name="movie"... [ Continue reading... ]
Simple steps
1) Login to your mybb admin panel
2) go to mycode
3) Click on "Add new Mycode"
4) Now write following
i) Title: google video
ii) Regular expression:
(\[googlevideo\]|<a href=\"(http://)?video.google.(com|co\.uk)/videoplay\?docid=)(\W?)(\d{15,20})(\[/googlevideo\]|\" target=\"_blank\">(.*?)</a>)
iii) Replacement:
<embed style="width:400px; height:326px;" id="VideoPlayback"... [ Continue reading... ]
Simple steps
1) Login to your mybb admin panel
2) go to mycode
3) Click on "Add new Mycode"
4) Now write following
i) Title: youtube
ii) Regular expression:
(\[youtube\]|(<a href=\")?(http://)?(www.)?youtube.com/watch\?v=)(.{11}?)((.*?)\" target=\"_blank\">)?((.*?)\[/youtube\]|(.*?)</a>)
iii) Replacement:
<object width="425" height="350"><param name="movie"... [ Continue reading... ]
1) Login to shell via root.
2) Download BFD
wget
http://www.rfxnetworks.com/downloads/bfd-current.tar.gz
3) Unpackage the download
tar -xvzf bfd-current.tar.gz
4) Move to BFD folder
cd bfd-version-goes-here
5) Install BFD
./install.sh
6) Configure BFD
nano -w /usr/local/bfd/conf.bfd
then
Find: ALERT_USR="0" Change to: ALERT_USR="1"
Find: EMAIL_USR="root" Change to: EMAIL_USR="your@yourdomain.com"
7) Save and exit.
Ctrl+X then... [ Continue reading... ]