Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Which UNIX OS is going to give me the most versatility? I Want Total Control Post 302974336 by metacogitans on Saturday 28th of May 2016 10:08:03 AM
Old 05-28-2016
Haha. I started out typing trying to ask this as a serious question though, which OS would be best for tinkering around with but not overly burdening on a user?
I should mention I'm going to be using Unix for the first time, but I'm competent with computers, and the reason I want to use Unix is to because I want to learn more skills and I'm sick of Windows basically telling me I'm not allowed to.

Also, with the having two operating systems thing, how easy is it to use one operating to gut the other operating system to just the command line while keeping perks of that operating system (file types unique to that operating system, etc.)
I'd only want a second operating system if it didn't take up any CPU (as them various operating systems out there seem to like to do, all the time for little or no reason).

Anyways, I appreciate any help or advice, and yes, despite the jokes I am looking for advice, haha.

Also, my strategy with learning the various new commands and any coding or whatever is to just shamelessly speed-use google for the commands or whatever I'm looking for,
I always just google my code whenever I need code for something for whatever reason, and its never taken me more than 25 seconds to find the code I was thinking of

Last edited by metacogitans; 05-28-2016 at 11:14 AM..
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix System Total Replication

Is there any way to totally replicate a unix system from one hardisk to another? And be able to swap the hardisk and restart the system without any error? TQ (4 Replies)
Discussion started by: nuraman
4 Replies

2. HP-UX

How should I know the total RAM available on UNIX

Hi How Should I know the Total RAM available on HP-UX box? (7 Replies)
Discussion started by: skull123
7 Replies

3. UNIX for Dummies Questions & Answers

grep running total/ final total across multiple files

Ok, another fun hiccup in my UNIX learning curve. I am trying to count the number of occurrences of an IP address across multiple files named example.hits. I can extract the number of occurrences from the files individually but when you use grep -c with multiple files you get the output similar to... (5 Replies)
Discussion started by: MrAd
5 Replies

4. UNIX for Advanced & Expert Users

can some one give me some link about process and job control commands

can some one give me some link about process and job control commands (2 Replies)
Discussion started by: alokjyotibal
2 Replies

5. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

6. Programming

Please give me some advise to program for unix/linux using c/c++?

I have a good foundation of c++.I want to learn to program for linux/unix,can you give me some advises,for example classic books ,which operating system is used better(freebsd,solaris,federal linux.etc),and which aspects uses mostly in job.Can you give me clear direction for working or learning. (1 Reply)
Discussion started by: fengshuiyue
1 Replies

7. UNIX for Dummies Questions & Answers

For SFTP connection - How to give password in UNIX Script (ksh)

Hi, I am not able to give the password in Unix script for SFTP connection. When I am trying to manully SFTP command for accessing the server , it asking for pwd and I could provide the pwd but I am not getting how to provide the pwd inside the Unix script. sftp -v user@xyz.com. ... (4 Replies)
Discussion started by: Vineeta Nigam
4 Replies
Perl::OSType(3pm)					 Perl Programmers Reference Guide					 Perl::OSType(3pm)

NAME
Perl::OSType - Map Perl operating system names to generic types VERSION
version 1.003 SYNOPSIS
use Perl::OSType ':all'; $current_type = os_type(); $other_type = os_type('dragonfly'); # gives 'Unix' DESCRIPTION
Modules that provide OS-specific behaviors often need to know if the current operating system matches a more generic type of operating systems. For example, 'linux' is a type of 'Unix' operating system and so is 'freebsd'. This module provides a mapping between an operating system name as given by $^O and a more generic type. The initial version is based on the OS type mappings provided in Module::Build and ExtUtils::CBuilder. (Thus, Microsoft operating systems are given the type 'Windows' rather than 'Win32'.) USAGE
No functions are exported by default. The export tag ":all" will export all functions listed below. os_type() $os_type = os_type(); $os_type = os_type('MSWin32'); Returns a single, generic OS type for a given operating system name. With no arguments, returns the OS type for the current value of $^O. If the operating system is not recognized, the function will return the empty string. is_os_type() $is_windows = is_os_type('Windows'); $is_unix = is_os_type('Unix', 'dragonfly'); Given an OS type and OS name, returns true or false if the OS name is of the given type. As with "os_type", it will use the current operating system as a default if no OS name is provided. SEE ALSO
o Devel::CheckOS SUPPORT
Bugs / Feature Requests Please report any bugs or feature requests through the issue tracker at <https://github.com/dagolden/perl-ostype/issues>. You will be notified automatically of any progress on your issue. Source Code This is open source software. The code repository is available for public review and contribution under the terms of the license. <https://github.com/dagolden/perl-ostype> git clone git://github.com/dagolden/perl-ostype.git AUTHOR
David Golden <dagolden@cpan.org> CONTRIBUTORS
o Jonas B. Nielsen <jonasbn@hoarfrost.local> o Paul Green <Paul.Green@stratus.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by David Golden. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.18.2 2014-01-06 Perl::OSType(3pm)
All times are GMT -4. The time now is 01:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy