Practice UNIX on web Browser?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Practice UNIX on web Browser?
# 1  
Old 09-20-2012
On a browser? Try Free Linux shell access.

If you can establish a ssh connection, there are plenty of these services.
Search "free shell accounts" in Google.
--
Bye
This User Gave Thanks to Lem For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. AIX

Can I run this thing in a web browser?

Old AS/400 guy here now administering an AIX system. We have an application that runs on 3151 emulator. Is it possible via an program or other to run a 3151 session in a web browser? I would like to have some of my user be able to work from home without having to install an emulation program, and... (1 Reply)
Discussion started by: jeveretts
1 Replies

2. Programming

Web browser module in python

Hi, I am trying to multiple urls in multiple tabs within a browser window. I am using webbrowser module in python: My code: import webbrowser li = for url in li: webbrowser.open_new_tab(url) This code works fine, if the browser is already opened. If the browser is not started... (5 Replies)
Discussion started by: pandeesh
5 Replies

3. Web Development

What is Your Favorite Web Browser?

OK, please vote on your favorite web browser and comment why! Only currently supported browers please! Thanks. PS: I am a big FireFox fan. FireFox add-ons rock! (61 Replies)
Discussion started by: Neo
61 Replies

4. Solaris

Triggering UNIX command from Web Browser

HI, I want to trigger a UNIX command from a web browser page. The web browser will have few steps which will generate the UNIX command and then it should connect to the UNIX box and fire that command. Here we are using Sun Solaris UNIX. Can you please suggest me how can i get... (6 Replies)
Discussion started by: dear_abhi2007
6 Replies

5. What is on Your Mind?

The Dillo Web Browser

Hello, Have you all noticed that the Dillo web browser always reports bugs just about on every web page. Richard Stallman's Personal Page However some, but not many have none. cheers (2 Replies)
Discussion started by: nigelc
2 Replies

6. Solaris

Web browser not opening

On clicking on my WEB BROWSER . no window is appearing , only a dialog box appearing with named "ALERT" any nothing else. What is browser package name , which is by default in Solaris 10 (3 Replies)
Discussion started by: kush singh
3 Replies

7. Linux

web browser from konsole

hi experts, i'm running red hat linux, consider there's no visual interface, no X server... actually there is one but it's written in Python! what i need is to intall a decent web browser on it! is it possible? and i only have abt 100 MBs of free disk space... (1 Reply)
Discussion started by: elzalem
1 Replies

8. UNIX for Dummies Questions & Answers

Web browser and web server for Unix

Hi there all I am looking for both a web browser as well as a web server (Ie. Netscape Fasttrack) that will run on HPUX 10. If you know where I can get these free via FTP, please contact me as soon as possible!! Thanks, Mark (1 Reply)
Discussion started by: mleathers
1 Replies
Login or Register to Ask a Question
Parse::Dia::SQL(3pm)					User Contributed Perl Documentation				      Parse::Dia::SQL(3pm)

NAME
Parse::Dia::SQL - Convert Dia class diagrams into SQL. SYNOPSIS
use Parse::Dia::SQL; my $dia = Parse::Dia::SQL->new( file => 't/data/TestERD.dia', db => 'db2' ); print $dia->get_sql(); # or command-line version perl parsediasql --file t/data/TestERD.dia --db db2 DESCRIPTION
Dia is a diagram creation program for Linux, Unix and Windows released under the GNU General Public License. Parse::Dia::SQL converts Dia class diagrams into SQL. Parse::Dia::SQL is the parser that interprets the .dia file(s) into an internal datastructure. Parse::Dia::SQL::Output (or one of its sub classes) can take the datastructure and generate the SQL statements it represents. MODELLING HOWTO
See <http://tedia2sql.tigris.org/usingtedia2sql.html> Modelling differences from tedia2sql o Index options are supported. Text is taken from the comments field of the operation, i.e. the index. A database specific default value is used if the comments field is left blank. Consult the Output sub class' constructor. o Type mapping is supported. A type mapping is a user-defined column name replacement. Unlike tedia2sql the type mapping is non- recursive. Consult "t/data/typemap.dia" for an example. o Preliminary support for Dia's database shapes is added. o Table comments are used as table postfix options. This means per-table options (e.g. partitioning options) are supported on a per- database level. o backticks notation is supported for MySQL-InnoDB. DIA VERSIONS
Parse::Dia::SQL has been tested with Dia versions 0.93 - 0.97. Parse::Dia::SQL uses the XML "version" tag information in the .dia input file to determine how each XML construct is formatted. Future versions of Dia may change the internal format, and XML "version" tag is used to detect such changes. DATABASE SUPPORT
The following databases are supported: DB2 Informix Ingres Oracle Postgres Sas SQLite3 Sybase MySQL InnoDB MySQL MyISAM Adding support for additional databases means to create a subclass of Parse::Dia::SQL::Output. Patches are welcome. AUTHOR
Parse::Dia::SQL is based on tedia2sql by Tim Ellis and others. See the AUTHORS file for details. Modified by Andreas Faafeng, "<aff at cpan.org>" for release on CPAN. BUGS
Please report any bugs or feature requests to "bug-parse-dia-sql at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Parse-Dia-SQL <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Parse-Dia-SQL>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Parse::Dia::SQL You can also look for information at: o Project home Documentation and public source code repository: <http://tedia2sql.tigris.org/> o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Parse-Dia-SQL <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Parse-Dia-SQL> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Parse-Dia-SQL <http://annocpan.org/dist/Parse-Dia-SQL> o CPAN Ratings http://cpanratings.perl.org/d/Parse-Dia-SQL <http://cpanratings.perl.org/d/Parse-Dia-SQL> o Search CPAN http://search.cpan.org/dist/Parse-Dia-SQL <http://search.cpan.org/dist/Parse-Dia-SQL> SEE ALSO
o <http://tedia2sql.tigris.org/> o <http://live.gnome.org/Dia> ACKNOWLEDGEMENTS
See the AUTHORS file. LICENSE
This program is released under the GNU General Public License. TERMINOLOGY
By database we mean relational database managment system (RDBMS). METHODS
new() The constructor. Mandatory arguments: file - The .dia file to parse db - The target database type Dies if target database is unknown or unsupported. get_sql() Return sql for given db. Calls underlying methods that performs parsing and sql generation. perl v5.14.2 2012-02-01 Parse::Dia::SQL(3pm)