Google 网上论坛不再支持新的 Usenet 帖子或订阅项。历史内容仍可供查看。

What would you like to see most in minix?

已查看 214,886 次
跳至第一个未读帖子

Jyrki Kuoppala

未读,
1991年8月25日 19:44:501991/8/25
收件人
In article <1991Aug25....@klaava.Helsinki.FI>, torvalds@klaava (Linus Benedict Torvalds) writes:
>I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
>This implies that I'll get something practical within a few months, and
>I'd like to know what features most people would want. Any suggestions
>are welcome, but I won't promise I'll implement them :-)

Tell us more! Does it need a MMU?

>PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
>It is NOT protable (uses 386 task switching etc)

How much of it is in C? What difficulties will there be in porting?
Nobody will believe you about non-portability ;-), and I for one would
like to port it to my Amiga (Mach needs a MMU and Minix is not free).

As for the features; well, pseudo ttys, BSD sockets, user-mode
filesystems (so I can say cat /dev/tcp/kruuna.helsinki.fi/finger),
window size in the tty structure, system calls capable of supporting
POSIX.1. Oh, and bsd-style long file names.

//Jyrki

Linus Benedict Torvalds

未读,
1991年8月26日 07:06:021991/8/26
收件人
In article <1991Aug25.2...@nntp.hut.fi> j...@cs.HUT.FI (Jyrki Kuoppala) writes:
>> [re: my post about my new OS]

>
>Tell us more! Does it need a MMU?

Yes, it needs a MMU (sorry everybody), and it specifically needs a
386/486 MMU (see later).

>
>>PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
>>It is NOT protable (uses 386 task switching etc)
>
>How much of it is in C? What difficulties will there be in porting?
>Nobody will believe you about non-portability ;-), and I for one would
>like to port it to my Amiga (Mach needs a MMU and Minix is not free).

Simply, I'd say that porting is impossible. It's mostly in C, but most
people wouldn't call what I write C. It uses every conceivable feature
of the 386 I could find, as it was also a project to teach me about the
386. As already mentioned, it uses a MMU, for both paging (not to disk
yet) and segmentation. It's the segmentation that makes it REALLY 386
dependent (every task has a 64Mb segment for code & data - max 64 tasks
in 4Gb. Anybody who needs more than 64Mb/task - tough cookies).

It also uses every feature of gcc I could find, specifically the __asm__
directive, so that I wouldn't need so much assembly language objects.
Some of my "C"-files (specifically mm.c) are almost as much assembler as
C. It would be "interesting" even to port it to another compiler (though
why anybody would want to use anything other than gcc is a mystery).

Unlike minix, I also happen to LIKE interrupts, so interrupts are
handled without trying to hide the reason behind them (I especially like
my hard-disk-driver. Anybody else make interrupts drive a state-
machine?). All in all it's a porters nightmare.

>As for the features; well, pseudo ttys, BSD sockets, user-mode
>filesystems (so I can say cat /dev/tcp/kruuna.helsinki.fi/finger),
>window size in the tty structure, system calls capable of supporting
>POSIX.1. Oh, and bsd-style long file names.

Most of these seem possible (the tty structure already has stubs for
window size), except maybe for the user-mode filesystems. As to POSIX,
I'd be delighted to have it, but posix wants money for their papers, so
that's not currently an option. In any case these are things that won't
be supported for some time yet (first I'll make it a simple minix-
lookalike, keyword SIMPLE).

Linus (torv...@kruuna.helsinki.fi)

PS. To make things really clear - yes I can run gcc on it, and bash, and
most of the gnu [bin/file]utilities, but it's not very debugged, and the
library is really minimal. It doesn't even support floppy-disks yet. It
won't be ready for distribution for a couple of months. Even then it
probably won't be able to do much more than minix, and much less in some
respects. It will be free though (probably under gnu-license or similar).

Peter Holzer

