Sponsored Content
Full Discussion: A little help please....
Operating Systems Solaris A little help please.... Post 302070689 by trmn8r on Thursday 6th of April 2006 04:41:24 PM
Old 04-06-2006
A little help please....

I recently installed Solaris 10 onto an HP desktop and was able to get it running without any major problems. I then installed Sun Studio 11 on the same machine, and was able to run it up as well.
I didn't lock the monitor when I left the room and my 1.5 y/o grandson (who likes to play with keyboards) thought that he would help me out Smilie I can no longer log into the system (as root - no other user had yet been added), all of the keys on the keyboard are offset when typed (i.e. "r" is "e", "o" is "i" and "t" is "r"). I am perplexed as to how to go about recovering from this, so I would like to try to reload everything. I am also getting error messages indicating "Disk Full". He really did a number on my PC Smilie
How would I go about removing what is installed now and reloading it over again. Or, can I simply re-install Solaris (and it will over-write existing files)?

Thanks in advance.
PS - I will be making it a habit to lock the terminal at home - I have to do it at work.
 
CARTON-INSTALL(1p)					User Contributed Perl Documentation					CARTON-INSTALL(1p)

NAME
carton-install - Install the dependencies SYNOPSIS
carton install [--deployment] [--path=PATH] [modules...] DESCRIPTION
Install the dependencies for your application. This command has two modes and the behavior is slightly different. DEVELOPMENT MODE carton install (no arguments) If you run "carton install" without any arguments and if cpanfile exists, carton will scan dependencies from cpanfile and install the modules. In either way, if you run "carton install" for the first time (i.e. carton.lock does not exist), carton will fetch all the modules specified, resolve dependencies and install all required modules from CPAN. If carton.lock file does exist, carton will still try to install modules specified or updated in cpanfile, but uses carton.lock for the dependency resolution, and then cascades to CPAN. carton will analyze all the dependencies and their version information, and it is saved into carton.lock file. It is important to add carton.lock file into a version controlled repository and commit the changes as you update your dependencies. DEPLOYMENT MODE If you specify the "--deployment" command line option or the carton.lock exists and cpanfile does not exist, carton will fetch all remote modules and use the dependencies specified in the carton.lock instead of resolving dependencies. CONSERVATIVE UPDATE
"carton install" doesn't update the modules already installed into local library path as long as the version is satisfied. For example, one day you install URI-1.50 from CPAN: > carton install URI Successfully installed URI-1.50 Few weeks later, URI module is updated to 1.51 on CPAN. If you run the "carton install URI" again: > carton install URI You have URI (1.50) because you haven't specified the version number, carton won't update the module in your local library path. WARNINGS: following commands are not implemented If you want to update to the latest version of CPAN, you can either use "carton update" command, or specify the required version either in your cpanfile. > carton update URI > cat cpanfile requires 'URI', 1.51; Any of those will upgrade URI to the latest one from CPAN, and the version specified in the carton.lock will be bumped. OPTIONS
--deployment Force the deployment mode and carton will ignore cpanfile contents. --path Specify the path to install modules to. Defaults to local in the current directory. perl v5.14.2 2012-05-12 CARTON-INSTALL(1p)
All times are GMT -4. The time now is 01:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy