Main > Free Download Search >

Free quest diagnostics software for linux

quest diagnostics

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 138
Bandwidth Meter and Diagnostics 1.1

Bandwidth Meter and Diagnostics 1.1


Bandwidth Meter and Diagnostics is a Firefox extension that will automatically check whether Internet connection is working.... more>>
Bandwidth Meter and Diagnostics is a Firefox extension that will automatically check whether Internet connection is working or not when a website can not be loaded, and a list of tools for network troubleshooting. Try to type a random domain name(e.g., qwqwqwq121212.com) to see what this means ...
This extension adds "Bandwidth Meter" to the Tools Menu. It performs the following tasks:
- Display your public IP address
- Display your public domain name
- Test download speed/bandwidth
- Test upload speed/bandwidth
This extension runs under any OS. If you use Windows, you could try our other Windows specific extension "Broadband Speed test and Diagnostics" that has extra features and can only run under Windows. We are creating this because we get many requests from non-windows users.
<<less
Download (0.012MB)
Added: 2007-06-20 License: GPL (GNU General Public License) Price:
2813 downloads
Quest OpenSSH 4.6p1_q1

Quest OpenSSH 4.6p1_q1


Quest OpenSSH provides password-less, secure, encrypted remote login and file transfer services for VAS. more>>
Quest OpenSSH provides password-less, secure, encrypted remote login and file transfer services for Vintela Authentication Services (VAS). It is a derivative of OpenSSH, an open-source implementation of the SSH protocol.
Quest OpenSSH provides:
- default single sign on for Quest customers using VAS or VMX. Users are automatically and securely authenticated against Microsoft Active Directory using GSSAPI.
- compatibility with other SSH tools, including Quest PuTTY.
- integrated enhancements including high performance network support and TCPwrap access controls.
The software packages include both the client, ssh, and the server, sshd. Packages are subject to open source licence conditions.
Enhancements:
- This releases new features are the Match directive and inclusion of the HPN patches (High Performance Networking).
- Minor bugs fixed include NIS+ compatibility and improved service script reliability.
<<less
Download (3.0MB)
Added: 2007-08-07 License: BSD License Price:
497 downloads
Zoids Quest 0.0.1

Zoids Quest 0.0.1


Zoids Quest is a jump-and-run platform game. more>>
Zoids Quest project is a jump-and-run platform game.

Zoids Quest is a platform game in the style of old console games such as Super Mario World and Sonic the Hedgehog.

Players must help Zoid on his Quest by guiding him through many worlds containing tricks, traps, and monsters.

On the way Zoid can collect special magic runes which enhance his abilities and help defend against the many deadly foes.