未读,
1991年8月26日 12:20:261991/8/26
收件人
j...@cs.HUT.FI (Jyrki Kuoppala) writes:

>In article <1991Aug25....@klaava.Helsinki.FI>, torvalds@klaava (Linus Benedict Torvalds) writes:
>>This implies that I'll get something practical within a few months, and
>>I'd like to know what features most people would want. Any suggestions
>>are welcome, but I won't promise I'll implement them :-)

>As for the features; well, pseudo ttys, BSD sockets, user-mode


>filesystems (so I can say cat /dev/tcp/kruuna.helsinki.fi/finger),
>window size in the tty structure, system calls capable of supporting
>POSIX.1. Oh, and bsd-style long file names.

On a lower level:

I don't like the chmem mechanism of Minix. Processes should start with
a minimal size and grow as they need to until they run out of RAM or
disk space. Paging to disk would be nice, too.

If your OS is message based I would like to have arbitrarily large
messages. They could be implemented efficiently by mapping the pages
into the receivers address space (or just passing a pointer on 68k
systems without MMU). Oh, yes, and the addressing scheme for messages
should be different than in Minix. Messages should not be sent to
process slot numbers, but to ports. That way, user processes can use
messages, too, and it is easier to add your own servers.

PS: I am very interested in this OS. I have already thought of writing
my own OS, but decided I wouldn't have the time to write everything from
scratch. But I guess I could find the time to help raising a baby
OS :-)
--
| _ | Peter J. Holzer | Think of it |
| |_|_) | Technical University Vienna | as evolution |
| | | | Dept. for Real-Time Systems | in action! |
| __/ | h...@vmars.tuwien.ac.at | Tony Rand |

James da Silva

未读,
1991年8月26日 11:39:071991/8/26
收件人
In article <1991Aug26.1...@klaava.Helsinki.FI> torv...@klaava.Helsinki.FI (Linus Benedict Torvalds) writes:
>Unlike minix, I also happen to LIKE interrupts, so interrupts are
>handled without trying to hide the reason behind them (I especially like
>my hard-disk-driver. Anybody else make interrupts drive a state-
>machine?).

Sure. For one example, Alessandro Forin's Mach SCSI adapter drivers are
written this way. A comment from his code:

/*
* This layer works based on small simple 'scripts' that are installed
* at the start of the command and drive the chip to completion.
* The idea comes from the specs of the NCR 53C700 'script' processor.
*
* There are various reasons for this, mainly
* - Performance: identify the common (successful) path, and follow it;
* at interrupt time no code is needed to find the current status
* - Code size: it should be easy to compact common operations
* - Adaptability: the code skeleton should adapt to different chips without
* terrible complications.
* - Error handling: and it is easy to modify the actions performed
* by the scripts to cope with strange but well identified sequences
*
*/

An interesting way to write a device driver. I believe this is a very old
technique, too.

Good luck on your OS project, it sounds like a lot of fun.
Jaime
...........................................................................
: domain: j...@cs.umd.edu James da Silva
: path: uunet!mimsy!jds Systems Design & Analysis Group

Adam David

未读,
1991年8月26日 20:32:421991/8/26
收件人
One of the things that really bugs me about minix is the way device drivers
have to be compiled into the kernel. So, how about doing some sensible
installable device driver code (same goes for minix 2.0 whenever).

--
Adam David.
(ad...@rhi.hi.is)

Alan Barclay

未读,
1991年8月27日 10:34:321991/8/27
收件人
In article <1991Aug26.1...@klaava.Helsinki.FI> torv...@klaava.Helsinki.FI (Linus Benedict Torvalds) writes:
>yet) and segmentation. It's the segmentation that makes it REALLY 386
>dependent (every task has a 64Mb segment for code & data - max 64 tasks
>in 4Gb. Anybody who needs more than 64Mb/task - tough cookies).
>

