Sunday 26 February 2012

Orbit Downloader... good replacement for IDM

You might have often wondered that using IDM is, although easier but yes illegal. We have often searched if we could find a free replacement for IDM. Alright, Orbit is not the best downloader when compared with IDM but still it is free and has similar features. It can catch live streaming video and can give you high speeds.
If you want to get free and legal, give Orbit downloader a try.


Thursday 23 February 2012

PDP 72 Worksheets !!!

Click on the link provided below to download the PDP 72 worksheets that you (geu cs-a 4th sem) have to do and bring along with you on next week.

Tuesday 21 February 2012

Linux HOWTO: install tar.bz2 / tar.gz


TAR.GZ/BZ2 file is a compressed tarball (the uncompressed extension being .TAR) which contains the raw source code for your chosen application. Installation requires these files to be compiled, processed and linked in a way that Ubuntu can then execute the program.
The tarball format was standardised in 1988 (and again in 2001) and continues to be widely used on both Linux and Windows for the distribution of software. Originally tarballs were designed to facilitate the backup of data onto tape devices, not that you’ll be doing that.
If you’ve not used the Linux command line before there’s no need to worry, the commands are straight-forward and cohesive. We also have an article that should get you up to speed with the Linux command line which will probably help you out if you’re going to be spending a lot of time there.

Preparing Your System

You’ll need to install a package called build-essential for creating the package from source and checkinstall to add it to your package manager for easy removal. This can be done quickly via the console, simply open up Terminal (ApplicationsAccessoriesTerminal) and type:
sudo apt-get install build-essential checkinstall
how to install tar gz
Allow time for these to download and install, and once done you may also want to install version management software for upgrades, though you can always do this later. In any case, these three will do the trick:
sudo apt-get install subversion git-core mercurial
Next you’ll want a common directory to use when building these packages. You can technically put this anywhere, as long as it is writeable. The official Ubuntu documentation recommends
/usr/local/src
so we’ll stick with that:
sudo chown $USER /usr/local/src
Then make sure it’s writeable:
sudo chmod u+rwx /usr/local/src
Finally we’ll also install apt-file, which is used to resolve any dependency issues you encounter:
sudo apt-get install apt-file
You’ll probably get a pop-up telling you need to update apt-file, if not run the following command and let it finish:
sudo apt-file update
Once you’ve done this, you’ll never need to do it again as your system will be prepared for any tarballs you throw at it.

Extract & Configure

Assuming you’ve already downloaded a mysterious .TAR.GZ file you’re first going to need to move it to your designated build folder (I used
/usr/local/src
). You can do this with your normal file browser, and once done, open up a new Terminal.
Change to the build folder by typing:
cd /usr/local/src
Next extract the archive. For .TAR.GZ files type:
tar -xzvf <filename>.tar.gz
And for .TAR.BZ2 files type:
tar -xjvf <filename>.tar.bz2
If all went well you’ll see a long list of extracted files, like in the screenshot above. Don’t close the Terminal yet, we’re not done.
It is at this point I urge you to navigate to the folder your archive just created (with your usual file browser) and open either README or INSTALL should the files exist. If your particular software requires a different method to the one I’m about to go into then this file will hold the key. You can save yourself a lot of hassle by doing this.
You may also be able to choose different install options depending on the software, and the INSTALL or README will stipulate what these are. The files may have no extension, but are plain text and should open in Gedit or any text editor you choose.
As a general rule, the following commands will install your software with the default installation method.
Your tarball will have been extracted to a folder with the same name as the file, so change to this folder with the cd command you used earlier, like so:
cd /usr/local/src/<extracted folder>
install tar gz
Replace <extracted folder> with the name of the folder the archive created. Next you’ll need to configure the source files by typing:
./configure
Note: If your software does not have a configure file, you might want to try skipping straight to the Build & Install section of this article, though consult your INSTALL or README documentation first.
If you receive an error message related to autoconf, then you’ll need to install it by typing:
sudo apt-get install autoconf
Then run
./configure
again.
install tar gz
This command will verify whether you have all the installed packages required to use your software. You can use apt-file which you installed earlier to fill in the blanks.
If you do receive an error (something like
configure: error: Library requirements ... not met
) have a look for the file not found above the error message, then using apt-file search by typing:
apt-file search <filename>.<extension>
This will tell you which package the file you require is in, so you can download it using:
sudo apt-get install <package>
This won’t necessarily always happen, but it is very useful if you don’t have the required dependencies.
When you’re satisfied you’ve got the packages (if you needed any) run the
./configure
command again.
how to install a tar gz file ubuntu
If all went well you’ll see
config.status: creating Makefile
““ congratulations, you’re very nearly there! Lots of people give up before they get to this point, but you’re better than that.

Build & Install

Into the same Terminal window type:
make
Sit back, grab a coffee and breathe for a second. Depending on the size of your install this can take a while.
how to install a tar gz file ubuntu
Now you can install the program with the following command:
sudo checkinstall
Follow the on-screen prompts, add a description for your software and hit Enter on this screen:
install tar gz
If everything went well you’ll see Installation Successful. Pat yourself on the back. You’ve done well.
how to install a tar gz file ubuntu
Your software should now be installed to
/usr/local/bin
and you’ll be able to run it from there without any problems.
how to install tar gz
Did you make it all the way through? Isn’t it easier just waiting for a package or getting it from the repositories? Maybe you found it… easy? Let us know in the comments.


