lnmp.org
V1.3
版本
有一個方法Xen_Hwcap_Setting
,我看把設定檔libc6-xen.conf
的hwcap 1 nosegneg
改為了hwcap 0 nosegneg
,這樣有什麼作用嗎?程式碼如下:
<code>Xen_Hwcap_Setting() { if [ -s /etc/ld.so.conf.d/libc6-xen.conf ]; then sed -i 's/hwcap 1 nosegneg/hwcap 0 nosegneg/g' /etc/ld.so.conf.d/libc6-xen.conf fi }</code>
到網上搜了一下,但不是特別明白,期待大家能給我解答,謝謝
============== 補充下 ===========
可能我問題提的有點問題,我更想知道的是,這個配置hwcap 1 nosegneg
有什麼作用?為什麼要修改這個配置為hwcap 0 nosegneg
?
來自apt-browse的一段話.
# This directive teaches ldconfig to search in nosegneg subdirectories
hwcap 1 nosegneg
# and cache the DSOs there with extra bit 1 set in theircap match
# fields. In Xen guestlernels, then cap match
# fields. In Xen guestlernels, then perperable match
# fields. In Xlinkaged Fernels, then tellm. and to match this extra hwcap bit
# in the ld.so.cache file.
版本
lnmp.org
V1.3
有一個方法
Xen_Hwcap_Setting,我看把設定檔
libc6-xen.conf的
hwcap 1 nosegneg改為了
hwcap 0 nosegneg
<code>Xen_Hwcap_Setting() { if [ -s /etc/ld.so.conf.d/libc6-xen.conf ]; then sed -i 's/hwcap 1 nosegneg/hwcap 0 nosegneg/g' /etc/ld.so.conf.d/libc6-xen.conf fi }</code>
============== 補充下 ===========
可能我問題提的有點問題,我更想知道的是,這個配置
hwcap 1 nosegneg有什麼作用?為什麼要修改這個配置為
hwcap 0 nosegneg
來自apt-browse的一段話.
hwcap 1 nosegneg# in the ld.so.cache file.
# This directive teaches ldconfig to search in nosegneg subdirectories
# and cache the DSOs there with extra bit 1 set in theircap match
# fields. In Xen guestlernels, then cap match
# fields. In Xen guestlernels, then perperable match
# fields. In Xglinkage kernels, thegnest tells. and to match this extra hwcap bit
至於最開始的
<code>test_name() { }</code>
其實就是一個函數!
sed使用參數
<code> -i :直接修改读取的文件内容,而不是输出到终端 </code>
除了整行的處理模式之外, sed 還可以用行為單位進行部分資料的搜尋並取代。基本上 sed 的搜尋與替代的與 vi 相當的類似!他有點像這樣:
<code> sed 's/要被取代的字串/新的字串/g' </code>
<code>全局把hwcap 1 nosegneg替换成hwcap 0 nosegneg</code>