Is that max 64 64Mb tasks or max 64 tasks no matter what their size?
--
Alan Barclay
iT | E-mail : al...@ukpoit.uucp
Barker Lane | BANG-STYLE : .....!ukc!ukpoit!alan
CHESTERFIELD S40 1DY | VOICE : +44 246 214241

Linus Benedict Torvalds

未读,
1991年8月28日 06:56:191991/8/28
收件人
In article <1991Aug27.1...@ukpoit.co.uk> al...@ukpoit.co.uk (Alan Barclay) writes:
>In article <1991Aug26.1...@klaava.Helsinki.FI> torv...@klaava.Helsinki.FI (Linus Benedict Torvalds) writes:
>>yet) and segmentation. It's the segmentation that makes it REALLY 386
>>dependent (every task has a 64Mb segment for code & data - max 64 tasks
>>in 4Gb. Anybody who needs more than 64Mb/task - tough cookies).
>>
>
>Is that max 64 64Mb tasks or max 64 tasks no matter what their size?

I'm afraid that is 64 tasks max (and one is used as swapper), no matter
how small they should be. Fragmentation is evil - this is how it was
handled. As the current opinion seems to be that 64 Mb is more than
enough, but 64 tasks might be a little crowded, I'll probably change the
limits be easily changed (to 32Mb/128 tasks for example) with just a
recompilation of the kernel. I don't want to be on the machine when
someone is spawning >64 processes, though :-)

Linus

John

未读,
2011年6月24日 15:32:292011/6/24
收件人
Thanks for creating Linux.

구글

未读,
2011年8月26日 03:50:332011/8/26
收件人
thank you very much torvalds
已删除帖子

Kasumifan

未读,
2011年8月26日 09:23:452011/8/26
收件人
Great! This maybe the most important event in modern history, really!

정준혁

未读,
2011年8月26日 10:38:352011/8/26
收件人
Really Thanks!
If You didn't develop Linux, I would not able to set up Server easily :D

U R really AWESOME!!!

JensMinor

未读,
2011年8月26日 12:47:372011/8/26
收件人
Please make Linux :-)

Kasumifan

未读,
2011年8月26日 13:11:502011/8/26
收件人
On Friday, August 26, 2011 8:47:37 PM UTC+4, JensMinor wrote:
> Please make Linux :-)

Yeah! Yeah! Please! Make it!

James

未读,
2011年8月26日 14:14:052011/8/26
收件人
now i feel old as i was a user from near the beginning. i remember the first attempts to get it running on my 386 (took days to get things going).

THANKS LINUS you're contribution to the world has changed it in many many GOOD ways

Triviox

未读,
2011年8月27日 20:28:192011/8/27
收件人
"Hello everybody out there using minix -"
No, i don't use minix; i use GnuLinux!!

Thanks Mr.Trovalds...
:)

churchy

未读,
2011年8月30日 22:20:352011/8/30
收件人

And without minix Mr. Torvalds would probably have done
some nice windows programs. Thank /you/ Mr. Tannenbaum!

已删除帖子

prafu...@gmail.com

未读,
2011年12月9日 18:25:032011/12/9
收件人
Thanks!

dsrking

未读,
2011年12月29日 07:43:572011/12/29
收件人
Thanks a lot.

Rico Dittrich

未读,
2012年1月14日 11:13:262012/1/14
收件人
Linus, I don't know how to thank you!
You've made something big and awesome!
Thanks for everything! :)

kirj...@gmail.com

未读,
2012年2月8日 09:57:552012/2/8
收件人
Thank you :)

jay...@gmail.com

未读,
2012年2月25日 00:40:372012/2/25
收件人
21 Years Later!!
Thank you Torvalds for Linux!!

From Fiji

On Monday, August 26, 1991 6:12:08 PM UTC+12, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

jus...@wikia-inc.com

未读,
2012年3月8日 17:40:202012/3/8
收件人
Yeah, seriously, it was such an important decision to start this project. Thanks so much!

Now, I'm having this problem on one of my Linux servers...

:-P