Firewall for Linux !

Well although many things have been said about Linux security, still an old saying goes: "precaution is always better than cure". So, here I am with a link to download IPCop-a firewall for linux OS. User reviews rate it highly and although I have only just started to use it, I would recommend it to you. If you do not want to be comprised on the security front while online, use a firewall.
Again my source is : www.sourceforge.net

Download vlc for Linux

What is the best media player in the market? Ask any geek and he/she will answer vlc. Doubtlessly, vlc has to its credit the ability to play almost all media file formats without being too heavy on the resources. .vob, .dat, .mkv or name anything. And the good part for linux lovers? The vlc project was initiated for vlc only. The Windows version of vlc was made after the popularity of vlc in linux world. And ofcourse it is free... Enjoy !


Who says Linux is non-industrious? Part 1

You might be running an old linux system on your computer or might have accidently removed your Word Processor from the system and might be wondering what to do next?

Do not worry. sourceforge.net is home to countless Linux/Unix application softwares and utilities and you can download anything of your want from it. I am providing you with the link to download LibreOffice suite, based on Open Office project. Download and start processing your information with same sophistication as Microsoft Word.


PDP material new

So here is the material as discussed about in class on 21/2/2012. Click on the link below to download the material. It contains questions and answers of Adjectives, Order of adjectives and some more. Do them.

Thursday 16 February 2012

Automata Book and .djvu viewer

Here you can download the Automata book prescribed by Mr. Koulagudi. Click on the link below to download the book in .djvu format.
Now click on the link below to download the djvu viewer.

Wednesday 15 February 2012

PDP Material for Graphic Era Students !!

Click on the link below to download the PDP stuff from Dr. Rajender Trivedi Sir. Includes grammar sheet, resume, interview questions, and the tense worksheets. The file is a rar file. You need to have 7zip or winrar.

Thursday 9 February 2012

Internet Download Manager

IDM 6.07 may be an old version but it is quite powerful. You can use IDM to download anything save torrents. So, why are you waiting ? Download it now to Get download speeds of upto 1 mbps even on moderate connection.


Enjoy !!

Tuesday 7 February 2012

Winamp: The trusted media player for Windows

            Here you can download the famed WinAmp media player. It has been used by Windows users for over a decade and has been appreciated and liked by all. It is free and this is the latest version as of 8/2/2012. By adding DFX for Winamp, you can enhance the volumes to unthinkable levels... "you won't believe your ears when you hear it" is what DFX uses as its tagline.


Sunday 5 February 2012

Download PHP script language

                More often than not you will need to write your own code snippets during website development and the best option for the scripting language is PHP. It is free, widely used and accepted. So, you might download your own copy from the link below.

                If you want the most sophisticated and valid tutorial for PHP, go to this site which is a link to www.w3schools.com, however to learn PHP you'll need to have some knowledge about HTML as well. So, learn HTML first from the same source, here. I hope you'll love to learn this scripting language.

Friday 3 February 2012

Web Development Tools (free)

#7. Tools to develop and publish your very own websites
     
       Often you have wanted to create your very own website, but, even with your theoretical knowledge you may have struggled to actually create one. You have always wanted to have tools that would ease your job and help you create a professional looking website. I will personally refer you to use Apache server to host your website if you are a newbie. If you want to learn how to use Apache, here is a book for your reading:


      And now for the tools; this time I am not giving you direct links, but, link to the website where you can download the desired software and many more:

File Compressors and Packers/Unpackers (Free)

#6 File Compressors and Packers/Unpackers (Free)

      The first one in this category is the 7zip archiver, which is famous for its proficiency in terms of compression ratio. In the words of a famous website:
    "7-Zip is open source software. Most of the source code is under the GNU LGPL license. The unRAR code is under a mixed license: GNU LGPL + unRAR restrictions. Check license information here: 7-Zip license.

You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip.

The main features of 7-Zip

High compression ratio in 7z format with LZMA and LZMA2 compression
Supported "

source: www.freedownloadmanager.org


      The second one in this category is the Michael Hardy's UPX miracle. It is again free with the ability to scramble .dll, .exe etc. In terms of the of a review:

"UPX Miracle is an ASPack-like GUI shell for UPX (Ultimate Packer for eXecutables). Among it's capabilities are .dll, .exe, .ocx and many other system files packing/unpacking, scrambling those files to protect from unauthorized reverse engineering, full drag&drop support, Skinnable Interface and all of this absolutely FREE."
 source: www.fredownloadmanager.org

Wednesday 1 February 2012

PAINT.NET

#5. Free Photoshop Equivalent !!

      I meant to find some new useful software, and I hit upon this particular software. It was created by certain college seniors of the U.S. as a final year project under the guidance of Microsoft. It is a good alternative for Photoshop and Corel Draw...... and the good thing? It is free. So, now you can use it for yourself and find out if it can really replace the already settled softwares from your computer and your hearts... 


The software is well documented and should be very useful for all those who want to edit their pictures, but, can't shell out the big bucks that the proprietary software developers ask. So, go on use free and be free...
                           One more word: for multiple file type support you will have to install the plugins. I have provided all necessary links above. Enjoy!