What organization was created in 1988 to lobby for an open UNIX?
The not-for-profit Open Systems Foundation was created in 1988 to attempt an open standard for Unix.
See related link for more information.
Can i give default password in solaris?
As an administrator you can give any user a starter or default password. It would be a good idea to require those users to choose another password immediately.
What is internal documentation?
When a software designer make comments in their code, it is referred to as internal documentation. It has the following information for each of the code component :
- what is the name of the component- who wrote it
- where does the component fit in the general system design
- when was the component written and revised
- why the component exists
- how the component uses its data structures, algorithms and controls
What are the fields used in the Unix password file?
There are seven fields in the password file on each line for each user. They are:
login name
· optional encrypted password
· numerical user ID
· numerical group ID
· user name or comment field
· user home directory
· optional user command interpreter
Is Macintosh single tasking or multitasking?
Almost all modern computer hardware, including the Macintosh range of computers, and operating systems are multi-tasking.
Why are PID numbers useful when you run processes in the backround?
Process ID numbers are useful for terminating and locating process names without it. It would be almost impossible for the operating system and the user to be able to terminate or control processes that are assigned within the kernel.
Which command can increase the number of filehandles that programs can open in a shell?
Use the 'ulimit' command. However, some systems may cap it at a certain value so you may not be able to raise it.
What is the difference between Windows and Unix?
One thing that has been established though, UNIX is quite a bit more reliable than Windows, and less administration and maintenance is needed in maintaining a UNIX system. This is a huge cost saver for any organization. Rather than employing many individuals to maintain a Windows based system, one part-time employee would be needed for the upkeep of a typical size UNIX system. One key difference between UNIX and Windows is the implementation of multiple users on one computer. When a user logs onto a UNIX system, a shell process is started to service their commands. Keeping track of users and their processes, a UNIX operating system is able to keep track of processes and prevent them from interfering with each other. This is extremely beneficial when all the processes run on the server, which demands a greater use of resources - especially with numerous users and sizeable applications.
Another main difference between UNIX and Windows is the process hierarchy which UNIX possesses. When a new process is created by a UNIX application, it becomes a child of the process that created it. This hierarchy is very important, so there are system calls for influencing child processes. Windows processes on the other hand do not share a hierarchical relationship. Receiving the process handle and ID of the process it created, the creating process of a Windows system can maintain or simulate a hierarchical relationship if it is needed. The Windows operating system ordinarily treats all processes as belonging to the same generation.
UNIX uses daemons, Windows has service processes. Daemons are processes that are started when UNIX boots up that provide services to other applications. Daemons typically do not interact with users. A Windows service is the equivalent to a UNIX daemon. When a Windows system is booted, a service may be started. This is a long running application that does not interact with users, so they do not have a user interface. Services continue running during a logon session and they are controlled by the Windows Service Control Manager.
UNIX has a novel approach to designing software. Since UNIX is open-sourced, it attracts some very intelligent programmers who develop many applications free of charge. With this in mind, many designers choose to resolve software problems by creating simpler tools that interconnect rather than creating large application programs. In contrast, Windows applications are all proprietary and costly. With UNIX, each generation extends, rather than replaces the previous like Windows it is rarely necessary to upgrade - old and new Unix are all compatible. The main reason for this is the way UNIX is built, which is on a solid theoretical foundation. There are many advantages to this, for instance, a book written 20 years ago that discusses programming UNIX can still be used today. Imagine trying to figure out how to run Windows XP with a Window 3.1 manual - it can't be done.
One argument to be made about UNIX is its lack of standardization. Some feel there are too many choices to be made regarding which GUI to use, or which combination of UNIX hardware and software to support. UNIX operating systems make great high-performance servers, but for end-users, every application on each arrangement of UNIX platform requires a different set, and each application has a different user interface. Microsoft has "the" Windows operating system; there simply isn't one standardized UNIX operating system, or for that matter, a single standardized UNIX GUI. One could argue and say this is a downfall for UNIX, but on the other hand, these variations add flavor and versatility to a solid, reliable operating system.
In summary, the best way to choose between UNIX and Windows is to determine organizational needs. If an organization uses mostly Microsoft products, such as Access, Front Page, or VBScripts, it's probably better to stick with Windows. But, if reliability, universal compatibility, and stability are a concern, UNIX would probably be the way to go.
Here is more input:
What type of attack is SSH1 vulnerable to?
There were numerous vulnerabilities in SSH1. One allowed malicious data to be injected into an SSH stream. Another vulnerability in some implementations was to not disconnect after four unsuccessful attempts to log in, making brute force attacks easier.
What is internal command and examples of internal command?
A command that is stored in the system memory and loaded from the command.com
What command do you use to view IP address information?
For Unix/linux, use the 'ifconfig' command.
For Windows, use 'ipconfig'
Which Linux command is used to assign privileges over a particular file to a designated user?
chown user file
dont forget that you should be owner of the file or root to give privilege to other users to a file
Daemon
Where can i find a copy of dmc2.ocx file?
http://www.v-basic.de/index.php?page=detail&nav=3:18:55:327 posted by Black Widowmaker! But i have also a few questions: Does docs exist? Can this ocx play mp3s? and how? Anwers please to: Thanks_for@shared-files.de thanks
Why do you use wall command in unix?
The 'wall' command is used to send a message to all users on the system. You can put the text of what you want each user to see in a file, or you can type the message in line by line and then send it.
To send the contents of a file to each user, use the command:
wall filename
to send a message and type the contents at the same time, type:
wall
first line of text
second line of text
...
^D
to send it.
What is the difference between Solaris and HP-UX?
Internally they aren't too different. On the outside, both are proprietary versions of Unix from different vendors. Solaris is from Sun Microsystems and runs primarily on their CPU chipset the SPARC processor, although recent versions of Solaris will run on Intel or AMD chips as well.
HP-UX is from HP, and runs on their chipset of the PA-RISC processor or the Itanium. Recently it was ported to Intel chips as well.
From a user's perspective, and even a developer's perspective they are very similar.
What is the difference between UNIX 95 and UNIX 98?
Since there isn't a UNIX 95 or UNIX 98 per se, I think you are referring to Windows 95 or Windows 98..
Can Sun Solaris 10 be installed on an AT motherboard with an Intel Pentium III processor?
I've yet to encounter an AT motherboard that supported a Pentium III processor. All the same, it is possible to run Solaris 10 on a Pentium III computer. You'll need at least 256 MB of RAM, however.
What is the difference between pipes and filters in Unix?
A filter is a program that can remove input given a certain criterial. It in effect, "filters" out things that either match or do not match, thus giving you less information (it has been filtered out).
A pipe is a software construct that allows for information to be communicated between processes. Think of a water pipe connecting a community for example.
Pipes can be utilized as well to "chain" together multiple filter programs to create only the information you want. A traditional pipe in Unix connects the output of one process to the input of another.
With which commands do you display file names and processes in unix?
To display files and folder ls command is used, which stands for "list directory contents". It has great amount of options and very often used with -la options (list in long format (privileges, creation time, size, if it is symbol link then where it points and etc) and other options tells to include "." and ".." folders).
To list all processes there is ps command which stands for "process status". In order to get very detailed list of what is running on your system you could use -lax options with this command.
To print first 10 numbers in unix shell scripting using FOR loop?
The use of the "for" loop in many shell scripting languages to do what you want would be fairly confining. However, if you wanted to do that, you could, for example, do the following:
for i in 1 2 3 4 5 6 7 8 9 10
do
echo $i
done
How is a File Allocation Table different from an inode?
1-the Fat must be saved totally in the Main memory,but only the I-node musst be saved in the main memory
2-with i-node faster searchind an accessing a data block
3-i-node area is only accesible by the Operating system