max...@googlemail.com

未读,
2012年3月15日 07:25:342012/3/15
收件人
Am Montag, 26. August 1991 08:12:08 UTC+2 schrieb Linus Benedict Torvalds:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones...

Omg, this is so awesome! Thank you Mr. Torvalds!

naveen.ka...@gmail.com

未读,
2012年3月22日 14:15:242012/3/22
收件人
Thank you Sir..

thank you for the revolution you have made
thank you for the awesome work and inspiration

~ Naveen Karuthedath

Amit Kumar

未读,
2012年4月16日 12:19:342012/4/16
收件人
Thanks for such an amazing OS. I hope something new and revolutionary
comes again in OSes!

milind....@gmail.com

未读,
2012年4月23日 11:13:062012/4/23
收件人
I am a New User to Linux and the ideology behind it is amazing thank you very much for your contribution to the whole world. It would be interesting to see one day all machines running Linux. Its been a success and hope it never ends. All the best for future endeavors. If you travel to India anytime i hope u can organize some talks and shows so people became aware of the project. Take care....

On Monday, 26 August 1991 11:42:08 UTC+5:30, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

to

scgsc...@gmail.com

未读,
2012年5月14日 17:04:162012/5/14
收件人
On Monday, August 26, 1991 2:12:08 AM UTC-4, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

It turns out that it supports WAY more than AT-harddisks!
Thank you, Linus, for making a contribution not only to computing, but to all humanity.

Christopher Long

未读,
2012年5月31日 06:35:172012/5/31
收件人
On Sunday, August 25, 1991 11:12:08 PM UTC-7, Linus Benedict Torvalds wrote:

> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones.

Thanks, Linus! Looks interesting - what are you going to call it?
--
Christopher D. Long, San Diego Padres, 100 Park Boulevard, San Diego CA

Score: 0, Diff: 1, clong killed by a Harvard Math Team on 1

colone...@yahoo.com

未读,
2012年6月4日 01:18:302012/6/4
收件人
Less trolling?

jos...@gmail.com

未读,
2012年6月4日 13:10:522012/6/4
收件人
El lunes, 26 de agosto de 1991 01:12:08 UTC-5, Linus Benedict Torvalds escribió:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.




and so here i am 20 years later reading this mail, linux is where my true skill as programmer began and this reply is just to be back here in other 20 years and be able to read it :D

donatom

未读,
2012年6月16日 01:14:532012/6/16
收件人
On Friday, February 24, 2012 9:40:37 PM UTC-8, jay...@gmail.com wrote:
Linus,

You, Richard Stallman, BSD and the many programmers who helped you, Stallman and the BSD program have truly set this world free (free as in liberty, imagination and possibilities)! This would be a dreary planet without all of
the things that you have done -- and all of the things you have enabled others to do (many millions of them).

Thanks a bunch! We all hope that you revel in your unique, unbelievable legacy.

Don M.

evelo...@gmail.com

未读,
2012年7月4日 17:47:452012/7/4
收件人
Thanks Linus, this thread is a true piece of history. Your creation changed the world and I can only hope to have 1/10000 of the positive impact that you had on the world as a whole.

I'll be back in 10 years to read this and see how far I've come.

subu...@gmail.com

未读,
2012年7月6日 06:39:452012/7/6
收件人
On Monday, 26 August 1991 11:42:08 UTC+5:30, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thanks Very muck :-)

emerson1...@gmail.com

未读,
2012年7月11日 06:59:582012/7/11
收件人
Wow, this is the original post about Linux? I thought it is gone already.

BTW I am a true Linux Fan. Go Linux!!!!

rachit...@gmail.com

未读,
2012年7月12日 15:36:412012/7/12
收件人
what are

On Monday, 26 August 1991 11:42:08 UTC+5:30, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I&#39;m doing a (free) operating system (just a hobby, won&#39;t be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I&#39;d like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I&#39;ve currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I&#39;ll get something practical within a few months, and
> I&#39;d like to know what features most people would want. Any suggestions
> are welcome, but I won&#39;t promise I&#39;ll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it&#39;s free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that&#39;s all I have :-(.

ur future plans??

plan...@gmail.com

未读,
2012年7月26日 19:24:272012/7/26
收件人
Dňa pondelok, 26. augusta 1991 8:12:08 UTC+2 Linus Benedict Torvalds napísal(-a):
Linux is EPIC!!!

rafi...@gmail.com

未读,
2012年7月28日 00:23:062012/7/28
收件人
Dear Sir

thank u very sir

On Monday, 26 August 1991 11:42:08 UTC+5:30, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never

alexandr...@gmail.com

未读,
2012年7月31日 09:15:262012/7/31
收件人
> will support anything other than AT-harddisks, as that's all I have :-(.

I've just recently started using linux as my main OS, for about 1 month now, and the ideology behind linux and all the free/open source software is really beautiful. I fell in love with it!!

Thank you for your great job!

jiangzh...@gmail.com

未读,
2012年8月9日 23:01:462012/8/9
收件人
Thank you so much torvalds to make linux for world.

wangchao...@gmail.com

未读,
2012年8月14日 02:55:192012/8/14
收件人
After years, when I look into this email, yet I still feel excited. Thank you Linus, for making Linux. It's always the loyal companion, true lover and lifelong mentor.

cho...@gmail.com

未读,
2012年8月15日 14:37:092012/8/15
收件人
I like this gift. Thanks, linus.

lenna...@gmail.com

未读,
2012年8月17日 03:20:452012/8/17
收件人
Thank you very much for makin this world a better place torvalds =) =)

cri...@gmail.com

未读,
2012年8月17日 22:44:422012/8/17
收件人
How does it feel to know that, while still in school, your pursuit of a hobby has changed the world? People who've never seen your face are grateful to you and your name will be remembered for a very long time.

Thank you for that. :) Have a great day!

spz...@gmail.com

未读,
2012年8月20日 05:26:152012/8/20
收件人
And the rest is history :)
Thanks for the passion, dear linux community!

jehada...@gmail.com

未读,
2012年8月22日 09:26:162012/8/22
收件人
On Monday, August 26, 1991 9:12:08 AM UTC+3, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Awesome... u changed the world i would like to be a shortcut of u because i wanna to be big programmer like u ^_^

milind....@gmail.com

未读,
2012年8月24日 16:28:592012/8/24
收件人
I can't believe I didn't know this existed. Reading about the humble beginnings of the one system I tried to crash all my Engineering years is spiritual in a way.

Thanks Linus. What you have done is truly in every sense of the word, historical.

-Milind

linuxm...@gmail.com

未读,
2012年8月25日 01:42:042012/8/25
收件人
Happy 21st Birthday Linux ....

ideo...@gmail.com

未读,
2012年8月25日 16:42:572012/8/25
收件人
wow,,
its amazing,,
i don't believe that i can be a part of greatest conversation about Linux,,

Thanks a lot Sir Linus,
you make something different,,

nau....@gmail.com

未读,
2012年8月27日 07:53:472012/8/27
收件人
Linus Benedict Torvalds you changed the world .

Linux now in pc,servers and now in Andriod.

You are the most generous person in the world.

We all owe you.


Br,
Nauman Ahmad Khan
Mobilink NOC
Pakistan

skyzo...@gmail.com

未读,
2012年8月28日 03:36:572012/8/28
收件人
Thank you from france Linus we love you !
lot of peace and happiness to you and your family

tj.abde...@gmail.com

未读,
2012年9月2日 17:37:202012/9/2
收件人
Thank you ever so much for what you did !

remotem...@gmail.com

未读,
2012年9月2日 23:32:482012/9/2
收件人
On Monday, August 26, 1991 11:42:08 AM UTC+5:30, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thanks for your wonderful creation.

Regards,
Karthik.P.R
MySQL DBA

changmin...@gmail.com

未读,
2012年9月6日 10:48:452012/9/6
收件人
在 1991年8月26日星期一UTC+9下午3时12分08秒,Linus Benedict Torvalds写道:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

i have seen [just for fun].
Thank you for the linux so much.
已删除帖子

Venkatesh Gutta

未读,
2012年9月6日 12:31:212012/9/6
收件人
On Monday, August 26, 1991 1:12:08 AM UTC-5, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thank you Linus for the Linux, you both rock!

ale...@hhai.org

未读,
2012年9月8日 06:30:182012/9/8
收件人
I am looking at this more than 20 years later than the birth and I want to say w00t!!!!!!!!!!!!

rock...@gmail.com

未读,
2012年9月11日 17:16:342012/9/11
收件人
What is this Linux thing? Is it still updated? Does it support the Minix file system?

simon...@gmail.com

未读,
2012年9月13日 03:19:212012/9/13
收件人
On Tuesday, September 11, 2012 11:16:34 PM UTC+2, rock...@gmail.com wrote:
> What is this Linux thing? Is it still updated? Does it support the Minix file system?

Good joke !

lex....@gmail.com

未读,
2012年9月16日 17:24:032012/9/16
收件人

> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready.

Rereading this still sends chills down my bones 8) Writing from Linux 3.2.0-24-generic, and thank you!

neoc...@gmail.com

未读,
2012年9月19日 06:37:172012/9/19
收件人
Thanks for creating Linux !
已删除帖子

usti...@gmail.com

未读,
2012年9月20日 07:55:472012/9/20
收件人
It is truly amazing that this post is still around. From this post to running on 88% of all supercomputers. Wow. I wasn't around back then (I was born 7 years after this post) but I still appreciate all you have done to revolutionize the world. Thanks SO much.

mr.fi...@gmail.com

未读,
2012年9月20日 21:02:212012/9/20
收件人
Em segunda-feira, 26 de agosto de 1991 03h12min08s UTC-3, Linus Benedict Torvalds escreveu:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

And here everything started. The beginning of Linux.

dt...@dtek360.net

未读,
2012年9月21日 08:09:362012/9/21
收件人
On Monday, August 26, 1991 2:12:08 AM UTC-4, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

"just a hobby, won't be big and
> professional like gnu"

What a hobby this has turned into. You inspired me to become a developer and I have been a linux user since redhat 2.0 was released. Thanks for your efforts as well as those of K&R.

also...@gmail.com

未读,
2012年9月28日 05:09:202012/9/28
收件人
在 1991年8月26日星期一UTC+8下午2时12分08秒,Linus Benedict Torvalds写道:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

到此一游~

north...@gmail.com

未读,
2012年9月29日 03:22:072012/9/29
收件人
so wonderful!

harmon...@gmail.com

未读,
2012年10月8日 21:51:112012/10/8
收件人
On Tuesday, September 11, 2012 4:16:34 PM UTC-5, rock...@gmail.com wrote:
> What is this Linux thing? Is it still updated? Does it support the Minix file system?

You are kidding, right?

horstsch...@gmail.com

未读,
2012年10月9日 04:22:432012/10/9
收件人
Am Montag, 26. August 1991 14:51:23 UTC+2 schrieb Linus Benedict Torvalds:

> PS. To make things really clear - yes I can run gcc on it, and bash, and
> most of the gnu [bin/file]utilities, but it's not very debugged, and the
> library is really minimal. It doesn't even support floppy-disks yet. It
> won't be ready for distribution for a couple of months. Even then it
> probably won't be able to do much more than minix, and much less in some
> respects. It will be free though (probably under gnu-license or similar).

What?? No floppy support? I´m out!

izaqu...@gmail.com

未读,
2012年10月9日 07:44:222012/10/9
收件人
El lunes, 26 de agosto de 1991 01:12:08 UTC-5, Linus Benedict Torvalds escribió:
Bendiciones y gracias por este aporte a la humanidad
linux lo mejor ....
software libre somos todos.