This is the first public release.
<<less
Download (6.2MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1075 downloads
Millers Quest! 0.9.1

Millers Quest! 0.9.1


Millers Quest! is a fire-and-forget RPG, or more accurately, an RPG simulator. more>>
Millers Quest! is a role-playing simulator game. It could also be described as a "fire-and-forget role-playing game". In other words, it is not a role-playing game in the most traditional sense, because there is absolutely no player interaction. The emphasis on this game is the simulation of role-playing.
So, it is a completely non-interactive computer role-playing game. "I guess its not fun then", I can hear you say. Wrong! Millers Quest! is, in fact, very much fun. It has all of the excitement of traditional MMORPGs with none of the effort to be put in mindless treadmilling.
You can watch your character grow more potent and more powerful, and you dont need to bore yourself with details like "okay, attack the monster, Im going to win anyway".
Millers Quest! was largely inspired by its direct ancestor, Progress Quest. It is written in Ruby programming language and as such it was largely also inspired by Dwemthys Array, without any of its clever metaprogramming stuff and general bore of having to use irb to play it.
Players of Progress Quest should be right at home with Millers Quest!. What tells MQ and PQ apart is the fact that MQ is not entirely progress-driven. In MQ, all monsters have actual stats. Theres actual, stats- and probability-based fighting involved.
Since dying in a continually running game is pretty damn boring, you get also revived and healed automatically if that occurs. MQ owes a lot of its continued existence to Ruby Development Tools, the Ruby environment for the Eclipse Platform.
Enhancements:
- The combat system wasnt working quite properly, and is now fixed (somewhat).
- A confusing display message has been fixed.
- New features include optional support for curses/terminfo, allowing better-looking and more comprehensive combat display by coloring the output. (This currently requires tput(1) from ncurses.)
<<less
Download (0.021MB)
Added: 2005-10-27 License: GPL (GNU General Public License) Price:
1463 downloads
Test::Tech 0.26

Test::Tech 0.26


Test::Tech is a Perl module that adds skip_tests and test data structures capabilities to the Test module. more>>
Test::Tech is a Perl module that adds skip_tests and test data structures capabilities to the "Test" module.

SYNOPSIS

#######
# Procedural (subroutine) Interface
#
# (use for &Test::plan, &Test::ok, &Test::skip drop in)
#
use Test::Tech qw(demo finish is_skip ok ok_sub plan skip skip_sub
skip_tests stringify tech_config);

demo($quoted_expression, @expression);

(@stats) = finish( );
$num_passed = finish( );

$skip_on = is_skip( );
($skip_on, $skip_diag) = is_skip( );

$test_ok = ok($actual_results, $expected_results, [@options]);
$test_ok = ok($actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = ok($actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, [@options]);
$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$success = plan(@args);

$test_ok = skip($skip_test, $actual_results, $expected_results, [@options]);
$test_ok = skip($skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = skip($skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, [@options]);
$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$skip_on = skip_tests( $on_off, $skip_diagnostic);
$skip_on = skip_tests( $on_off );
$skip_on = skip_tests( );

$string = stringify($var, @options); # imported from Data::Secs2

$new_value = tech_config( $key, $old_value);

#####
# Object Interface
#
$tech = new Test::Tech;

$tech->demo($quoted_expression, @expression)

(@stats) = $tech->finish( );
$num_passed = $tech->finish( );

$skip_on = $tech->is_skip( );
($skip_on, $skip_diag) = $tech->is_skip( );

$test_ok = $tech->ok($actual_results, $expected_results, [@options]);
$test_ok = $tech->ok($actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->ok($actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, [@options]);
$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$success = $tech->plan(@args);

$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, [@options]);
$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, [@options]);
$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$state = $tech->skip_tests( );
$state = $tech->skip_tests( $on_off );

$state = skip_tests( $on_off, $skip_diagnostic );

$string = $tech->stringify($var, @options); # imported from Data::Secs2

$new_value = $tech->tech_config($key, $old_value);

Generally, if a subroutine will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}. If a subroutine will process an array reference, @options, [@options], that subroutine will also process a hash reference, %options, {@options}. See the description for a subroutine for details and exceptions.

<<less
Download (0.091MB)
Added: 2007-02-15 License: Perl Artistic License Price:
981 downloads
CalcRogue Beta 6c

CalcRogue Beta 6c


CalcRogue project is a Rogue-like for calculators, Palm, and PCs. more>>
CalcRogue project is a Rogue-like for calculators, Palm, and PCs.
CalcRogue is based on the Unix game Rogue and those similar to it, collectively known as "roguelikes". They involve a character which can move around, attack monsters, collect magical items, maybe cast spells, and gain levels.
The dungeons are randomly generated, so the areas are always fresh, and the difficulty is such that it never gets too easy. (Note: CalcRogue is not derived from Rogue.)
Main features:
- Complex, randomly generated levels
- Overworld map, towns, and quests
- Spells and magically summoned minions
- Easy to use interface with tutorial
- Line of sight/lighting calculation
- Four-color grayscale graphics
- Complete inventory management system
- Wide variety of magical scrolls, potions, wands, rings, amulets and spells
- Missile combat with bows, crossbows or thrown potions
- Compressed saved games
- In-game help
- Hidden traps and doors
- Five different player classes
- Varied monsters with special powers
- Gold and shopping
- High-score listing
Enhancements:
Features
- Finished the tower quest, for wizards and necromancers. No spoilers in this changelog, but it involves lots of cool stuff.
- Checkpoint saves. A backup saved game is automatically made whenever you move to a new level, and restored if the game crashes.
Bug fixes
- (PalmOS) Fixed a stack overflow in the bytecode interpretter which caused crashes all over the place.
- (PalmOS) Fixed infinite prompt loop when running into a peaceful creature
- Fixed missing exit from tower area
- Fixed bug which could cause disconnected areas with the big-map generator
- Monsters wont be generated in the wilderness area
- Fixed bug that allowed duplicating items
- It is no longer possible to throw equipped non-missile weapons
Misc
- Balance changes to make the necromancer stronger
<<less
Download (0.10MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1019 downloads
SQLyog Free Edition 5.18

SQLyog Free Edition 5.18


SQLyog is an easy to use tool that lets you manage your MySQL database anywhere in the world. more>>
SQLyog is an easy to use tool that lets you manage your MySQL database anywhere in the world. SQLyog is a tool that allows you manage MySQL database.
Main features:
Developer / User Productivity
- HTML Schema Documentation
- Shortcuts to quickly generate SQL statements and paste object names
- Learn MySQL by looking at the SQL generated by SQLyog
- Multi-tab Query Editor and Result-set Editor
- Multiple Query Execution
- Multi-threaded Query execution with option to stop long running queries
- SQL Templates
- Excel-style grid interface to view/update resultsets
- Multi-format Blob editor
- View data in Grid/Text Mode
- ResultSet/Data Export to CSV/XML/HTML
- Full Support from 3.23.38 to the latest 5.x
- Support for all MySQL table handlers
- Excel friendly resultsets/table-data export to clipboard/file
- Dialogless table and resultset editor
DBA Productivity
- Restoring / Importing large SQL dumps
- MySQL 5.x objects support
- User Management
- Managing hosted MySQL
- Connection Manager
- Index Management
- Relationship/Foreign Key Manager
- Reorder Columns
- Copy objects to another Host with single click
- Table diagnostics
- Flush Tools
- Object Browser
- Creating/dropping database
- Optimized for managing Hosted MySQL
- Profiling
- Multiple database connections
Technology
- Turbo Speed MySQL Management. Uses native MySQL C API - the fastest way to communicate with MySQL server
- 100% keyboard friendly
- Small compact binary
- Minimal use of Registry - easy migration of User Preferences by dragging and dropping config files.
- Non-cluttered look and feel, ability to show/hide panes
<<less
Download (0.96MB)
Added: 2006-10-17 License: Freeware Price:
5721 downloads
Yasminas Quest 2005-11-17

Yasminas Quest 2005-11-17


Yasminas Quest is an open source game (and motor) mix of graphical point-and-click adventure. more>>
Yasminas Quest is an open source game (and motor) mix of graphical point-and-click adventure and text adventure written in PHP and DHTML (JavaScript, CSS and HTML) that uses mouse and keyboard optionally.

Yasminas Quest was tested under BeOS, Linux, *BSD, Windows, etc.

<<less
Download (2.4MB)
Added: 2006-08-18 License: MPL (Mozilla Public License) Price:
1169 downloads
The Blue Mango Quest 0.6.4

The Blue Mango Quest 0.6.4


The Blue Mango Quest project is a 3D arcade game that aims to extend the Pacman gameplay. more>>
The Blue Mango Quest project is a 3D arcade game that aims to extend the Pacman gameplay.
The Blue Mango Quest is a 3D arcade game that uses OpenGL and SDL.
The goal is to extend the pacman-style gameplay in several ways. You see what the main character sees (like in traditional FPS games), and youll find about 20 items (bonus and malus) that will give you a lot of fun.
An easy to use yet powerfull 2D level editor is also provided.
Enhancements:
- doc/manuals/mangoquest.htm: updated Controls section
- src/maximap.cpp: change color of shmolluxes when if player can eat them (dark red and bright red)
- src/maximap.cpp: draw an arrow for player, that rotates with him
- src/menu_ingame.cpp: dont unpause game when we enter in options menu
- src/menu_skirmish.cpp: dont unload map from memory twice
- src/game_loop.cpp,src/config_file.cpp: added an "alternate_controls" option that make the player rotate with arrows keys and go sideways with ALT+arrow (same as in 0.6.0). Edit the config file to activate it.
<<less
Download (7.4MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1076 downloads
NDisc6 0.9.3

NDisc6 0.9.3


ndisc6 consists of two small command line tools (ndisc6 and rdisc6) that perform ICMPv6 Neighbor Discovery. more>>
ndisc6 consists of two small command line tools (ndisc6 and rdisc6) that perform ICMPv6 Neighbor Discovery and ICMPv6 Router Discovery respectively.
NDisc6 is primarily meant for IPv6 networking diagnostics or to detect rogue IPv6 nodes or routers on an Ethernet segment.
Enhancements:
- traceroute has been parallelized for faster execution, and handles IPv6 extension headers and more ICMPv6 errors, UDP-Lite probes.
- rdisc6 supports RFC4191 (router preference and specific routes) and RDNSS.
<<less
Download (0.021MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
811 downloads
KQ Lives! 0.99

KQ Lives! 0.99


KQ Lives! project is an old school RPG. more>>
KQ Lives! project is an old school RPG.

Take the part of one of eight mighty heroes as you search for the Staff of Xenarum. Visit over twenty different locations, fight a multitude of evil monsters, wield deadly weapons, and cast powerful spells.

On your quest, you will find out how the Oracle knows everything, who killed the former master of the Embers guild, why no one trusts the old man in the manor, and what exactly is terrorizing the poor Denorians.

It was abandoned by its original author and rescued by the Allegro community. KQ runs on DOS, Windows, Linux, and OS X.

<<less
Download (3.2MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1024 downloads
The Minstrels Song 2.0

The Minstrels Song 2.0


The Minstrels Song project is a roguelike game with emphasis on worldbuilding. more>>
The Minstrels Song project is a roguelike game with emphasis on worldbuilding.
The Minstrels Song is a roguelike game which seeks to let the user interact with a rich and extensive world.
Among roguelikes, emphasis is on providing nonlinear play in a detailed environment.
Effort has been made to provide races that have not only stats but cultures.
Top 10 things to do in "The Minstrel s Song":
- Pet a dolphin.
- Pray and worship.
- Ride a dragon.
- Match wits with a clockwork door.
- Climb a tree.
- Answer a riddle.
- Build your own mechanical devices.
- Keep an exotic pet.
- Choose your own quest.
- Explore a world of wonder.
To compile and run this game, go into the directory src, edit the file "tms.h" according to the comments that are contained in, and use make.
More specifically, it needs a certain lib directory, where all of the files in "lib" are stored. /usr/local/lib/tms is reccommended. Once you have created that directory and moved all of the files to it (be sure that book8.txt is writeable by everybody -- it is more or less the high score file), set LIB_DIR in tms.h to that directory, with a trailing slash -- ie. change appropriate line to say.
#define LIB_DIR "/usr/local/lib/tms/"
(or whatever you have put for your lib directory.)
Security note: It is strongly discouraged to install TMS as a SetUID binary; the game is not designed to have special priveleges.
<<less
Download (1.1MB)
Added: 2007-01-05 License: Other/Proprietary License with Source Price:
1024 downloads
Test::More 0.70

Test::More 0.70


Test::More is yet another framework for writing test scripts. more>>
Test::More is yet another framework for writing test scripts.

SYNOPSIS

use Test::More tests => 23;
# or
use Test::More qw(no_plan);
# or
use Test::More skip_all => $reason;

BEGIN { use_ok( Some::Module ); }
require_ok( Some::Module );

# Various ways to say "ok"
ok($got eq $expected, $test_name);

is ($got, $exptected, $test_name);
isnt($got, $expected, $test_name);

# Rather than print STDERR "# heres what went wrongn"
diag("heres what went wrong");

like ($got, qr/expected/, $test_name);
unlike($got, qr/expected/, $test_name);

cmp_ok($got, ==, $expected, $test_name);

is_deeply($got_complex_structure, $expected_complex_structure, $test_name);

SKIP: {
skip $why, $how_many unless $have_some_feature;

ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};

TODO: {
local $TODO = $why;

ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};

can_ok($module, @methods);
isa_ok($object, $class);

pass($test_name);
fail($test_name);

BAIL_OUT($why);

# UNIMPLEMENTED!!!
my @status = Test::More::status;

STOP! If youre just getting started writing tests, have a look at Test::Simple first. This is a drop in replacement for Test::Simple which you can switch to once you get the hang of basic testing.

The purpose of this module is to provide a wide range of testing utilities. Various ways to say "ok" with better diagnostics, facilities to skip tests, test future features and compare complicated data structures. While you can do almost anything with a simple ok() function, it doesnt provide good diagnostic output.

<<less
Download (0.076MB)
Added: 2007-05-04 License: Perl Artistic License Price:
540 downloads
Neverwinter Nights Dedicated Server 1.68

Neverwinter Nights Dedicated Server 1.68


Neverwinter Nights (NWN) is a computer game set in a huge medieval fantasy world of Dungeons and Dragons. more>>
Neverwinter Nights (NWN) is a computer game set in a huge medieval fantasy world of Dungeons and Dragons. Neverwinter Nights puts you at the center of an epic tale of faith, war, and betrayal.

As a player, you are able to choose what skills and abilities you will develop as you voyage though the complex and dangerous fantasy world of Forgotten Realms. Be a deadly and dangerous Rogue moving through the shadows using stealth and secrecy, be a scholarly Wizard and wield powerful magic against your enemies, be a hulking Barbarian whose lust for battle is matched only by his terrible rage, be an armor-clad Paladin who protects the innocent and vanquishes his foes, be a crusading Cleric who heals the sick and defends the helpless… be all this and more.

Neverwinter Nights allows you to create your own worlds. This revolutionary game will come with all the tools needed to construct your own unique lands of adventure. The Neverwinter Nights Aurora Toolset allows even novice users to construct everything from a quiet, misty forest or a dripping cavern of foul evil, to a kings court. All the monsters, items, set pieces and settings are there for world builders to use. But do not stop there; construct traps, encounters, custom monsters and magic items to make your adventure unique.

But the Neverwinter experience is not just for one person- adventure with all your friends. Neverwinter Nights can be played online with up to 64 friends, all sharing in the adventure. You can organize and run your own adventures through the role of the Dungeon Master and control all the monsters, creatures and characters your friends meet as they journey on their quest. A powerful piece of software that is included with Neverwinter Nights, the DM Client, allows nearly unlimited control for running your own adventures for your friends.

Neverwinter Nights…endless adventure!
<<less
Download (219MB)
Added: 2006-10-18 License: Freeware Price:
639 downloads
Dungeon Crawl 0.2.7 (Stone Soup)

Dungeon Crawl 0.2.7 (Stone Soup)


Dungeon Crawl Stone Soup is a fun, free rogue-like game of exploration and treasure-hunting. more>>
Dungeon Crawl Stone Soup is a fun, free rogue-like game of exploration and treasure-hunting in dungeons filled with dangerous and unfriendly monsters in a quest for the mystifyingly fabulous Orb of Zot.

Dungeon Crawl Stone Soup project is a variant of Linleys Dungeon Crawl thats openly developed and invites participation from the Crawl community.

Dungeon Crawl has superb, deep tactical gameplay, innovative magic and religion systems, and a grand variety of monsters to fight. Crawl is also one of the hardest roguelikes to beat. When you finally beat the game and write your victory post on rec.games.roguelike.misc, you know youve achieved something.

You can also play Crawl online on a public telnet server thanks to the good folks at crawl.akrasiac.org. crawl.akrasiac.org allows you to meet other players ghosts, watch other people playing, and, in general, have a blast.
<<less
Download (1.2MB)
Added: 2007-06-13 License: Free To Use But Restricted Price:
533 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5