Sponsored Content
Top Forums UNIX for Dummies Questions & Answers A question about Unix Architecture. Post 302688007 by Corona688 on Friday 17th of August 2012 11:09:02 AM
Old 08-17-2012
You're asking like UNIX is a kind of computer; it isn't.

UNIX can run on many kinds of processors and memories, on scales from embedded microcomputer(things like wireless routers) all the way up to distributed clusters and supercomputers.

There's also many kinds of kernels of several kinds you mention; there's real-tasking UNIXes(QNX), monolithic(Linux, though that's technically UNIX-like), and more.

How is this possible?

Easy -- they're not all the same thing. UNIX is a design plan, not an operating system. As long as your OS is certified as providing the right set of features, it can be considered a UNIX, no matter how it's built internally. Lots of different individuals and software companies have built a UNIX to their own design or need.

So, it's very difficult to be anything but vague about "what is UNIX" with respect to those particular questions. You need to be more specific about which UNIX.
 

5 More Discussions You Might Find Interesting

1. IP Networking

unix to unix serial connection question

hi there i'm a new bie just got few simple questions to ask. I got expert in windows configuration but totally new to unix environment . I want to make sure a com port (com1) is working, so I connect a 9-pin cable (CB9) for both PC using Unix environment (unix to unix). The question are (1)... (1 Reply)
Discussion started by: typsam
1 Replies

2. UNIX for Dummies Questions & Answers

Unix History Question: Why are filenames/dirnames case sentsitive in Unix?

I tried looking for the answer online and came up with only a few semi-answers as to why file and directory names are case sensitive in Unix. Right off the bat, I'll say this doesn't bother me. But I run into tons of Windows and OpenVMS admins in my day job who go batty when they have to deal... (3 Replies)
Discussion started by: deckard
3 Replies

3. UNIX for Dummies Questions & Answers

Trivial Unix Architecture question

Hi, I am becoming very curious as to why viruses attach only Windows system and not any UNIX and Linux. Does that has to do something with the architecture or something else. (11 Replies)
Discussion started by: vibhor_agarwali
11 Replies

4. UNIX for Dummies Questions & Answers

UNIX box architecture

Hi Gurus, I am new to UNIX environment. We have our DataStage tool installed on UNIX box.We have Dev,test and Prod environments.The architecrue is as given below. Now my problem is I am not able to know what is meant by Physical name,Logical name,Cluster etc. also we need to do failover in case a... (5 Replies)
Discussion started by: pratyusha
5 Replies

5. Ubuntu

Dpkg architecture

I noticed dpkg reporting architecture as AMD64, but the h/w is Intel, see below: ~$ uname -a Linux XXX 3.2.0-29-generic #46-Ubuntu SMP Fri Jul 27 17:03:23 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux ~$ lshw | grep -i xeon WARNING: you should run this program as super-user. PCI (sysfs) ... (2 Replies)
Discussion started by: migurus
2 Replies
WCTYPE(3)						     Linux Programmer's Manual							 WCTYPE(3)

NAME
wctype - wide character classification SYNOPSIS
#include <wctype.h> wctype_t wctype(const char *name); DESCRIPTION
The wctype_t type represents a property which a wide character may or may not have. In other words, it represents a class of wide charac- ters. This type's nature is implementation dependent, but the special value (wctype_t)0 denotes an invalid property. Nonzero wctype_t val- ues can be passed to the iswctype function to actually test whether a given wide character has the property. The wctype function returns a property, given by its name. The set of valid names depends on the LC_CTYPE category of the current locale, but the following names are valid in all locales. "alnum" - realizes the isalnum classification function "alpha" - realizes the isalpha classification function "blank" - realizes the isblank classification function "cntrl" - realizes the iscntrl classification function "digit" - realizes the isdigit classification function "graph" - realizes the isgraph classification function "lower" - realizes the islower classification function "print" - realizes the isprint classification function "punct" - realizes the ispunct classification function "space" - realizes the isspace classification function "upper" - realizes the isupper classification function "xdigit" - realizes the isxdigit classification function RETURN VALUE
The wctype function returns a property descriptor if the name is valid. Otherwise it returns (wctype_t)0. CONFORMING TO
ISO/ANSI C, UNIX98 SEE ALSO
iswctype(3) NOTES
The behaviour of wctype depends on the LC_CTYPE category of the current locale. GNU
1999-07-25 WCTYPE(3)
All times are GMT -4. The time now is 05:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy