Quickly Add/Remove Multiple packages with apt-get (command line hackery)
This is a simply yet effective way I personally add/remove packages in ubuntu when I change distro's and need to reinstall everything other than aptoncd which I have an article for, my site search will bring it up searching for "aptoncd". Basically the idea is to add all your favorite packages to a text file and install them all with a simple command as well as removing them:
echo "deb repository.com repo/">>/etc/apt/sources.list
to add repositories via the terminal
Now make a list like this:
pidgin
opera
firefox
and-any-package you need, save it in a safe location named aptfiles.txt
Now to simply restore/install your list do:
cat aptfiles.txt | xargs sudo apt-get -y install
Now you can also make a list to remove files you dont need named apt-remove.txt
Do the same:
cat apt-remove.txt | xargs sudo apt-get -y remove
I hope you enjoy this simple apt-get trick as much as I do, feel free to add any tips/tricks of your own in the comments.
d e f c o n
(2) Comments!
Howto Search And Replace Text in files Recursively on Ubuntu Linux
I just found a new tool called regexxer, im sure it has been around for a while but I just discovered it.
regexxer is a nifty GUI search/replace tool featuring Perl-style regular expressions. If you need project-wide substitution and you’re tired of hacking sed command lines together, then you should definitely give it a try.
simply apt-get install regexxer
(4) Comments!
Remaster And Clone your Ubuntu Install to a live cd
Remastersys will 'remaster' your existing Ubuntu based distro into a live cd/DVD. Tools like PCLinuxOS's mklivecd have been around a while and proved to be very popular but are tricky to get working with the newer releases of debian/ubuntu, so some guy (apologies, forgot your name) over at Linux Mint (an ubuntu-based distribution) made this really cool tool. And although it has only really been in popular use since about March this year, it has already been compared to the maturity of mklivecd.
Install:
Add the Linux Mint repo to your /etc/apt/sources.list
echo "deb http://www.linuxmint.com/repository romeo/" >>/etc/apt/sources.list
do a "sudo apt-get update"
then:
"sudo apt-get install remastersys" and it should install fine.
Then simply type "sudo remastersys" to get the list of options, which include:
backup - backs up your system including your /home folder with your users on it.
dist - omits the /home folder thus making it a distributable cd that you can give to your friends.
clean - removes the temporary folder that was created, including the new iso so burn it and copy it elsewhere before you run "sudo remastersys clean"
(7) Comments!
Ubuntu Gutsy Beta Release & Download Site
Well the long awaited Ubuntu Gutsy Gibbon Beta is released with a TON of bug fixes,
Check it out and please post the bug fixes on launchpad!
Ubuntu Gutsy Gibbon Download Sites
Download
Get it while it's hot. ISOs and torrents are available at:
-
http://releases.ubuntu.com/releases/7.10 (Ubuntu)
http://releases.ubuntu.com/releases/kubuntu/7.10 (Kubuntu)
http://releases.ubuntu.com/releases/edubuntu/7.10 (Edubuntu)
http://cdimage.ubuntu.com/xubuntu/releases/7.10/beta (Xubuntu)
Local mirrors are also available:
Europe
-
http://se.releases.ubuntu.com/7.10 (Sweden)
-
http://nl.releases.ubuntu.com/7.10 (The Netherlands)
-
http://ftp.snt.utwente.nl/pub/linux/ubuntu-releases/7.10 (The Netherlands)
-
http://ie.releases.ubuntu.com/7.10 (Ireland)
-
http://gb.releases.ubuntu.com/7.10 (Great Britain)
-
http://de.releases.ubuntu.com/7.10 (Germany)
-
http://fr.releases.ubuntu.com/7.10 (France)
Asia/Pacific
-
http://tw.releases.ubuntu.com/7.10 (Taiwan)
Africa
-
http://za.releases.ubuntu.com/7.10 (South Africa)
North America
-
http://ca.releases.ubuntu.com/7.10 (Canada)
-
http://us.releases.ubuntu.com/7.10 (United States)
please post bugs here
be sure to check for updates hourly...
-defcon
(0) Comments , be the first one!
Howto Easily Upgrade Dell BIOS in Ubuntu
You should always upgrade your bios like you do software because it provides underlying support for your hardware, this is a quick & easy howto to guide you through the process...
The Dell firmware-tools project provides easy method of BIOS and firmware update.
Packages for firmware-tools and firmware-addon-dell for Debian and Ubuntu are under construction. Here is the main firmware-tools page: BIOS and Firmware Updates
BIOS Update Process for Debian/Ubuntu:
(15) Comments!
Next Generation Optimization for Ubuntu!
Well, prefetching isnt a new topic but there is possibility that it can be optimized into the next generation of computing...
I found an interesting Google SoC Project page that shows some promise, ive been searching around for prefetching and ReadyBoost solutions for Ubuntu and ran accross this...
From here:
In todays computer systems the main bottleneck is not CPU but disk access which is several orders of magnitude slower than CPU and memory. In such circumstances the way to improve application performance is to prefetch data it needs from disk before it even requests it and it is the point of prefetching techniques.
The example of prefetching solution is Windows prefetcher.
(0) Comments , be the first one!
Ubuntu ReadyBoost for Desktops and Laptops!
With these simple directions you'll be able to use a USB pen prive as an additional swap. As a result, the pen drive will be used in the same way Windows Vista does through the ReadyBoost functionality.
(5) Comments!
OpenOffice.org OpenXML Translator for Ubuntu
The OpenXML Translator provides support for opening and saving Microsoft* OpenXML-formatted word processing documents (.docx) in OpenOffice.org. So now we all can use the docx extention *yay* although im not very happy about this, id rather have hundreds of companies use *.odf and do away with this addon all together but... This is hot for those that like to use Microsh!t document formats...
Install:
1. echo "deb http://ubuntu.org.ua/ getdeb/" >>/etc/apt/sources.list
2. apt-get update
3. apt-get install odf-converter
or simply download here
Note:You must restart OpenOffice Writer to get the option available on the Load/Save document dialogs.
If you need support for windows or SUSE® Linux Enterprise, SUSE Linux, and openSUSE check out the developer's download site here
(0) Comments , be the first one!
Introducing ioSunbird Apple iCal for Ubuntu!
My friend Luca Cappelletti is kicking ass rolling out yet another fine release for mobile or non-root users or people that just want to download a program and start running it without wasting time installing a thing.
ioMozilla Sunbird® is a cross-platform calendar application, built upon Mozilla Toolkit. Our goal is to bring Mozilla-style ease-of-use to your calendar, without tying you to a particular storage solution.
pic by markcarson.com
Luca has told me he has modified Sunbird to have the ease of use and look of Apple iCal, stay tuned for screenshots from me! Or beat me to it and post em :)
Easy install:
Simply grab ioSunbird here
chmod +x ioCalendarSunbird0.5-feisty_InfodomesticObjects0.8.6
or simply right click on the file to change properties to executable.
mv oCalendarSunbird0.5-feisty_InfodomesticObjects0.8.6 ioCalendarSunbird
or right click rename :)
Then double click or ./ioCalendarSunbird
(1) Comment, lets get the convo started!
Introducing ioGftp 2.0.18-feisty
Check this out, same great Gftp client but without the headache of installing, this is another InfomesticObjects Linux Release.
Benefits:
Easily access ftp sites on the go or run gftp without installing at a computer with no root privileges.
Here is Gftp's Main Features:
First grab ioGftp here
chmod +x ioGftp2.0.18-feisty_InfodomesticObjects0.8.7
or right click change permissions to executable
mv ioGftp2.0.18-feisty_InfodomesticObjects0.8.7 ioGftp
./ioGftp
or simply double click to run
thats it enjoy :)
(0) Comments , be the first one!
Introducing ioOpera 9.2.3
ioOpera9.23 is a recompilation of Opera for Infodomestic Objects Linux. It is developed and tested under Ubuntu Linux, and can be run with just one click without installation on your system."
Benefits:
Faster than Opera
Same as Opera
None-root Users can download and run Opera
Secure
Something new
Same benefits of Opera just no install needed
ioOpera is secure as well, since it runs in ram, so you dont have to worrie about people sn00ping your browser history. Apon reboot all history is gone.
Howto:
Download here
chmod +x ioOpera9.23_InfodomesticObjects0.8.7
mv ioOpera9.23_InfodomesticObjects0.8.7 ioOpera
./ioOpera
or simply double click to run :)
(0) Comments , be the first one!
Introducing ioPidgin 2.2
(1) Comment, lets get the convo started!
Introducing ioAmarok 1.47
Wow, I just found another truly unique application that runs fast as hell right from memory and does not require root access to install, so you non-root users can download this single file and you dont have to install a thing, it runs straight from ram and /tmp and believe it or not, it is faster than amarok because it is all pre-linked. No compiling, installing or anything is necessary.
This is for mobile users that use flash drives as well...
"Does not require KDElibs nor
QTlibs nor any mp3/4 adaptor."!
(2) Comments!
Recover Forgotten Ubuntu Password without reinstalling
If you forgot you password for your ubuntu system you can recover using the following steps
Turn your computer on.
Press ESC at the grub prompt.
Press e for edit.
Highlight the line that begins kernel ………, press e
Go to the very end of the line, add rw init=/bin/bash
press enter, then press b to boot your system.
Your system will boot up to a passwordless root shell.
Type in passwd username
Set your password.
Type in reboot
If this doesnt work you can alternatively try this:
Turn on your computer, and as soon as you the Press Esc to enter grub message, press the escape key.
Select the option that says (recovery mode).
Your PC will boot into a shell. Once you get a command prompt, type "passwd username" where the username is your username.
Enter a new password when prompted, and again when prompted again
Type reboot to reboot your system
Another way is to boot into the system via a live cd open up Applications->Accessories->Terminal
then mount your ubuntu drive if its on /dev/sda1 do this:
mount /dev/sda1/ /media/sda1
Then we chroot into the system:chroot /media/sda1
passwd user
Now change the password, and reboot your box!
(23) Comments!
Upgrade to the Latest Kernel.org Kernel with 1 click in Ubuntu
Now, a short description. KernelCheck is a project that is designed to easily build the latest kernel for your distribution using the instructions provided in the Master Kernel Thread. This automated process is a fork of AutoKernel by Robert Wolterman (xtacocorex), Timothy Janssen (mentok), and Kristof Verbeken (PinguinZ). KernelCheck is currently under the GNU Public License.
- Download KernelCheck
Download it here (recommended)
ORCode:wget http://kcheck.sourceforge.net/pool/latest-stable/kernelcheck-latest.tar.gz
- Unpack the archiveCode:
tar -xzf kernelcheck-*.tar.gz
- Install KernelCheckCode:
cd kernelcheck-*
Code:sudo python setup.py install
- Use itCode:
kernelcheck
Notes on KernelCheck
KernelCheck can be used for several purposes:
- Comparing your kernel with the latest from kernel.org
- Making fun of the Master Kernel Thread because it might be outdated
- Automatically downloading, compiling, and installing the latest kernel
Usage
KernelCheck can be used in a variety of ways, most commonly by opening a terminal and typing in
kernelcheck

