部落格文章訂閱


貧窮不能等,因為時間久了,你就會貧窮習慣了;
夢想不能等,因為努力晚了,人老就無能為力了;
學習不能等,因為懂得少了,就沒本事夢想成真了;
健康不能等,因為身體垮了,人生的一切就都沒了。


自訂搜尋

找不到想要的文章嗎? 請直接再下面的搜尋框裡輸入要查詢文章內容關鍵字 ,就能夠更快速的取得想要閱讀的問題喔~~謝謝大家的支持與愛護~若有任何建議事項, 歡迎透過留言板留言給我喔!!


  • 你不能決定生命的長度,但可以控制它的寬度;
  • 你不能左右天氣,但可以改變心情;
  • 你不能改變容顏,但可以展現笑容;
  • 你不能控制他人,但可以掌握自己;
  • 你不能預知明天,但可以利用今天;
  • 你不能樣樣勝利,但可以事事盡力。

free counters

目前分類:系統應用 (49)

瀏覽方式: 標題列表 簡短摘要

Edit /etc/default/grub with your favourite editor, e.g. nano:

sudo nano /etc/default/grub

Find this line:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

Change it to:

GRUB_CMDLINE_LINUX_DEFAULT="text"

Update GRUB:

sudo update-grub

For systems that use systemd

This is an additional step for systemd releases, e.g. Ubuntu 15.04, the steps above for grub are still necessary.

文章標籤

Frank 發表在 痞客邦 留言(0) 人氣()

注音符號與漢語拼音對照表

常需要去大陸洽公或已經常駐的朋友,在使用電腦要打字的時候,常會碰到輸入法的問題,若要重新學習最快的方式就是將自己知道的注音符號與漢語拼音做一個對照,例如 ㄅ | B、ㄆ | P 的概念,相信學習一個新的輸入法會很快,Google 也有出一個漢語拼音的輸入法,可以下載來使用。

ReadImage    

資料來源:http://key.chtouch.com/ContentView.aspx?P=229

文章標籤

Frank 發表在 痞客邦 留言(4) 人氣()

如何透過 concat 將查詢結果資料記錄組合成一串 ?

 

原始資料:

name, title

文章標籤

Frank 發表在 痞客邦 留言(0) 人氣()

I have been using git to keep two copies of my project in sync, one is my local box, the other the test server. This is an issue which occurs when I log onto our remote development server using ssh;

git clone me@me.mydevbox.com:/home/chris/myproject Initialized empty Git repository in /tmp/myproject/.git/ Password: bash: git-upload-pack: command not found fatal: The remote end hung up unexpectedly fetch-pack from 'me@me.mydevbox.com:/home/chris/myproject' failed. 

(the file-names have been changed to protect the guilty... !)

Both boxes run Solaris 10 AMD. I have done some digging, if I add --upload-pack=which git-upload-pack the command works, (and proves that $PATH contains the path to 'git-upload-pack' as per the RTFM solution) but this is really annoying, plus 'git push' doesn't work, because I don't think there is a --unpack= option.

Incidentally, all the git commands work fine from my local box, it is the same version of the software (1.5.4.2), installed on the same NFS mount at /usr/local/bin.

Can anybody help?

文章標籤

Frank 發表在 痞客邦 留言(0) 人氣()

Assume your personal repository is in the directory ~/proj. We first create a new clone of the repository and tell git-daemon that it is meant to be public:

$ git clone --bare ~/proj proj.git $ touch proj.git/git-daemon-export-ok 

The resulting directory proj.git contains a "bare" git repository--it is just the contents of the ".git" directory, without any files checked out around it.

Next, copy proj.git to the server where you plan to host the public repository. You can use scp, rsync, or whatever is most convenient.

Exporting a git repository via the git protocol

This is the preferred method.

文章標籤

Frank 發表在 痞客邦 留言(0) 人氣()

MySQL 伺服器版本: 5.0.22-log
問題點:寫入 UTF-8編碼中文字進MySQL DB,變成亂碼


修改: adodb/drivers/adodb-mysql.inc.php
兩個連線function _connect _pconnect

Frank 發表在 痞客邦 留言(0) 人氣()

CentOS 5 的 RPMforge

預設的 RPMforge 軟件庫並不會取代任何 CentOS 的基本套件。過往有些套件的確會這樣做,但它們現在已收錄在一個獨立(rpmforge-extras)、預設被停用的軟件庫。

你可以在 http://packages.sw.be/ 取得所有 RPMforge 套件的清單。

下載 rpmforge-release 這個套件。請從下面兩個連結中選取一個與你的架構配合的連結。假若你不清楚應選用哪一個,你可以用 uname -i 這個指令來查詢你的架構。

Frank 發表在 痞客邦 留言(0) 人氣()

有一堆 thumb_xxxxxxxx.jpg/gif 的圖檔 ,要通通去除 thumb_ 字樣, 想得到的就是一個一個改,  或寫一支 script 批次改

這是很笨的方法 ,

透過 find, sed, xargs, mv 及 管線 | 搭配, 一行指令就解決, 如以下指令.

find . -name 'thumb_*' | sed -e p -e 's/thumb_//' | xargs -n2 mv 

未加上 xargs -n2 mv 指令時, 會輸出

Frank 發表在 痞客邦 留言(0) 人氣()

用sudo时提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的用户名,也就是你的用户名没有权限使用sudo,我们只要修改一下/etc/sudoers文件就行了。下面是修改方 法:

1)进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。(当然,你也可以直接用root用)
2)添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。
3)编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",输入"i"进入编辑模式,找到这一 行:"root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL"(这里的xxx是你的用户名),然后保存(就是先按一 下Esc键,然后输入":wq")退出。

