為什麼/dev下有那麼多tty*

歡迎提問 debian desktop 相關問題,何謂 desktop ? 舉凡您日常生活會用到的部份,如上網 ( www 、 bbs ..) 、程式設計、繪圖...等等。 通常以 X Window 環境底下問題為主。

為什麼/dev下有那麼多tty*

文章THQ » 週三 11月 21, 2007 4:10 pm

ls -al /dev/tty
tty tty13 tty19 tty24 tty3 tty35 tty40 tty46 tty51 tty57 tty62 ttyS1
tty0 tty14 tty2 tty25 tty30 tty36 tty41 tty47 tty52 tty58 tty63 ttyS2
tty1 tty15 tty20 tty26 tty31 tty37 tty42 tty48 tty53 tty59 tty7 ttyS3
tty10 tty16 tty21 tty27 tty32 tty38 tty43 tty49 tty54 tty6 tty8
tty11 tty17 tty22 tty28 tty33 tty39 tty44 tty5 tty55 tty60 tty9
tty12 tty18 tty23 tty29 tty34 tty4 tty45 tty50 tty56 tty61 ttyS0
這麼多的tty,有必要嗎
thx
THQ
活潑的高中生
活潑的高中生
 
文章: 492
註冊時間: 週二 1月 04, 2005 9:11 pm

文章70630515 » 週五 11月 23, 2007 12:59 pm

正所謂養兵千日,用在一時....
我不自私,因為我開放(Open) , 我很快樂,因為我分享(Share)–Open Source
頭像
70630515
懵懂的國中生
懵懂的國中生
 
文章: 160
註冊時間: 週一 3月 13, 2006 9:15 am
來自: 北鼻存錢筒

文章FourDollars » 週三 11月 28, 2007 11:32 am

這種沒意義的回答就別回了吧~
--
樓上的高義... =.=
FourDollars
懵懂的國中生
懵懂的國中生
 
文章: 188
註冊時間: 週五 8月 01, 2003 12:47 am

文章70630515 » 週四 11月 29, 2007 7:14 am

一 一||
我不自私,因為我開放(Open) , 我很快樂,因為我分享(Share)–Open Source
頭像
70630515
懵懂的國中生
懵懂的國中生
 
文章: 160
註冊時間: 週一 3月 13, 2006 9:15 am
來自: 北鼻存錢筒

文章claudwu » 週六 12月 01, 2007 2:06 am

我覺得這回答挺好的啊... XD
真是的養兵千日用在一時

系統先準備好一堆, 這樣要用才能用...

不過這樣是不是說如果上面的tty用光了就不能登入了?
claudwu
懵懂的國中生
懵懂的國中生
 
文章: 156
註冊時間: 週二 3月 29, 2005 5:33 pm

文章訪客 » 週六 12月 01, 2007 10:42 am

claudwu 寫:不過這樣是不是說如果上面的tty用光了就不能登入了?

這年頭都用 virtual tty 啦,很難用完吧。
訪客
 

文章blc » 週六 12月 01, 2007 11:40 am

"養兵千日"的回答很有意義呀,說明那些tty是備用的。
當然這一方面也是演化的殘跡,以前哪有什麼virtual tty的。
blc
 

文章FourDollars » 週六 12月 01, 2007 4:02 pm

代碼: 選擇全部
In some operating systems such as UnixWare, Linux and BSD, a virtual console (VC, sometimes virtual terminal, VT) is a conceptual combination of the keyboard and the display for a user interface. The concrete combination is the system console of the computer, where the user can switch between the virtual consoles to access multiple unrelated user interfaces. Usually in Linux, the first six virtual consoles provide a text terminal with a login prompt to a unix shell. The graphical X Window System starts in the seventh virtual console.

stripped from http://en.wikipedia.org/wiki/Virtual_console
代碼: 選擇全部
  4 char        TTY devices
                  0 = /dev/tty0         Current virtual console

                  1 = /dev/tty1         First virtual console
                    ...
                 63 = /dev/tty63        63rd virtual console
                 64 = /dev/ttyS0        First UART serial port
                    ...
                255 = /dev/ttyS191      192nd UART serial port

                UART serial ports refer to 8250/16450/16550 series devices.

                Older versions of the Linux kernel used this major
                number for BSD PTY devices.  As of Linux 2.1.115, this
                is no longer supported.  Use major numbers 2 and 3.

stripped from linux kernel Documentation devices.txt

為什麼有這麼多的 tty0~tty63 因為 linux kernel 預設就是給這麼多
(注意看上表 minor number 的部份到了 64 以後就給 ttyS0~ttyS191 了)

為什麼有 ttyS0~ttyS3 因為硬體晶片就是支援四個 serial ports
(不過實際的硬體接口可能連一個都沒有)

只不過一般的 Linux Distribution 都只開 /dev/tty[1-6] 給我們使用
而 X Window System 通常再多使用一個 /dev/tty7
(可以看 /etc/inittab 這個檔案, 搜尋 tty[1-7] 的字串)

另外 /dev/tty 與 /dev/tty0 這兩個 device node 有其它特別的用途
--
這樣的回答有意義多了吧~ 有錯歡迎請指正~
FourDollars
懵懂的國中生
懵懂的國中生
 
文章: 188
註冊時間: 週五 8月 01, 2003 12:47 am

文章blc » 週六 12月 01, 2007 9:23 pm

to FourDollars:
如果你第一個回應就是這篇的話,那這整個討論串就超有意義的。
blc
 

文章FourDollars » 週六 12月 01, 2007 10:58 pm

blc 寫:to FourDollars:
如果你第一個回應就是這篇的話,那這整個討論串就超有意義的。

感謝您的指教~
FourDollars
懵懂的國中生
懵懂的國中生
 
文章: 188
註冊時間: 週五 8月 01, 2003 12:47 am

文章70630515 » 週日 12月 02, 2007 6:58 am

我....嗚 :crying:

Orz
我不自私,因為我開放(Open) , 我很快樂,因為我分享(Share)–Open Source
頭像
70630515
懵懂的國中生
懵懂的國中生
 
文章: 160
註冊時間: 週一 3月 13, 2006 9:15 am
來自: 北鼻存錢筒

文章blc » 週日 12月 02, 2007 11:14 am

[/quote]
感謝您的指教~[/quote]

也感謝您沒有戰起來。
這一串的火藥味有點重,
我很怕戰的…

話說那個觀看數破700了,大家都拉好位子買好雞排了嗎? XD
blc
 

文章70630515 » 週一 12月 03, 2007 10:59 am

觀看的人數出乎意料的多了一點@@
我不自私,因為我開放(Open) , 我很快樂,因為我分享(Share)–Open Source
頭像
70630515
懵懂的國中生
懵懂的國中生
 
文章: 160
註冊時間: 週一 3月 13, 2006 9:15 am
來自: 北鼻存錢筒


回到 debian desktop

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客

cron