archLinux

小田田老師網路系統程式設計使用的archLinux心得筆記

使用Intel內建顯示卡跑Xwindow並加入電視卡支援

之前我們在電腦教室或是使用vmware跑archLinux時,設定Xwindow時我們是用vesa這支古老的相容顯示卡驅動程式,但是這對於一些像播放影片或是3D效果而言是相當不夠的。
 

加上我的期末專題打算在archLinux底下裝上Compro T300這張DVB-T/類比雙用電視卡作為streaming輸出,這也得先在Xwindow底下先做測試,確定能夠收看才行;因此我們必需先讓framebuffer功能得到支援。

Continue reading

在archLinux下安裝ssh

#pacman -S openssh

安裝openssh

#vi /etc/hosts.allow

sshd:all ←在/etc/hosts.allow中加入這行,不然會連不進sshd(或是說要改為all:all)

#vi /etc/ssh/sshd_config

Protocol 2 ←加入這行

#/etc/rc.d/sshd start

Ok,sshd就run起來了,這時您可以從遠端利用putty或是一些ssh client登入這部機器了

 

要每次開機後將sshd跑起來,在/etc/rc.conf中這行

DAEMONS=(syslog-ng !hotplug !pcmcia network netfs crond)

加入sshd

DAEMONS=(syslog-ng sshd !hotplug !pcmcia network netfs crond)
 

Pages:  1 2