Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Linux (Ubuntu) = Unix (NOT IMPORTANT - NO RUSH) Post 302711307 by Corona688 on Friday 5th of October 2012 06:14:25 PM
Old 10-05-2012
I can't think of anything else like Ubuntu. It's not even like most Linux.

The rest of those questions are too vague to give useful answers to unfortunately.

How the many, many different kinds of UNIX and Linux are alike is the environment they provide to application programmers. The Bourne shell and a clutter of standard utilities to use with it. The open() close() socket() system calls. Standard input and output streams for processes. Device files under /dev/. The standard C library. Filesystems with a root at / and other partitions mounted wherever appropriate instead of drive letters, etc, etc, etc.

How you manage these systems, though, can be very different.
 

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Few Important doubts and questions..(Unix/Shell)

Hi All, I have a few questions which I am unable to solve/answer. Please help me with them:- Command in Unix to determine if a Host is connected to the internet ? If a parenet process is killed what happens to the child process? How do I print the first 10 lines of a file in the... (1 Reply)
Discussion started by: shubhranshu
1 Replies

2. Linux

Important Service Linux

Hi there; I need to know all the things about services which help my Linux OS running. So what're important services of LINUX OS ? Anyone can help me... Tks all ? (1 Reply)
Discussion started by: quan0509
1 Replies

3. Ubuntu

XP and Linux (Ubuntu) on same disk, Can I install Ubuntu on not-yet partitioned portion of disk?

My PC (Esprimo, 3 yeas old) has one hard drive having 2 partitions C: (80 GB NTFS, XP) and D: (120 GB NTFS, empty) and and a 200 MB area that yet is not-partitioned. I would like to try Ubuntu and to install Ubuntu on the not-partitioned area . The idea is to have the possibility to run... (7 Replies)
Discussion started by: C.Weidemann
7 Replies

4. What is on Your Mind?

UNIX: Building The Most Important OS in the World By John Loeffler

Nice UNIX history article by John Loeffler, February, 05th 2019 UNIX: Building The Most Important OS in the World The most widely used operating system in the world was a project born out of failure. (0 Replies)
Discussion started by: Neo
0 Replies
FCLOSEALL(3)						     Linux Programmer's Manual						      FCLOSEALL(3)

NAME
fcloseall - close all open streams SYNOPSIS
#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <stdio.h> int fcloseall(void); DESCRIPTION
The fcloseall() function closes all of the calling process's open streams. Buffered output for each stream is written before it is closed (as for fflush(3)); buffered input is discarded. The standard streams, stdin, stdout, and stderr are also closed. RETURN VALUE
This function returns 0 if all files were successfully closed; on error, EOF is returned. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +------------+---------------+------------------------+ |Interface | Attribute | Value | +------------+---------------+------------------------+ |fcloseall() | Thread safety | MT-Unsafe race:streams | +------------+---------------+------------------------+ The fcloseall() function does not lock the streams, so it is not thread-safe. CONFORMING TO
This function is a GNU extension. SEE ALSO
close(2), fclose(3), fflush(3), fopen(3), setbuf(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2017-09-15 FCLOSEALL(3)
All times are GMT -4. The time now is 07:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy