Time of Update: 2014-10-16
標籤:des blog http io os ar for strong sp Linux 安裝oracle10g 配置dataguard
Time of Update: 2014-10-15
標籤:grub inittab rc.d Linux系統引導過程簡圖650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/4C/74/wKiom1Q93TuDN2OaAAL5Tg2FUyk964.jpg" title="Linux啟動流程.png" alt="wKiom1Q93TuDN2OaAAL5Tg2FUyk964.jpg" />
Time of Update: 2014-10-15
標籤:arch準備磁碟分割建立掛載目錄mkdir /mntmkdir /mnt/bootmkdir /mnt/home掛在根分區和swapMount the root partition on /mnt. After that, create directories for and mount any other partitions (/mnt/boot, /mnt/home, ...) and activate your swap partition if
Time of Update: 2014-10-17
標籤:style color io os 使用 ar strong sp 檔案 一、網路編程之TCP流程服務端:socket---bind---listen---while(1){---acce
Time of Update: 2014-10-15
標籤:style blog http io os 使用 ar 檔案 sp 摘自http://www.cnblogs.com/xiaobaihome/archive/2012/03/20/2407
Time of Update: 2014-10-17
標籤:des style http color io 使用 ar for sp linux核心的三種主要調度策略:1,SCHED_OTHER 分時調度策略,2,SCHED_FIFO即時調度策略(
Time of Update: 2014-10-17
標籤:style blog color io os 使用 ar strong sp 1、setsockopt()作用及簡介socket關閉之後並不會立即收回,而是要經曆一個TIME_WAIT的階
Time of Update: 2014-10-15
標籤:變數 字串 linux變數編輯 一、 首先算是變數的編輯吧: 1. 變數字元匹配刪除輸出。 2. 變數字元固定位移並截出字元。 3.
Time of Update: 2014-10-16
標籤:style io os 使用 sp 檔案 div on 問題 我們的安裝系統: redhat linux as 4
Time of Update: 2014-10-16
標籤:http io os ar sp on cti ad linux pid:getpid 擷取進程IDtid:gettid:取得線程ID,如果是進程,等於
Time of Update: 2014-10-16
標籤:des style blog http color io os ar for ps由於曆史的原因,所以很奇特,有些命令必須加"-",比如:ps A上面的寫法是錯誤的*********
Time of Update: 2014-10-16
標籤:linux 作業系統 bash漏洞 bash bash漏洞修複 bash 是一個為GNU計劃編寫的Unix shell。:Bourne-Again SHell — 這是關於Bourne shell(sh)的一個雙關語(Bourne again / born
Time of Update: 2014-10-15
標籤:電腦的配置 虛擬機器 網路連接 linux 在linux的學習中,需要搭建linux系統內容,而使用VM是一個很好的選擇, VM全稱vmware worksta使用tion方面,模擬度高,那下面介紹如何使用VM建立一台虛擬機器。1、開啟軟體650) this.width=650;"
Time of Update: 2014-10-16
標籤:oracle linux 版本 os (1)lsb_release 命令查看,FSG(Free Standards Group)組織開發的LSB (Linux Standard Base)標準的一個命令,用來查看linux相容性的發行版資訊[[email protected] oracle]# lsb_release -hFSG
Time of Update: 2014-10-16
標籤:http os 檔案 sp linux bs window 安裝 tt linux與linux,linux與windows之間用SSH傳輸檔案linux與linux之間傳送檔案:scp
Time of Update: 2014-10-15
標籤:http io os 使用 ar strong 檔案 sp 資料
Time of Update: 2014-10-15
linux中解決SSH串連慢問題,linuxssh串連 現在串連linux伺服器一般都是使用SSH遠端連線的方式。最近新裝了一台伺服器,發現telnet時速度很快,ping時一切也正常,但SSH串連的時候卻很慢。經過網上資料查詢,大致是有以下幾種原因:1、SERVER的SSHD會去DNS尋找訪問的CLIENT IP的HOSTNAME,如果DNS不可用或者沒有相關記錄,就會消耗一段時間。2、在authentication
Time of Update: 2014-10-17
Zabbix學習之Server/Agent部署,zabbixagent 公司最近需要上一套監控系統,之前的監控系統是 Nagios。我之前也沒接觸過 Nagios,後來就調研了一番。對比了市面上比較火的幾款監控系統,還是感覺 Zabbix 更出色一點。 下面是 Zabbix Server 和 Zabbix Agent 的部署流程。環境: OS Version:CentOS 6.5 x86_64
Time of Update: 2014-10-17
linux知識點拾遺檔案名稱在 Linux 底下,每一個檔案或目錄的檔案名稱最長可以到達 255 的字元,加上完整路徑時,最長可達 4096 個字元;由於 Linux 在文字介面下的一些指令操作關係,一般來說,您在設定 Linux 底下的檔案名稱時, 最好可以避免一些特殊字元比較好!例如底下這些:* ? > < ; & ! [ ] | \ ' " ` ( ) { }因為這些符號在文字介面下,是有特殊意義的!另外,檔案名稱的開頭為小數點『.』時,
Time of Update: 2014-10-15
CentOS下kill命令關閉進程殺死進程最安全的方法是單純使用kill命令,不加修飾符,不帶標誌。首先使用ps -ef命令確定要殺死進程的PID,然後輸入以下命令:# kill –pid注釋:標準的kill命令通常都能達到目的。終止有問題的進程,並把進程的資源釋放給系統。然而,如果進程啟動了子進程,只殺死父進程,子進程仍在運行,因此仍消耗資源。為了防止這些所謂的“殭屍進程”,應確保在殺死父進程之前,先殺死其所有的子進程。確定要殺死進程的PID或PPID#