Archive for the Linux Software Category

How to install ffmpeg with all support needed

Ok .. I’l show you how ti install FFmpeg, Mplayer, mencoder and other support for a tube server..
First of all, i made folder named convert
# mkdir convert
Then go to that folder
# cd convert
Now we have to get all stuff needed…
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk mplayer
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz
ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20091011-2245.tar.bz2
http://www.tortall.net/projects/yasm/releases/yasm-0.8.0.tar.gz
wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2
OK when you got the [...]

1 Comment

Cisco Wireless Control System - Windows / Linux - ISO

Cisco Wireless Control System – Windows / Linux – ISO

Cisco Wireless Control System (WCS) is the industry’s most comprehensive management platform for lifecycle management of 802.11n and 802.11a/b/g, enterprise-class wireless networks. This robust management platform delivers a cost-effective management solution that enables IT administrators to successfully plan, deploy, monitor, troubleshoot, and report on indoor and outdoor wireless networks.
Cisco Wireless Control System (WCS) is the [...]

1 Comment

Python recrusion limit

When visiting reddit.com liked the idea and I tried to install the same application code itself to the server. The raising of this application I ran into a few problems. One problem was the RuntimeError: maximum recursion depth exceeded in cmp.
To’d increased this limit I tried the following:
root@test [/home/reddit/www/reddit/r2]# python
>>> import sys
>>> sys.setrecursionlimit(1500)
and that is [...]

1 Comment