360doc--昵稱40672085的文章
http://www.ahfyzs.com/rssperson/40672085.aspx
360doc (http://www.ahfyzs.com)
zh-cn
360doc--個(gè)人圖書館
- 
ORA——00845報(bào)錯(cuò)解決辦法
http://www.ahfyzs.com/content/17/0315/14/40672085_637067137.shtml
2017/3/15 14:09:35
ORA——00845報(bào)錯(cuò)解決辦法今天晚上新裝一臺(tái)Oracle 11g的數(shù)據(jù)庫(kù),打算將SGA設(shè)大一點(diǎn),知道 11g 中有一個(gè)新特新 MEMORY_TARGET,于是嘗一下鮮,誰知報(bào)了個(gè) ORA-00845,報(bào)錯(cuò)比較容易迷惑人,不借助Google真得想半天:Starting with Oracle Database 11g, the Automatic Memory Management feature requires more shared memory (/dev/shm)and file descriptors.[oracle@FWDB FWDB]$ df -h | grep shm.tmpfs 2.0G 0 2.0G 0% /dev/shm. 
- 
CentOS6.3添加nginx系統(tǒng)服務(wù)詳細(xì)說明
http://www.ahfyzs.com/content/17/0228/16/40672085_632716505.shtml
2017/2/28 16:18:00
reload) echo -n ''Reloading $DESC configuration...'' d_reload echo ''reloaded.'' ;;restart) echo -n ''Restarting $DESC: $NAME'' d_stop # Sleep for two seconds before starting again, this should give the # Nginx daemon some time to perform a graceful stop. sleep 2 d_start echo ''.'' ;;chmod +x /etc/init.d/nginxchkconfig --add nginxchkconfig --level 2345 nginx onchkconfig --list nginx相關(guān) nginx 命令: 
- 
cmake命令 安裝、用法簡(jiǎn)介
http://www.ahfyzs.com/content/17/0227/15/40672085_632427603.shtml
2017/2/27 15:36:08
了解cmake的基本原理并在系統(tǒng)中安好cmake后,我們就可以用cmake來演示那個(gè)最經(jīng)典的”Hello, world!”了。3、調(diào)用CMake命令為eclipse生成項(xiàng)目文件 點(diǎn)擊(此處)折疊或打開mkdir -p build/releasemkdir -p build/debugcmake -E chdir build/release cmake -G ''Eclipse CDT4 - Unix Makefiles'' -DCMAKE_BUILD_TYPE=release ../../cmake -E chdir build/debug cmake -G ''Eclipse CDT4 - Unix Makefiles'' -DCMAKE_BUILD_TYPE=debug ../../ 
- 
01--Linux下編程工具的使用——make工具
http://www.ahfyzs.com/content/14/0304/10/16046581_357566914.shtml
2017/2/27 14:58:13
如果命令行中沒有給出目標(biāo)的話,make命令會(huì)設(shè)法構(gòu)建makefile中的第一個(gè)目標(biāo)。默認(rèn)時(shí),make程序只更新makefile中的第一個(gè)目標(biāo),如果希望更新多個(gè)目標(biāo)文件的話,可以使用一個(gè)特殊的目標(biāo)all,假如我們想在一個(gè)makefile中更新main和hello這兩個(gè)程序文件的話,可以加入下列語句達(dá)到這個(gè)目的:Make命令將makefile中的第一個(gè)目標(biāo)即main作為要構(gòu)建的文件,所以它會(huì)尋找構(gòu)建該文件所需要的其他模塊,并判斷出必須使用一個(gè)稱為main.c的文件。