Time of Update: 2014-05-31
標籤:c style class code java http 樹莓派是神奇的機器,CPU和記憶體都少的可憐,但體積小功耗低,在上面搞些動搞些西其實也挺有意思,挺好玩的。裝的是pidara,基本服務沒有精簡多少,先cat一下CPU和RAM。 [[email&
Time of Update: 2014-05-31
標籤:c style class blog code java Select#include <sys/time.h>#include <sys/types.h>#include <sys/unistd.h>int select (int n, fd_set&
Time of Update: 2014-05-31
標籤:c tar a get 2014 linux Binutils-2.24 - Pass 1解壓縮tar –jxvf binutils-2.24.tar.bz2進入代碼目錄cd tinutils-2.24建立編譯目錄mkdir –v ../binutils-build切換到編譯目錄cd ..
Time of Update: 2014-05-31
標籤:des c style class blog code 由於項目的需求,我這邊ubuntu下常常需要SSH訪問另外一台MACOS。每次輸入密碼有點煩,就想到RSA公開金鑰和密鑰驗證的方法。像所有教程上講的一樣,本機執行[email protected]:~$
Time of Update: 2014-05-31
標籤:c style http a com strong 參考:Linux
Time of Update: 2014-05-31
標籤:c style tar a get com 詳細錯誤資訊為: Error in invoking target ‘install’ of
Time of Update: 2014-05-31
標籤:c style class blog code java 本文轉載自:http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858470.html簡介awk是一個強大的文本分析工具,相對於grep的尋找,sed的編輯,awk在其對資料分析
Time of Update: 2014-05-31
標籤:c a int strong 檔案 使用 3.1Linux與硬體的搭配:3.1.1 認識電腦的硬體設定:3.1.2
Time of Update: 2014-05-31
標籤:c class java tar http a Linux系統下JDK安裝配置1. 從oracle網站下載需要的JDK軟體 :jdk-6u39-linux-i586.binhttp://www.oracle.com/technetwork/java/javase/archive-13921
Time of Update: 2014-05-31
標籤:c style tar http a color 我們都知道,自從svn出道以來,很多人都預言,cvs將會被其取代。就如同他們預言maven要取代ant一樣。可見,svn的流行。在Windows中,最常用到的開源免費的svn用戶端就是TortoiseSVN(也就是我們看到的小烏龜)。在Wi
Time of Update: 2014-05-31
標籤:c tar a com 檔案 使用 Linux打包命令tar -zcvf /home/xahot.tar.gz /xahottar -zcvf 打包後產生的檔案名稱全路徑 要打包的目錄例子:把/xahot檔案夾打包後產生一個/home/xahot.tar.gz的檔案。# tar -xf
Time of Update: 2014-05-31
標籤:c class blog code java a 原文:http://www.cnblogs.com/hnrainll/archive/2011/07/23/2114854.html1、簡介在Linux中,並不存在exec()函數,exec指的是一組函數,一共有6個,分別是:#includ
Time of Update: 2014-05-31
標籤:c blog a http width com mac80211核心模組實現了對802.11協議的處理過程。其中mlme.c檔案中的內容實現了對Deauth管理幀的處理。考慮到Deauth攻擊至今仍沒有好的防禦方法(據說有802.11w,可是我一直沒見到應用他的裝置,為什嗎?求解),air
Time of Update: 2014-05-31
標籤:c style a color strong 檔案 端午節放假了,閑來無事,學學一些Linux的基本的命令,掃一下盲。linux下的以.開頭的檔案都是隱藏檔案。1.啟動init -0 、reboot2.切換命令 cd (./代表當前位置
Time of Update: 2014-05-31
就一般生產系統而已,作業系統層面都要進行備份,而最常見的作業系統備份方式之一就是做鏡像(mirror),而實踐過程中,往往是把rootvg這個卷組做鏡像操作。查看rootvg是否已經進行鏡像方法: 1) lsvg –o 2)lsvg –l rootvg#
Time of Update: 2014-05-31
#!/bin/bash## vm test install script## create by xk## data 2013-04-25##SOFTPATH=/home/toolsPROGRAMPATH=/export/servers#Usageshow_usage() {echo "$0 {php|nginx|libmcrypt|all}"}if [ $# -ne ]; thenshow_usagefi#check dictif [ !-d ${PEOGRAMPATH}
Time of Update: 2014-05-31
安裝vncserver出現如下錯誤: vncext: VNC extension running! vncext: Listening for VNC connections on all interface(s), port 5901 vncext: created VNC server for screen 0 Could not init font path element /usr/share/X11/fonts/misc, removing from
Time of Update: 2014-05-31
1、官網下載jdk-7u45-linux-x64.tar.gz:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html2、tar解壓:tar -xzvf jdk-7u45-linux-x64.tar.gz一般安裝在/usr/local/目錄下3、配置環境變數:<span style="white-space:pre"></span>$ vi
Time of Update: 2014-05-31
1、檔案描述符Linux作業系統中,幾乎所有的裝置都被抽象成為裝置檔案。因此,當我們想對裝置進行操作的時候可以直接去操作其相應的裝置檔案。裝置檔案即是檔案,要想對檔案進行操作,無非就是:開啟檔案、關閉檔案、寫入資料、讀出資料等,它們分別對應的函數有open(),close(),write(),read(),就以其中的open()函數做一個分析。open函數的作用是開啟一個檔案。(1)它的定義:int open( const char * pathname, int flags);
Time of Update: 2014-05-31
[ tar詳解: ]-c: 建立壓縮檔案-x:解壓-t:查看內容-r:向壓縮歸檔檔案末尾追加檔案-u:更新原壓縮包中的檔案這五個是獨立的命令,壓縮解壓都要用到其中一個,可以和別的命令連用但只能用其中一個。下面的參數是根據需要在壓縮或解壓檔案時可選的:-z:有gzip屬性的-j:有bz2屬性的-Z:有compress屬性的-v:顯示所有過程-O:將檔案解開到標準輸出下面的參數-f是必須的-f: 使用檔案名字,切記,這個參數是最後一個參數,後面只能接檔案名。tar -cf all.tar