Frank 發表在 痞客邦 留言(0) 人氣()

:vs 是左右切  可用 ctrl+w+< 和 ctrl+w+> 來移動視窗大小

:sp 是上下切  可用 ctrl+w++ 和 ctrl+w+- 來移動視窗大小

:g/被替代的字串/s//新字串/g

用「新字串」取代「被替代的字串」

ctrl+w+= : 平均視窗

Frank 發表在 痞客邦 留言(0) 人氣()

若原本使用 VMware  運行虛擬平台 ,因為特殊因素 需要轉換到 Virtual Box 卻又不想重建環境 時

便需要將 VMware Disk 轉換成 Virtual Box Disk

該如何做 ?

OS: Ubuntu Linux (筆者用的是 10.10)

安裝 qemu and virtualbox-ose 套件

Frank 發表在 痞客邦 留言(0) 人氣()

tftp is Multi-threaded TFTP server implementing all options (option extension and multicast) as specified in RFC1350, RFC2090, RFC2347, RFC2348 and RFC2349. Atftpd also supports multicast protocol known as mtftp, defined in the PXE specification. The server supports being started from inetd as well as in daemon mode using init scripts.

Install atftp Server in Ubuntu

sudo aptitude install atftpd

Frank 發表在 痞客邦 留言(0) 人氣()

From time to time some people come up with questions on how to advertise a different DNS server or router ip via DHCP.


First prepare the dnsmasq configuration:

Code:

uci add_list dhcp.lan.dhcp_option="3,192.168.200.3"
uci add_list dhcp.lan.dhcp_option="6,192.168.200.4,192.168.200.5"
uci commit dhcp

Frank 發表在 痞客邦 留言(0) 人氣()

最近剛好下載了一些不錯的電子書,不過在學妹的電腦裡面缺無法閱讀:

出現了:網頁無法開啟 的訊息

據說原因是因為微軟修正了html的安全性,所以導致無法正常開啟chm附檔名的檔案,

解決方法很多,列下來給大家參考:

Frank 發表在 痞客邦 留言(0) 人氣()

This is very helpfull to backup you cd and dvd into iso images:

To make an ISO from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it. (ubuntu automount so you need to unmount, that's quite easy, just choose the option unmount from the shell).

Frank 發表在 痞客邦 留言(0) 人氣()

Compile all C files with your usual options plus -fPIC. This produces
position-independent code needed by shared object files.

Link the resulting .o files with a command like
   gcc *.o -shared -o file.so [-l<libraries>]


Frank 發表在 痞客邦 留言(0) 人氣()

〔記者王珮華/台北報導〕資安業者近期觀察新一波木馬程式攻擊,發現名為Troj_malware.vtg的木馬,會竄改使用者桌面捷徑,只要使用者點下這些捷徑,就會連到中國知名網站,如百度、淘寶等,推測木馬的作者可能是對岸駭客。資安業者建議,透過修改登錄檔,可解決桌面捷徑被綁架的問題。

趨勢科技表示,最近發現一隻名為Troj_malware.vtg的變種木馬程式,一旦網友瀏覽帶有此木馬程式的網頁,會跳出視窗詢問是否要執行某些程式,不論網友接受與否,此惡意程式將自動執行,讓使用者的檔案捷徑失效,點選任何捷徑都會被連到某些中國知名網站如百度、淘寶等,捷徑形同綁架。 

趨勢科技資深技術顧問簡勝財指出,該木馬目前在中國與台灣都有發現,由於木馬程式可能被駭客植入任何網站,因此無法得知瀏覽哪些網站會中招。不過,從木馬執行時,會跳出簡體中文視窗來看,這隻木馬作者有很大機會是對岸人士,也推測網友瀏覽中國網站時,遭感染的機會比較大,請網友特別小心。

簡勝財說,目前觀察到被感染的檔案捷徑將無法自桌面直接修復,須經手動於系統中修復,造成網友使用電腦的不便,至於遭感染的電腦是否會有其他風險,目前還沒發現,依照駭客行為模式,可能是在測試某些更具威脅性的惡意工具。簡勝財提醒,由於此隻木馬程式變種速度快且多,網友最好勿輕易瀏覽不明網站。

Frank 發表在 痞客邦 留言(0) 人氣()

您可以使用grep (「global regular expression print」)命令在檔案中搜尋文字格式,或顯示包含特定文字格式的檔案名稱。當您想在檔案或目錄中尋找資訊時,這個命令就極為有用。grep命令會檢視一或多個檔案中的每一行,以尋找與特定格式相符合的字串。當它找到符合的字串時,會顯示該串文字所在的那一行。

在檔案中搜尋字串

假設您有一份名為mailist的郵遞清單,內容如下:

Frank 發表在 痞客邦 留言(0) 人氣()

在這邊我們利用 Wireshark 跟 Tcpdump 兩種方式來抓封包,觀看問題


法1: 使用 Wireshark的文字版 tshark

Frank 發表在 痞客邦 留言(0) 人氣()

find 指令介紹
find 是一個相當強大的搜尋工具,本身提供了相當多的參數選項能夠精準的搜尋到所需要的檔案目錄,並支援格式化輸出所搜尋到的檔案目錄。
由於 find 本身是採行即時搜尋整個檔案系統的方式,因此搜尋上需要耗費較多時間,磁碟 IO 部分也會比較繁重。
find 程式執行完成後,若是有尋找到指定條件的檔案,返回值為 0,否則為 1。

Frank 發表在 痞客邦 留言(0) 人氣()

1 23