Sponsored Content
Full Discussion: how to start using unix
Top Forums UNIX for Dummies Questions & Answers how to start using unix Post 2647 by Neo on Sunday 27th of May 2001 10:43:54 AM
Old 05-27-2001
You get started into UNIX by getting an Intel platform (what ever speed and size you can afford); get a CDROM of a UNIX distro such as Linux or BSD; follow the instructions and GO!

This above approach costs very little money and does not require an Internet connection to download software distributions. From there, you can go to a more network-centric download approach.

The second approach is to go out and get a beginners UNIX admin job; but you will do better if you have much experience with home servers running your own web site or mail site.

As for what you can do, you can do any server side application from web servers, file servers, mail servers, application servers, databases, test controllers, lab gear etc. You can also do graphical desktop applications; but Windows tends to outshine in that area.

Most businesses and people find that UNIX make the best back-end servers and Windows based systems make the best common-user desktop. Both have advantages and disadvantages.

For very sophisticated and complex graphical CAD programs and other visualization (not your typical work processors, spreadsheets, etc.) UNIX makes some very suburb systems!

Last edited by Neo; 05-27-2001 at 11:48 AM..
 

10 More Discussions You Might Find Interesting

1. Programming

Help me! I just start to learn C in Unix

Hi! I just start to learn C in Unix. I have several questions. 1. What is the different between ¡®gcc¡¯ and ¡®cc¡¯? 2. Assume I type ¡®gcc -o print.out print.c¡¯ and get an error. So I need to retype that sentence. Do I have to repeat the whole thing? Or Is there a shortcut? 3. I completed... (1 Reply)
Discussion started by: yhosun
1 Replies

2. UNIX for Dummies Questions & Answers

I want to start study Unix!

hello .. I am college student and a new guy to unix. I have a simple question: what does "unix" stand for ,or just a meaningless name ? (4 Replies)
Discussion started by: nanuo
4 Replies

3. UNIX for Dummies Questions & Answers

YO help me out with unix were do I start...

My friend told me all about this Unix program I want to know were to start out and what to do with this unix program. Really anxious to learn anything about unix.cya hope you guys read this. (3 Replies)
Discussion started by: shinobikil
3 Replies

4. UNIX Desktop Questions & Answers

start windows appl. from unix

Is it possible to start a windows applications such as mail merge in word from a unix machine (sco-unix, digital osf). Why to do this ? Most people known word to create nice documents, but we want to print this documents with our information (name, adresses etc.. like a mailing. This info... (9 Replies)
Discussion started by: Dplancke
9 Replies

5. UNIX for Dummies Questions & Answers

Learning Unix/Linux from the Start?

I was wondering if someone could tell me where I could learn everything about Unix/Linux and I was also wondering what the differance between Unix and Linux was :confused: Ive never used it, never seen it.. But Im interested in learning :D (3 Replies)
Discussion started by: Vallzi
3 Replies

6. UNIX for Dummies Questions & Answers

what should i start-unix or linux

actually m interested in learning unix/linux. should i go for unix or linux and from where will i get the software for these. anyone knowing please help me. (7 Replies)
Discussion started by: sushilgroversp
7 Replies

7. UNIX for Dummies Questions & Answers

Which Unix/Linux to start using?

Hi all, New to the forum and in fact Unix. I want/need to start learning Unix and am a bit confused as to which to start using/download... Could someone please kindly point me in the right direction as how to get started, there seem to be so many different versions, etc... that i'm getting... (3 Replies)
Discussion started by: gavin watson
3 Replies

8. UNIX for Dummies Questions & Answers

Never touched UNIX before.. Where do I start?

I will be taking a UNIX course as a part of my college Data Com concentration curriculum. Just thought it would be a good idea to get a little head start, since this class will most likely be quite difficult for someone like me. I never did any programming and I never dealt with Unix or Linux short... (3 Replies)
Discussion started by: ibex333
3 Replies

9. What is on Your Mind?

where to start in unix

i am new to unix.i just started learning unix on my own,could u please tell me where i can get the basic of unix. . (4 Replies)
Discussion started by: rohit243
4 Replies

10. Shell Programming and Scripting

How to tell UNIX to start from the oldest file?

Hello, I have a simple while loopinside the script and I wish to tell unix to start reading from the oldest txt file. So, in case some new txt files are transferred into the same folder, the script will not take into consideration until all older files are completely processed. How may I do this?... (3 Replies)
Discussion started by: baris35
3 Replies
Catalyst::Manual::Deployment::FastCGI(3pm)		User Contributed Perl Documentation		Catalyst::Manual::Deployment::FastCGI(3pm)

NAME
Catalyst::Manual::Deployment::FastCGI - Deploying Catalyst with FastCGI FastCGI Deployment FastCGI is a high-performance extension to CGI. It is suitable for production environments, and is the standard method for deploying Catalyst in shared hosting environments. Pros Speed FastCGI performs equally as well as mod_perl. Don't let the 'CGI' fool you; your app runs as multiple persistent processes ready to receive connections from the web server. App Server When using external FastCGI servers, your application runs as a standalone application server. It may be restarted independently from the web server. This allows for a more robust environment and faster reload times when pushing new app changes. The frontend server can even be configured to display a friendly "down for maintenance" page while the application is restarting. Load-balancing You can launch your application on multiple backend servers and allow the frontend web server to perform load-balancing among all of them. And of course, if one goes down, your app continues to run. Multiple versions of the same app Each FastCGI application is a separate process, so you can run different versions of the same app on a single server. Can run with threaded Apache Since your app is not running inside of Apache, the faster mpm_worker module can be used without worrying about the thread safety of your application. Widely supported. FastCGI is compatible with many server implementations, not just Apache. Cons You may have to disable mod_deflate. If you experience page hangs with mod_fastcgi then remove deflate.load and deflate.conf from mods-enabled/ More complex environment With FastCGI, there are more things to monitor and more processes running than when using mod_perl. Standalone FastCGI Server In server mode the application runs as a standalone server and accepts connections from a web server. The application can be on the same machine as the web server, on a remote machine, or even on multiple remote machines. Advantages of this method include running the Catalyst application as a different user than the web server, and the ability to set up a scalable server farm. To start your application in server mode, install the FCGI::ProcManager module and then use the included fastcgi.pl script. $ script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 Command line options for fastcgi.pl include: -d -daemon Daemonize the server. -p -pidfile Write a pidfile with the pid of the process manager. -l -listen Listen on a socket path, hostname:port, or :port. -n -nproc The number of processes started to handle requests. See below for the specific web server configurations for using the external server. WEB SERVERS
Any web server which supports FastCGI should work with Catalyst. Configuration recipies for well-known web servers are linked below, and we would welcome contributions from people deploying Catalyst on other web servers. Apache Catalyst::Manual::Deployment::Apache::FastCGI nginx Catalyst::Manual::Deployment::nginx::FastCGI lighttpd Catalyst::Manual::Deployment::lighttpd::FastCGI Microsoft IIS Catalyst::Manual::Deployment::IIS::FastCGI AUTHORS
Catalyst Contributors, see Catalyst.pm COPYRIGHT
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-20 Catalyst::Manual::Deployment::FastCGI(3pm)
All times are GMT -4. The time now is 02:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy