LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-27-2016, 04:30 PM   #1
Joy Stick
Member
 
Registered: Dec 2015
Distribution: RHEL 4.7
Posts: 127

Rep: Reputation: 0
Standard unix io


I see some technology is using STANDARD UNIX IO ?
  1. What is STANDARD UNIX IO ?
  2. Is there any Standard/Non Standard IO for UNIX/LINUX ?
  3. UNIX is different, Linux is different then Why linux (RHEL/CENTOS) is using STANDARD UNIX IO ?

If my question is immature , please dont mud it.
 
Old 01-27-2016, 04:42 PM   #2
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
What do you mean by "standard UNIX IO"? Can you give a reference, a link to a standard or specification, or at least an article tho which you refer?

I am sorry, but I just do not understand what you are talking about. Also, by IO do you mean I/O (Input/Output), or else what?

Last edited by Didier Spaier; 01-28-2016 at 05:51 PM. Reason: Typo fix.
 
Old 01-27-2016, 07:25 PM   #3
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Linux and GNU is modeled after UNIX POSIX
 
Old 01-27-2016, 09:34 PM   #4
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by Joy Stick View Post
I see some technology is using STANDARD UNIX IO ?
  1. What is STANDARD UNIX IO ?
  2. Is there any Standard/Non Standard IO for UNIX/LINUX ?
  3. UNIX is different, Linux is different then Why linux (RHEL/CENTOS) is using STANDARD UNIX IO ?

If my question is immature , please dont mud it.
I suspect you are referring to "stdio.h" facility for programming, but can't be sure as the term "STANDARD UNIX IO" doesn't make any sense.

Linux is based on standards - and the only standard commonly accepted has been POSIX, and Linux follows that, though not everything in Linux does.

Using POSIX DOES mean that programs that run on UNIX systems will USUALLY run on Linux just by recompiling. I say USUALLY because there are a lot of UNIX programs that use proprietary libraries in addition. These will not recompile/run on Linux UNLESS the proprietary libraries exist on Linux or a functional equivalent is available on Linux.

Last edited by jpollard; 01-27-2016 at 09:35 PM.
 
Old 01-28-2016, 05:45 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,974

Rep: Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623
Standard Unix I/O? Input output?
 
Old 01-28-2016, 08:32 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
If jefro's guess is correct, see

[COPY]man stdin
stdout
man stderr
[/COPY]
 
Old 01-28-2016, 09:00 PM   #7
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
I don't want to look like the bad guy, but, I'm finding it rather .... that someone cannot understand that IO in the sentance Standard Unix IO -- consider the contents people he/she meant to say I/O --

do you say I Backslash O when you talk about it to someone?

Last edited by BW-userx; 01-28-2016 at 09:06 PM.
 
Old 01-28-2016, 09:56 PM   #8
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Given how much jargon exists in Computer World, I see nothing wrong with persons' asking clarifying questions.

The road to misunderstanding is paved with assumptions.
 
Old 01-28-2016, 10:19 PM   #9
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled
POSIX.


IF you are reffering to something different maybe the good ole days of AS400 would be a different "Unix i/o"
 
Old 01-29-2016, 10:54 AM   #10
hidalgo_socorro
LQ Newbie
 
Registered: Jan 2016
Location: Miami
Distribution: Ubuntu
Posts: 4

Rep: Reputation: Disabled
Maybe he meant how to use IO on shell ?

cat /file > /otherfile (Redirect stdout)

while read line; do (Redirect stdin)
echo $line
done < /otherfile

Last edited by hidalgo_socorro; 01-29-2016 at 10:57 AM.
 
Old 01-29-2016, 11:08 AM   #11
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by hidalgo_socorro View Post
Maybe he meant how to use IO on shell ?
when you say "how to use IO on shell" what do you mean by shell? nut shell, walnut maybe? like in, "I couldn't get my shell open so I went all IO on it"?

Last edited by BW-userx; 01-29-2016 at 11:17 AM.
 
Old 01-29-2016, 11:19 AM   #12
hidalgo_socorro
LQ Newbie
 
Registered: Jan 2016
Location: Miami
Distribution: Ubuntu
Posts: 4

Rep: Reputation: Disabled
I meant bash or any other shell. Why is this an issue ?
Quote:
Originally Posted by BW-userx View Post
when you say "how to use IO on shell" what do you mean by shell? nut shell, walnut maybe? like in, "I couldn't get my shell open so I went all IO on it"?
 
Old 01-29-2016, 11:21 AM   #13
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
....Given how much jargon exists in Computer World, I see nothing wrong with persons' asking clarifying questions.

The road to misunderstanding is paved with assumptions.......
frankbell
LQ Guru

Last edited by BW-userx; 01-29-2016 at 11:27 AM.
 
Old 01-29-2016, 11:23 AM   #14
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Quote:
Originally Posted by BW-userx View Post
when you say "how to use IO on shell" what do you mean by shell? nut shell, walnut maybe? like in, "I couldn't get my shell open so I went all IO on it"?
Don't be a brat.

Instead of attacking everyone else in the thread, if you think the question is so clear, then how about you answer it? Even if he does mean I/O, the question is still vague and ambiguous, and I see no issue with people asking for clarification.
 
Old 01-29-2016, 11:30 AM   #15
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by suicidaleggroll View Post
Don't be a brat.

Instead of attacking everyone else in the thread, if you think the question is so clear, then how about you answer it? Even if he does mean I/O, the question is still vague and ambiguous, and I see no issue with people asking for clarification.
I already did (give my answer), then people seemed to have forgotten about the spoken word and common sense.

when someone comes up to you and says what is UNIX IO or what is IO when when you know the contents is about computer or programming what is your immediate thought? Input/outPut or somthing else that uses the letters IO?

Last edited by BW-userx; 01-29-2016 at 11:35 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Does a Samba ACL take precedence over standard Unix permissions? StupidNewbie Linux - Security 1 04-11-2010 01:00 AM
Unix standard about user/groups cormanstnl Linux - General 3 02-27-2008 04:46 AM
LXer: UNIX error reporting in the standard C library LXer Syndicated Linux News 0 09-08-2006 04:33 AM
Where to buy new pc with unix/linux standard,installed.? my-unix-dream Linux - Hardware 4 06-27-2004 10:44 PM
Portscan detection with standard unix tools? J_Szucs Linux - Security 13 06-03-2003 03:21 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration