Sponsored Content
Special Forums UNIX Desktop Questions & Answers PC User/UNIX Novice - Where do I start? Post 302469022 by linuxlearner17 on Thursday 4th of November 2010 12:30:21 PM
Old 11-04-2010
Welcome "mightymo26" - if I may make a suggestion (what I found that worked for me) is using a VM player and loading some virtual machines to get a feel for the different distributions. In my virtual machine I have Fedora 12 and Ubuntu 10.04 LTS. They are RPM and Debian based respectively but show you how packages / repositories are managed and installed to machines.

Play around in the VM's first and get a feel for the command line and the differences between distributions. There are a ton of distros to choose from but the best is that they are free! Also come to places like this site or google items as "linux command line" with the distro you feel you want to run with...

Fedora is the closest the Red Hat - (in fact it's the testing bed for RHEL) and there is OpenSolaris you can download an try which too is an offshoot of the enterprise Solaris.

I hope some of this information is of help - if you have any other questions just let me know...

Good luck!
 

10 More Discussions You Might Find Interesting

1. Linux

Hi I M Novice User

hi everyone i m a novice user . just want to know how to use this website and also learn unix from the basics. can any one help me please.... (2 Replies)
Discussion started by: MSK
2 Replies

2. Shell Programming and Scripting

Unix scripting-Need help-NOVICE -PLEASE HELP

I really want to get into unix scripting,work with RS6000 -AIX. How do i get started,what books are good for beginners,i am very desperate I have no programming background but ready to scrafice all my time in learning .please help. PLEASE,PLEASE PLEASE ,HELP.... Any advice will realy... (2 Replies)
Discussion started by: Ghanaman
2 Replies

3. Shell Programming and Scripting

Unix Shell Novice - File Manipulation

Hi, I am brand new to unix and am hoping someone can start me in the right direction. I want to be able to put the results of a file command such as wc -l filename into a variable which I can then use to test against another variable...i.e. I need to show the nth line of a file, but need to... (3 Replies)
Discussion started by: nmullane
3 Replies

4. Shell Programming and Scripting

start a program with other user's permission

I have some of programs in unix system which are to started with one_user say "xxxx". I have sudo permission if i start these programs with sudo it shows root permission. But i want these programs permession should be "xxxx". I tried "su user_name -c Program_name" but it is not... (3 Replies)
Discussion started by: srikanthus2002
3 Replies

5. Shell Programming and Scripting

Start a service as user

Hi I need a service to be start as user after a reboot. My script in /etc/init.d contain the following: start() { su - $USER cd ${INSTALL_PATH}/bin ./MyApp -X exit return 0 } This function stops after su - $USER, I get user shell, and only if I manualy... (5 Replies)
Discussion started by: potro
5 Replies

6. UNIX for Dummies Questions & Answers

NEW to Unix (novice)

Heya all Im just reading up on the solaris o/s and unix and i just have the following qustions 1) is the solaris o/s the same as Unix if not how are they different - i.e. are they different operating systems? 2) Can the Unix be loaded from CD without affectin windows o/s just like linux... (2 Replies)
Discussion started by: new214
2 Replies

7. Solaris

How to start CDE for non root user on Solaris 10

Hi, How can I start CDE for non root user created.For root CDE is working fine but for non root user CDE exits back to login screen after trying for some time.Also I cant see .dt and .dtprofile files in the users home directory.How can I create them.Kindly help. Thanks & Regards, Kiran. (1 Reply)
Discussion started by: kiranherekar
1 Replies

8. Programming

Novice in C needs help

Guys can you help me ? I'm novice in C but I have a lot of will to master C. Each gurney starts with first step O.K. My problem is to compare two integers entered by user I know how to set up conditions and problem is how to print correct value (grater number) // This program... (5 Replies)
Discussion started by: solaris_user
5 Replies

9. Shell Programming and Scripting

Start script when a user starts a remote session

Howdy, I'm fairly new at bash scripting, but (for some reason) I've been tasked with building a bastion server and logging all (ssh/telnet) remote activity. Each session must create a unique log file - the name of each file must include the user ID, the connection method (ssh/telnet), the name... (2 Replies)
Discussion started by: kilo90
2 Replies

10. Red Hat

User (Profile) Specific Start Menu for RHEL 6.1 using KDE 4.3.4

I installed RHEL 6.1 with KDE 4.3.4 using LDAP on a PC and have now the problem to specifiy a user/Profile specific start menu. I have used already the kmenuedit tool and tailored for one user a specific menu, successfully. I changed as an example the konsole submenu. The kmenuedit was... (0 Replies)
Discussion started by: Gromit
0 Replies
VIRTUALENV(1)															     VIRTUALENV(1)

NAME
virtualenv - create virtual Python instances SYNOPSIS
virtualenv [options...] [destination-directory] DESCRIPTION
virtualenv creates virtual Python executables, each of which can have its own set of installed modules. Programs that require different versions of modules or sets of modules that may be incompatible with others to be installed on the same system without conflicts. The result is a directory containing its own Python executables (in DIR/bin/pythonVER and DIR/bin/python) and its own module directory containing the standard library as installed by the system. Additional modules may be installed via setuptools, as invoked from the binary directory (DIR/bin/easy_install). The system's site-packages directories will not be available by default, but can be made visible with the --system-site-packages option. They can then be overridden with locally-installed modules. In addition, a shell script called "activate" will be installed in the bin directory. If sourced, this will cause normal invocations of the Python executable to use the virtual environment. By running the virtualenv command explicitly under the desired Python interpreter, the user can control which version of Python is created in the virtual environment. OPTIONS
-h, --help Show summary of options. --version Show the version of the program. -v, --verbose Be more verbose. -q, --quiet Be less verbose; suppress unimportant output. --clear Clear out a previously-created virtual Python instance in this location before creating a new one. -p PYTHON_EXE,--python=PYTHON_EXE The Python interpreter to use to create the new environment. --no-site-packages Ignored (the default). Don't give access to the global site-packages modules to the virtual environment. --system-site-packages Give access to the global site-packages modules to the virtual environment. --unzip-setuptools Unzip Setuptools or Distribute when installing it. --relocatable Make an EXISTING virtualenv environment relocatable. --distribute Ignored. Distribute is used by default. See --setuptools to use Setuptools instead of Distribute. --setuptools Use Setuptools instead of Distribute. Set environ variable VIRTUALENV_SETUPTOOLS to make it the default. --extra-search-dir=SEARCH_DIRS Directory to search for setuptools/distribute/pip distributions in. Can be specified multiple times. --never-download Never download anything from the network. Instead, fail if local distributions of setuptools/distribute/pip are not present. --prompt==PROMPT Provides an alternative prompt prefix for this environment. AUTHORS
This manual page was originally written by Jeff Licquia <licquia@debian.org>, later rewritten by Carl Chenet <chaica@ohmytux.com>. LICENSE
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, version 2 or any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. COPYRIGHT
Copyright (C) 2007 Jeff Licquia 12/02/2009 VIRTUALENV(1)
All times are GMT -4. The time now is 10:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy