Time of Update: 2014-12-26
針對雙系統如何安全刪除Linux? 有些剛接觸Linux的朋友,為了學習的方便,安裝了雙系統,讓Windows和Linux共用,哪麼如何安全的去刪除Linux系統呢? 下面我們來看如何的操作: 步驟1:dos下使用fdisk /mbr或者用win2000/xp的光碟啟動進入故障修復主控台,使用命令fixmbr 步驟2:格式化linux分區為windows分區即可
Time of Update: 2014-12-26
linux將一個分區格式化為ext3日誌檔案系統,我們可以使用mkfs命令來操作: mkfs -j /dev/xxxx Usage: mkfs [-V] [-t fstype] [fs-options] device [size] 示例: [r oot@localhost software]#mkfs -j /dev/sda5
Time of Update: 2014-12-26
Linux中如何配置讓哪些服務啟動? 1 運行ntsysv或者setup命令,進入功能表進行配置; [root@localhost software]# ntsysv [root@localhost software]# setup
Time of Update: 2014-12-26
今天我們來介紹linux中將一個檔裡的內容123改為456的示例,此方法應用的比較多,特別是針對檔中內容的修改,下面我們來詳細的瞭解兩種修改方法: 修改方法1 #sed 's/123/456/g' file.txt > file.txt.new #mv -f file.txt.new file.txt 示例: [root@localhost conf]# sed 's/123/45...
Time of Update: 2014-12-26
Linux編譯內核,內核源碼在哪裡? 1、一般在發行版本的盤裡都有,比如 RedHat,一般在第二、第三張上 2.4 內核的叫 kernel-source-2.4.xx-xx.rpm2.6 內核的叫 kernel-devel-2.6.xx-xx.rpm 2、 去www.kernel.org 下載一份你喜歡的內核版本,重新編譯安裝也可以。
Time of Update: 2014-12-26
Linux中如何卸載套裝軟體時得知具體包名? 刪除套裝軟體的命令是rpm -e XXX 如果不知道這個XXX的確切拼寫時,可以用rpm -qa 示例:[root@localhost k3b-1.0.5]# rpm -qa gccgcc-4.4.7-3.el6.i686 查詢所有安裝的套裝軟體或者用 rpm -qa | grep xxxx 查詢出名字 示例:[root@localhost k3b-1...
Time of Update: 2014-12-26
Linux中如何運行多個X視窗? startx預設以display :0.0起第一個X,通過傳遞參數給Xserver可以起多個X: # startx -- :1.0# startx -- :2.0... 然後用Ctrl-Alt-F7/F8... 切換
Time of Update: 2014-12-26
如果沒有重新分區,拿linux開機磁片(或者第一張安裝光碟)引導,進入rescue模式。 首先找到原來的/分區mount在什麼地方。 redhat通常是/mnt/sysimage. 執行"chroot /mnt/sysimage". 如果是grub,輸入grub-install /dev/hd*(根據實際情況); 如果是lilo,輸入lilo -v,然後重新開機。 如果分區有...
Time of Update: 2014-12-26
Linux中在目前的目錄下解壓rpm檔? cat kernel-ntfs-2.4.20-8.i686.rpm | rpm2cpio | pax -r 示例如下: [root@localhost 6-18]# cat kernel-ntfs-2.4.20-8.i686.rpm | rpm2cpio | pax -r[root@localhost 6-18]# ll總用量 44-rw-r--r-...
Time of Update: 2014-12-26
Linux中讓cron中的任務不回饋資訊應該如何操作呢? 本例為5分鐘檢查一次郵件 #vi /etc/cron 0-59/5 * * * * /usr/local/bin/fetchmail > /dev/HTTP://www.aliyun.com/zixun/aggregation/ 19527.html">null 2>&1
Time of Update: 2014-12-26
linux中如何將grub安裝到mbr? 我們可以通過以下操作來實現: grub> root (hd0, 0) grub> setup (hd0) 也可以用grub-install /dev/hda來安裝grub
Time of Update: 2014-12-26
如何刪除Linux目錄中含輸入關鍵字的檔? 我們可以借助find命令來實現: find /mnt/ebook/ -type f -exec grep "在此輸入關鍵字" {} \; -print -exec rm {} \; 示例: find /data0/software/ -type f -exec grep "rlin" {} \; -prin...
Time of Update: 2014-12-26
如何讓linux連續執行幾個命令,出錯進停止? 我們可以通過&&連接子來實現: command1 && command2 && command3 示例: [root@localhost usr]# ls && pwdbin&a mp;HTTP://www.aliyun.com/zixun/aggregation/37954.htm...
Time of Update: 2014-12-26
Linux中grep不顯示本身進程? #ps -aux | grep HTTPd | grep -v grep grep -v grep可以取消顯示你所執行的grep本身這個進程,-v參數是不顯示所列出的進程名
Time of Update: 2014-12-26
我們在編輯完/etc/inittab檔後如何不啟動伺服器而直接生效呢? [root@localhost usr]# vi /etc/inittab # inittab is only used by upstart for the default runlevel.## ADDING OTHER CONFIGURA TION HERE WILL HAVE NO EFFECT ON YOUR ...
Time of Update: 2014-12-26
Linux在命令列下列出本機IP位址,而不是得到網卡資訊 ifconfig | grep "inet" | cut -c 0-36 | sed -e 's/[a-zA-Z: ]//g'hostHTTP://www.aliyun.com/zixun/aggregation/11696.html">name - i
Time of Update: 2014-12-26
Linux中讓一個程式在退出登陸後繼續運行? 我們可以使用nohup命令及disown命令來使用。 nohup命令 用法:nohup 命令 [參數]... 或:nohup 選項忽略掛起信號運行指定的命令。 &HTTP://www.aliyun.com/zixun/aggregation/37954.html">nbsp; ...
Time of Update: 2014-12-26
Linux中如何在終端下抓屏? 我們可以通過cat命令來實現, 用法:cat [選項]... [檔]... 將[檔]或標準輸入組合輸出到標準輸出。 &HTTP://www.aliyun.com/zixun/aggregation/37954.html">nbsp; -A, --show-all &...
Time of Update: 2014-12-26
使用記憶體作linux下的/tmp資料夾? 在/etc/fstab中加入一行: none /tmp tmpfs default 0 0 或者在/etc/rc.local中加入 mount tmpfs /tmp -t tmpfs -o size=128m 注:size=128m 表示/tm p最大能用128m 不管哪種方式,只要linux重啟,/tmp下的檔全部消失
Time of Update: 2014-12-26
如何查看Linux系統中分區的標籤資訊? 我們可以通過e2label命令來實現: 用法: e2label device [新標籤] 示例: e2label /dev/hdxn where x=a,b,c,d....; n=1,2,3... [root@localhost ~]# e2label /dev/sda1本地磁片