If you click yes, after a few moments one like the one below should appear:

The 'Build Latest Kernel' button will download, compile, and install the latest stable kernel from kernel.org. By selecting the checkbox 'Apply prepatch instead of normal patch', it will apply the listed prepatch (development).
The 'Check for Program Updates' button will go to the KernelCheck website and parse finger_banner2 for the latest version of KernelCheck. If you are running the latest version, it will say so, and if you are not, it will ask you to update.
You can edit the /usr/bin/kernelcheck files to your needs, changing anything you like, because my program is under the GNU Public License Version 3 released June 2007.
KernelCheck 1.0.5 has been released!
Changelog (Key features only):
- Added safe halt support (signal trapping) in both stages
- Added network test (thanks to walkerk)
- Added support for background processes
- KernelCheck will not freeze anymore EXCEPT on security updates
- Added security update ability
The 'Check for Updates' button in KernelCheck 1.0.4 (or patched 1.0.3r1) should automatically detect this upgrade. This has been tested with version 1.0.4.
Download at SF.net, or the download page.
Post questions, comments, etc. here.
(4) Comments!
Introducing Linux Multimedia Studio For Ubuntu!
Damn!, just found a sweet application on getdeb.net, its truly chillin for you dj's out there and people that like to mess around with beats like I do. It looks like you can now create great music with Ubuntu Linux. Check it...
LMMS aims to be a free alternative to popular (but commercial and closed- source) programs like FruityLoops, Cubase and Logic giving you the ability of producing music with your computer by creating cool loops, synthesizing and mixing sounds, arranging samples, having more fun with your MIDI-keyboard and much more...
(1) Comment, lets get the convo started!
Play videos within *.rar files without unpacking/extracting them in Ubuntu
If you download your movies and tv series only as scene releases, then you'll have to extract the release's video file from its multiple rar files. That can take some time... Not a horrible long time. You can live with it... But I learned a cool thing and thought I could share it just because I have nothing better to do...
sudo apt-get install unrar vlc
unrar p -inul /example/path/to/Some.Scene.Release/some.sr.r00 | vlc -
unrar = starts unrar
p = outputs the extraction data of the file
-inul = disables error messages
/example/path/to/Some.Scene.Release/some.sr.r00 = path to one of the scene release's rar files
| vlc - = pipes the output of the extraction into vlc that starts to play the output, and therefore plays the video file that is within the rar files. Don't forget the ending "-", or it won't work. You can use another video player if you want, just replace "vlc" with what you want. I have only tested this with vlc and mplayer.
One bad thing with this trick is that you can only pause and play the file, but not rewind or fast forward.
I only write "rarvideo somerarfile.r00". How to do that:
Open ~/.bashrc in a text edior, using for example this command:
gedit ~/.bashrc
PATH=$PATH:$HOME/bin
(This makes your Bash looking in the ~/bin folder for executeable files.)
Make a folder in your home folder called "bin":
mkdir ~/bin
gedit ~/bin/rarvideo
#! /bin/sh
unrar p -inul $1 | vlc -
Make the file executeable with this command:
chmod u+x ~/bin/rarvideo
bash
you can also right click a rar file in nautilus and choose "open with" and type in rarvideo
(2) Comments!
Howto install the subversion mplayer + gmplayer + all the codecs.
This guide intends to show how to successfully compile a fully featured svn mplayer with all the codecs and with the GUI player gmplayer. It is a bit of a difficult one so make a cup of tea and get your keyboard ready!!
Firstly install subversion, compiling tools and checkinstall and secondly download the svn mplayer plus the full codec pack:
$ sudo apt-get install build-essential checkinstall subversion
$ cd Desktop
$ svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
$ wget http://www.mplayerhq.hu/MPlayer/releases/codecs/all-20061022.tar.bz2
$ tar xjvf all-20061022.tar.bz2
$ sudo mkdir /usr/local/lib/codecs/
$ sudo cp $HOME/Desktop/all-20061022/*.* /usr/local/lib/codecs/
$ sudo apt-get install liblame-dev libdvdread3-dev libdvdnav-dev libogg-dev \
libvorbis-dev libxv-dev libtheora-dev libpng12-dev libmpcdec-dev \
libcdparanoia0-dev libxinerama-dev x11proto-xinerama-dev libjpeg62-dev \
libgdk-pixbuf-dev libfreetype6-dev libexpat1-dev libfontconfig1-dev \
libcaca-dev libfaac-dev libmp4v2-dev libaa1-dev libavcodec-dev \
libavifile-0.7-dev libsdl1.2-dev libesd0-dev libfaad2-dev libice-dev \
libmatroska-dev libmad0-dev libmp4v2-dev libmikmod2-dev libpostproc-dev \
libspeex-dev libxvidcore4-dev libxvidcore4 avifile-xvid-plugin \
avifile-divx-plugin ladspa-sdk libsvga1-dev libsvga1 libungif4-dev \
libungif4g libenca-dev libdfb++-0.9-22 libdfb++-dev libdirectfb-0.9-22 \
libdirectfb-dev libavformat-dev libfame-0.9 libfame-dev zlib1g-dev \
liblivemedia-dev libfribidi-dev libdvdnav4 libdvdplay0 libasound2-dev \
libdv4-dev libpopt-dev zlib1g-dev xlibs-dev libflac++-dev libflac-dev \
liboggflac++-dev liboggflac-dev toolame ttf-bitstream-vera \
libdbus-glib-1-dev libx264-dev libggi2-dev libxvmc-dev libxxf86vm-dev \
libxxf86dga-dev libfontconfig-dev libartsc0-dev libglu-dev \
libglu1-mesa-dev libdts-dev libdvdread-dev libdv-dev libpng3-dev \
libpng12-dev libsmbclient-dev gawk sharutils libaudiofile-dev liblzo-dev \
libc6-dev libggimisc2 libggimisc2-dev libggiwmh0 libggiwmh0-dev \
libatk1.0-dev libcairo2-dev libgtk2.0-dev libpango1.0-dev \
libxcursor-dev libxfixes-dev x11proto-fixes-dev liba52-0.7.4-dev
$ cd $HOME/Desktop/mplayer/
$ ./configure \
--prefix=/usr/local \
--enable-largefiles \
--enable-gui \
--codecsdir=/usr/local/lib/codecs
$ make && sudo checkinstall -D
$ mkdir $HOME/.mplayer/
$ sudo cp /usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf ~/.mplayer/subfont.ttf
$ cd Desktop
$ wget http://www.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2
$ tar xjvf Blue-1.7.tar.bz2
$ mkdir $HOME/.mplayer/skins/default/
$ cp $HOME/Desktop/Blue/*.* $HOME/.mplayer/skins/default/
original credits for this here
(0) Comments , be the first one!
How To Mount Your iPhone Filesystem On Ubuntu
Do you want to browse your iPhones’ filesystem on your Ubuntu machine? Follow these instructions and you’ll have it working in no time flat.
This article assumes your iPhone is “out of jail” and has Installer.app installed. If you have not already gotten this part taken care of, click here for steps you need to follow first.
You’re in! Now upload ringtones, compile hello world, slice dice and serve http via apache - whatever floats your boat.
Original Credits for this article go to:www.fsckin.com
(1) Comment, lets get the convo started!
Advanced lsof Usage in Ubuntu or any linux Operating system
lsof
lsof is the Linux/Unix über-tool. I use it most for getting network connection related information from a system, but that's just the beginning for this amazing and little-known application. The tool is aptly called lsof because it "lists open files". And remember, in Unix just about everything (including a network socket) is a file.
(0) Comments , be the first one!
Easy linux hosting on Ubuntu Feisty Fawn with Easy Hosting Control Panel
Hey I dont do my own hosting but I found out a great hosting solution for ubuntu, check it out and let me know what you think..
Easy Hosting Control Panel is designed for hosting of multiple domains on single machine.
It uses LAMP(LinuxApacheMysqlPhp).
Its aim:easily installable,easy usage, non-complex,functional.
Why use a control panel? Because hosting a domain in an ubuntu/linux system requires many settings to be done. hosting control panel makes these tasks easy, with webbased interface.
hosting means putting web pages on the internet for general use, as you do now..
ehcp is the first control panel in this field with its unique features such as: complete php based, object oriented, opensource and free. even install is using php, so it is extremely easy to learn and extensible..
There are many free hosting control panels, but none of them have these features. some have non-opensource code, some other then php, some is not object oriented..
ehcp is in beta stage. there are many things to do. but the main skeleton is built in a straight forward way.
version 0.18.1 released !
feature overview:
(7) Comments!
Howto: Extend the Life of Your Thinkpad's Battery (tp_smapi) on Ubuntu Feisty and Gutsy
You may or may not be aware that lithium ion batteries (like those present in the newer Thinkpad models) survive best when kept charged between 30%-85%. They should not be kept fully charged, and should be left off for long periods of time charged to ~%40. See here for more tips on Thinkpad battery treatment.
One way to extend the life of your Thinkpad's battery is to control the way it charges -- that is, to make sure that you keep it in the 30%-85% charged range whenever possible. This is possible easily and quickly through the tp_smapi kernel module.
wget http://easynews.dl.sourceforge.net/sourceforge/tpctl/tp_smapi-0.32.tgz ~/tp_smapi-0.32.tgz
sudo aptitude install build-essential linux-source-2.6.22
sudo -s
cd /usr/src
tar -xjf linux-source-2.6.22.tar.bz2
(2c) Now go into /lib/modules/`uname -r`. Both the "build" and "source" symbollic links should point to your source folder. You can check this by observing the output of ln -l, or just create it this way with the following:
sudo -s
rm -i /lib/modules/`uname -r`/source /lib/modules/`uname -r`/build
ln -s /usr/src/linux-source-2.6.22 /lib/modules/`uname -r`/source
ln -s /usr/src/linux-source-2.6.22 /lib/modules/`uname -r`/build
tar -xzf ~/tp_smapi-0.32.tgz
cd tp_smapi-0.32 && make && sudo make install
cd tp_smapi-0.32 && make && sudo make install HDAPS=1
sudo -s;
echo "tp_smapi" >> /etc/modules
sudo modprobe tp_smapi
/sys/devices/platform/smapi/BAT0/start_charge_thre sh /sys/devices/platform/smapi/BAT0/stop_charge_thres h |
sudo -s;
echo "30" > /sys/devices/platform/smapi/BAT0/start_charge_thresh;
echo "85" > /sys/devices/platform/smapi/BAT0/stop_charge_thresh;
sudo -s;
echo "81" > /sys/devices/platform/smapi/BAT0/start_charge_thresh;
echo "85" > /sys/devices/platform/smapi/BAT0/stop_charge_thresh;
Hope this helps! Most of this information has come from here. Please let me know if you have any problems.
(3) Comments!
Installing Xen On An Ubuntu Feisty Fawn Server From The Ubuntu Repositories
This tutorial provides step-by-step instructions on how to install Xen on an Ubuntu Feisty Fawn (Ubuntu 7.04) server system (i386). You can find all the software used here in the Ubuntu repositories, so no external files or compilation are needed.
Xen lets you create guest operating systems (*nix operating systems like Linux and FreeBSD), so called "virtual machines" or domUs, under a host operating system (dom0). Using Xen you can separate your applications into different virtual machines that are totally independent from each other (e.g. a virtual machine for a mail server, a virtual machine for a high-traffic web site, another virtual machine that serves your customers' web sites, a virtual machine for DNS, etc.), but still use the same hardware. This saves money, and what is even more important, it's more secure. If the virtual machine of your DNS server gets hacked, it has no effect on your other virtual machines. Plus, you can move virtual machines from one Xen server to the next one.
(0) Comments , be the first one!
How To Install VMware Server On Ubuntu 7.04 (Feisty Fawn)
This tutorial provides step-by-step instructions about how to install the free VMware Server on an Ubuntu 7.04 (Feisty Fawn) system. With VMware Server you can create and run guest operating systems ("virtual machines") such as Linux, Windows, FreeBSD, etc. under a host operating system. This has the benefit that you can run multiple operating systems on the same hardware which saves a lot of money, and you can move virtual machines from one VMware Server to the next one (or to a system that has the VMware Player which is also free).
Build Environment
Make sure you have the needed build environment and tools to compile the vmware modules for the kernel.
aptitude install linux-headers-`uname -r` build-essential
aptitude install xinetd
Downloading VMware Server
Vmware Server can be downloaded from:
http://www.vmware.com/download/server/
After accepting the EULA grab the vmware server .tgz file (around 102MB).
Note: As of right now VMware Server won't compile correctly on Feisty without patching the vmmon file.
Patch information can be found here: http://www.vmware.com/community/thread.jspa?messageID=76957&tstart=0
The patch can be downloaded here: http://ftp.cvut.cz/vmware/vmware-any-any-update109.tar.gz
Installing VMware Server
Untar the VMware Server package:
tar -xzf /Path/To/VMware-server-1.0.3-xxx.tar.gz
Change into the install directory:
cd vmware-server-distrib
Run the installer:
sudo vmware-install.pl
Choose defaults to questions until it asks:
Before running VMware Server for the first time, you need to configure it by invoking the following command: "/usr/bin/vmware-config.pl". Do you want this program to invoke the command for you now? [yes]
Enter no and quit the install. To install the patch cd back to your start directory:
cd ..
Untar the patch:
tar xvzf /Path/To/vmware-any-any-update109.tar.gz
Enter the directory:
cd vmware-any-any-update109
Run the patch script:
sudo ./runme.pl
It should prompt you to run vmware-config.pl, choose yes at this time. If it doesn't you can always run the config script manually:
sudo vmware-config.pl
Again you can hit enter to choose the defaults to all the questions, though you will probably want to manually choose which networking features you want. To access the server run
vmware
for the VMware Server Console.
(1) Comment, lets get the convo started!
Setup and Spoof Deluge Bittorrent Client for Private torrent Trackers
Ok i am a member of sceneaccess.org a private bittorrent site for the underground scene, and I was stuck using transmission which is a decent client but I prefer Deluge. Here is a simple howto, to setup Deluge to spoof the client id to uTorrent...
apt-get install g++ make python-all-dev python-all python-dbus python-gtk2 python-xdg python-support libboost-dev libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev libboost-serialization-dev libssl-dev zlib1g-dev
Ok now extract Deluge:
tar zxvf deluge-0.5.5.tar.gz
Change dir to deluge:
cd deluge-0.5.5
Now here is the hackery, the editing of deluge_core.cpp in the src/ directory
or if your lazy scroll to the bottom for the file... :)
gedit src/deluge_core.cpp
press ctrl I to goto line 357
It looks like:
M_ses = new session(fingerprint(client_ID, v1, v2, v3, v4));"
Now we replace the line with this:
M_ses = new session(fingerprint("UT", 1, 6, 1, 0));" (for uTorrent 1.6.1.0)";
Save it!
ctrl S
Exit ctrl Q
Lets make it:
type:
make
Wait for it to compile
then install it:
make install
Run it!
press alt F2 and type in deluge
Thats it, your sp00fed! :)
Download deluge_core.cpp sp00fed edition for deluge 0.5.5
(3) Comments!
(0) Comments , be the first one!
OpenOffice 2.3 Released (direct download)
It seems OpenOffice.org has released a new version of there powerful software, their release candidate 3 is 2.3 according to there developer site. Here is a few download locations...
Direct Download Here
Download Linux rpm Here
Download Linux rpm with jre Here
Download Winblows Version Here
Download Winblows Version with jre Here
Release Notes
(2) Comments!
Pidgin 2.2.0 package released for Ubuntu Feisty
This release incorporate improvements from Google Summer of Code 2007, Myspace IM, and bug fixes.
This release includes enhancement on the XMPP protocol made by Andreas Monitzer during the Google Summer of Code for Adium, more information can be found on Adium page.
Another feature I really enjoy is the ability to revert to the old gaim layout. For instance, a new entry in the menu Buddy->Show allows you to show protocol icons in the buddy list, right-clicking the empty space in the formatting toolbar allows you to toggle back to the old "ungrouped" version.
Yet, much more is shipped with this release of pidgin. Here is the complete changelog:
(1) Comment, lets get the convo started!
(1) Comment, lets get the convo started!
Make your WPA Uncrackable and Unhackable On Ubuntu or any OS
I have known about this page for quite a while now, I think I decided not to share it because I hack peoples wep/wpa networks lol.. But anyways this site generates completely random Ultra High Security passwords that are generated just for you, the site never gives the same password twice and uses some extremely advanced scrambling technology to generate these passphrases.
Wep is easily crackable but if you use a stronger/longer password it may take longer to crack.
As for WPA, using an ultra secure password is pretty much uncrackable to my knowledge.
"Every time this page is displayed, our server generates a unique set of custom, high quality, cryptographic-strength password strings which are safe for you to use:"
(2) Comments!
Dell releases custom Ubuntu 7.04 ISOs with drivers and fixes
Dell has released a custom "remastered" Ubuntu 7.04 installation CD ISO that can be used to install Ubuntu on an Inspiron 1420 or 530. The ISO automatically installs all of the drivers and fixes that are required to make Ubuntu fully functional on those systems.
Dell laptops with Ubuntu preinstalled currently ship with a regular Ubuntu 7.04 installation CD that can be used to reinstall the operating system from scratch after reformatting. Unfortunately, the default Ubuntu installation does not include the best drivers so dell has a new remastered custom ubuntu cd just for you.
The "remastered" installation ISO could also be used by Inspiron 1420 and 530 owners who didn't buy their laptops with Ubuntu preinstalled, but wish to install it themselves...
Dell Remastered Ubuntu 7.04 ISO
Dell Linux Engineering team has a remastered copy of the Ubuntu 7.04 Live CD available for download. It includes native system hardware support and many of the fixes listed below. The media will help you get the system installed and running with the necessary drivers.
The media has been created specifically to resolve issues on the following system:
- Inspiron E1505N
- Inspiron 1420N
- Inspiron 530N
Download Dell Ubuntu Image
DISCLAIMER: These images are both unofficial Dell recovery media. They are not officially Dell-supported. Do not call Dell Technical support with questions about this image, or software installed by this image, as they will not be able to help you. To get help, please send an email to the Dell linux-desktops mailing list.
NOTE: After installation, be sure to update to the latest system software.
NOTE: The CD image has been modified to remove components such as OpenOffice to make room for additional Dell specific drivers and fixes.
(0) Comments , be the first one!
Ubuntu VS Fedora on Google Trends
![]() | ubuntu | ![]() | fedora |
Ubuntu has great leadership and a great community, I hope everyone gets to be a part of it someday.
(0) Comments , be the first one!