原创 sas

data hs; do x=0 to 5 by 0.1; y=x*sin(2*x); output; end; proc gplot data=hs; plot y*x; symbol i=join v=star; run;

原创 我的友情鏈接

51CTO博客開發

原创 zuoye

data a b; input group $ age @@; if age<20 then output a; cards;  x 23 y 10 x 7 y 22 x 8 y 4  x 21 y 12 x 9 y 22 x 6 y

原创 關於Ubuntu下apt的一些用法及和yum的比較

 Fedora和Red Hat有yum安裝軟件,Ubuntu有apt工具。 apt簡單的來說,就是給Ubuntu安裝軟件的一種命令方式。 一、apt的相關文件 /etc/apt/sources.list 設置軟件包的獲取來源 /

原创 sas第4次作業

data a; i=1; sum=0; do i=1 to 999 by 1; if mod(i,2)=1 then sum+i; end; put sum; run; data _null_; x=1; do i=1

原创 centos下squid代理

在win7下在Vmware下安裝兩臺centos服務器,一臺裝有squid(squid服務器),另一臺做web服務器(下面簡稱web服務器) 普通代理:將win7作爲LAN下PC機,通過squid訪問web服務器。 下面先做IP配置: sq

原创 sas

data hs; do x=0 to 5 by 0.1; y=x*sin(2*x); output; end; proc gplot data=hs; plot y*x; symbol i=join v=star; run;

原创 關於Ubuntu下apt的一些用法及和yum的比較

 Fedora和Red Hat有yum安裝軟件,Ubuntu有apt工具。 apt簡單的來說,就是給Ubuntu安裝軟件的一種命令方式。 一、apt的相關文件 /etc/apt/sources.list 設置軟件包的獲取來源 /

原创 CentOS上FTP的安裝和相關配置

1.      查看是否安裝vsftp   PS:這個圖是裝好後截得  2.      yum安裝vsftp     3.基於虛擬用戶的FTP架設    所謂虛擬用戶就是沒有使用真實的帳戶,只是通過某種手段達到映射帳戶和設置權限的目的

原创 我的友情鏈接

51CTO博客開發

原创 zuoye

data a b; input group $ age @@; if age<20 then output a; cards;  x 23 y 10 x 7 y 22 x 8 y 4  x 21 y 12 x 9 y 22 x 6 y

原创 centos5.5下LAMP搭建

  1、安裝libxml2最新庫文件   # ./configure --prefix=/usr/local/libxml2 # make # make install 注意:安裝完這個部分時,應該要檢查是否已經安裝了

原创 centos下源碼包安裝Apache

  #./configure \ //執行當前目錄下軟件自代的配置命令 > --prefix=/usr/local/apache2 \ //指定Apache軟件安裝的位置 > --sysconfdir=/etc/ht

原创 Centos6.2下源碼包搭建LNMP

  Nginx是一個小巧而高效的Linux下的Web服務器軟件,是由 Igor Sysoev 爲俄羅斯訪問量第二的 Rambler 站點開發的,已經在一些俄羅斯的大型網站上運行多年,相當的穩定。 用Nginx搭建web服務器,比Apache

原创 gvim 命令

set sw=4 # shiftwidth=4 使用每層縮進的空格數 set ts=4 # tabstop=4 編輯時一個TAB字符佔多少個空格的位置 set et #將輸入的TAB自動展開成空格 set nu #顯示行號 syn