luccas...@gmail.com

未读,
2012年10月11日 16:29:472012/10/11
收件人
viva o linux \o/
obrigado torvalds pelo que você fez despretensiosamente ajudou muito a humanidade

rayim...@gmail.com

未读,
2012年10月16日 10:39:542012/10/16
收件人
Great job!

King Regards from Spain

Best Gintonic for you :)

zhack...@gmail.com

未读,
2012年10月21日 04:47:282012/10/21
收件人
20 years ago I was playing pacman and tank (old computer games), thinking to myself someday when I grow up I'll create my own computer game. I wasn't really able to gain inspiration in programming until i used Linux, where everything was free and the community is awesome. You've made people's dreams come true. Thanks,man.


On Monday, August 26, 1991 2:12:08 PM UTC+8, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.
2

Silviu Emil

未读,
2012年10月24日 02:43:412012/10/24
收件人
I have faced for the first time a Linux system in 1997 and it was like flying among a lot of options and information comparative to other OSs.

Thank you Linus for creating a platform of freedom and flexibility.

goo...@turbo-electric.com

未读,
2012年10月25日 08:42:562012/10/25
收件人
Without you, Richard and the others, I'd probably be a mechanic or electrician.

So you guys quite literally changed my life.

Thanks mate, now go and walk on water or summat.

thene...@gmail.com

未读,
2012年10月26日 08:19:252012/10/26
收件人
Thank you Linus. We are all grateful.

wzyb...@gmail.com

未读,
2012年10月29日 10:07:532012/10/29
收件人
It is more than 21 years later and I am pretty moved to see this email 21 years ago. After 21 years' development, Linux so popular all over the world.

Thank you, Mr. Torvalds.

hellra...@gmail.com

未读,
2012年11月1日 15:28:252012/11/1
收件人
thank you Mr.Torvalds. Without you all of us who are using linux would blind sheep to microsoft's heresy. From everyone of us to you. I salute you sir.

antib...@gmail.com

未读,
2012年11月10日 19:35:502012/11/10
收件人
Respect you Torvalds!!! Linux - best kernel 4ever! I am complete last kernel for my PC.

chuxi...@gmail.com

未读,
2012年11月19日 16:00:342012/11/19
收件人
On Monday, August 26, 1991 2:12:08 AM UTC-4, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thank you!

jacob...@gmail.com

未读,
2012年11月24日 09:59:122012/11/24
收件人
just another computer nerd chiming in 20 years later to say thanks for everything. Thanks for writing my favorite now operating system.

psilen...@gmail.com

未读,
2012年12月2日 13:59:532012/12/2
收件人
On Monday, August 26, 1991 2:12:08 AM UTC-4, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thank you Linus and the entire Linux team for all you work!

timot...@gmail.com

未读,
2012年12月2日 14:07:072012/12/2
收件人
在 1991年8月25日星期日UTC-7下午11时12分08秒,Linus Benedict Torvalds写道:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Thank you Linus for the Linux!!

rura...@gmail.com

未读,
2012年12月13日 02:20:442012/12/13
收件人
On Monday, August 26, 1991 2:12:08 PM UTC+8, Linus Benedict Torvalds wrote:
Thank you.

Fabian Huerta

未读,
2012年12月13日 05:13:572012/12/13
收件人
El lunes, 26 de agosto de 1991 03:12:08 UTC-3, Linus Benedict Torvalds escribió:
Gracias Linus por haber hecho un sistema operativo maravilloso, tuviste influencia en la vida de muchas personas a traves de tu trabajo.
Gracias a Dios y muchas bendiciones desde Argentina

mic...@yellow-online.nl

未读,
2012年12月13日 05:46:522012/12/13
收件人
Op zondag 2 december 2012 20:07:07 UTC+1 schreef timot...@gmail.com het volgende:
Thank you so much!!

