Wednesday 18 June 2014

Oracle Linux 5.8 Server DVD 64-bit link for Torrent download.

Torrent File Link

Magnetic Link

File List.

1. OracleLinux-R5-U8-Server-x86_64-dvd.iso    Size : 3.61 GB

Tracker :

udp://tracker.openbittorrent.com:80

udp://tracker.publicbt.com:80

udp://tracker.istole.it:80/announce

udp://open.demonii.com:1337

Seeders    : 1
Leechers : 3

Oracle Linux 6.0 link for torrent download.

Torrent Link

Magetic Link

Hash Code : 948D63227E488D718A1E34DFE783D7258F32EF59

Total Size : 10.1 GB

List of Files available :
 File Name                                                                             Size (in GB)
1. OracleLinux-R6-U0-Server-i386-dvd.iso                          2.63
2. OracleLinux-R6-U0-Server-x86_64-dvd.iso                     3.16
3. OracleLinux-R6-U0-src-dvd1.iso                                      3.00
4. OracleLinux-R6-U0-src-dvd2.iso                                      1.38

Trackers

udp://tracker.openbittorrent.com:80/announce

udp://open.demonii.com:1337


How to run 16 bit program in 64 bit Windows OS

Generally you will not be able to run old widows 16 bit program in Windows 64 bit OS.
But it is possible after installing a software known as DOSBox. This is basically an emulator
which helps you to run your 16 bit programs.
Just follow this link given below from where you can download DOSBox.

DOSBox Download link

Wait... After installing when you open the program you will get a DOS based interface.
Now suppose you want to run Turbo C which is in you D:\TC . You need to mount this folder as
as virtual drive i.e. d, for that write this command mount d d:\tc. If succeeded it will display a
message : Drive D is mounted as Local Directory D:\TC.

It's all done. Just type D: ad press enter on the prompt and it will change the drive to virtual drive
as D:>. Now you have to imagine your current directory as d:\tc, not d: ad you can do all work you
need to to on this current directory.

Sunday 15 June 2014

Wolf 3D versio 1.0 cheats

Start the game from the command line with the goobers option:

wolf3d -goobers

After doing this, press Left Alt, Left Shift, and Backspace simultaneously during gameplay. You should see a message, "Debugging keys are now available!" You can now use the following cheat codes:

    Tab + C - Show statistics
    Tab + E - Instantly ends current level
    Tab + F - Show current coordinates
    Tab + G - God mode
    Tab + H - Player takes damage
    Tab + I - Same effect as the LIM cheat
    Tab + S - Slow motion
    Tab + T - Show all game sprites
    Tab + W - Warp to any map in current Episode (prompt)
    Tab + N - No clipping (disabled on later game versions)

Wednesday 4 June 2014

How to use rm command in linux


    Command is - rm filename.extensionname
     rm file1.txt

     rm does not remove directory but you can remove list of files in a directory by this command
     rm -r directoryname.  (-r recursive method)
     rm -r Music.  This command will remove all the files in the directory Music.

     You cannot remove files with rm if you do not have write permission on the files.

Few functionalities of ls command in Linux


Lists the contents of the current working directory
(pwd - "Print Working Directory" To see the current working directory)

ls -a
List all files including the files with Dot prefix

ls -l

List name of files with details like permission,date time (created/modified)

Commands can be combined
Say you want to list all files with details you type
ls -a -l or ls -al
This joining can be only done for Short options
for long options like -all you cannot join to options
(example ls -al)

Long and short options can be mixed.
ls --all -l