mhk...@gmail.com

未读,
2012年12月16日 05:10:542012/12/16
收件人
Thank you Linus! This OS has changed my life. I'm only 10 years old and yet, I think you are the most awesome person in the world!

mtr...@gmail.com

未读,
2012年12月28日 12:33:572012/12/28
收件人
Thank you Linus. It definitely influenced the lives of the people and industry in a good way.

--Tirumal

samvi...@gmail.com

未读,
2012年12月28日 17:48:582012/12/28
收件人
>(just a hobby, won't be big and
> professional like gnu)

L O L

lieud...@gmail.com

未读,
2012年12月29日 19:39:402012/12/29
收件人
Many years later... Linux is awesome!

Ahmad Ferdaus Abd Razak

未读,
2012年12月29日 21:01:322012/12/29
收件人
I began using Linux (in its many flavours) right around six years ago, and have never looked back since. Now as a teacher, my students use it exclusively for all our multimedia processing tasks. We've even won awards from our FOSS endeavours here! So, thank you very much for your continuing efforts. It chokes me up to see this thread still up and running, long after that historic moment in time.

dannyba...@gmail.com

未读,
2013年1月6日 11:19:352013/1/6
收件人
I'm just a geek who want's to thank you for Linux and all of the work you put in Free Software. You changed the lifes of so many people including mine. It was like a wonder to find this thread and it's cool to find this piece of history, the place where everything started. You really inspired me and i hope i can also help making the world a better place.

windowsli...@yahoo.com

未读,
2013年1月8日 09:13:472013/1/8
收件人

I'd just like to interject for a moment.

What you're referring to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.

Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called "Linux", and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.

There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called "Linux" distributions are really distributions of GNU/Linux.

quatrox

未读,
2013年1月9日 11:19:222013/1/9
收件人
Sure Linux is only a part of GNU/Linux. But Linux came when GNU needed a kernel.
I have been using the GNU/Linux combination for approximately 15 years and to me this combination rocks!

Without Richard Stallman, the GNU collection and the GPL license, lots of free software would most likely not exist and Linux... maybe dead.

So thanks to Linux, GNU and GPL, lots of nice things happened.

phage...@gmail.com

未读,
2013年1月12日 00:10:472013/1/12
收件人
On Sunday, August 25, 1991 11:12:08 PM UTC-7, Linus Benedict Torvalds wrote:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Sounds like it might have a future. Keep at it!

wmhm...@gmail.com

未读,
2013年1月30日 10:37:532013/1/30
收件人
Thank you Linus, truly.

griev...@gmail.com

未读,
2013年2月11日 09:41:032013/2/11
收件人
Il giorno lunedì 26 agosto 1991 08:12:08 UTC+2, Linus Benedict Torvalds ha scritto:
> Hello everybody out there using minix -
>
> I'm doing a (free) operating system (just a hobby, won't be big and
> professional like gnu) for 386(486) AT clones. This has been brewing
> since april, and is starting to get ready. I'd like any feedback on
> things people like/dislike in minix, as my OS resembles it somewhat
> (same physical layout of the file-system (due to practical reasons)
> among other things).
>
> I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
> This implies that I'll get something practical within a few months, and
> I'd like to know what features most people would want. Any suggestions
> are welcome, but I won't promise I'll implement them :-)
>
> Linus (torv...@kruuna.helsinki.fi)
>
> PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
> It is NOT protable (uses 386 task switching etc), and it probably never
> will support anything other than AT-harddisks, as that's all I have :-(.

Good work from the future XD

vop...@gmail.com

未读,
2013年2月20日 06:44:042013/2/20
收件人
Thank you, I like the history =)

slai...@gmail.com

未读,
2013年2月21日 07:04:072013/2/21
收件人
Hi Linus Torvalds.Menya name Gleb, I wanted to ask what year was made Linux OS?
正在加载更多帖子。
0 个新帖子