首頁  >  文章  >  後端開發  >  我在看lnmp安裝腳本的時候,有一段修改設定檔libc6-xen.conf的程式碼,不是特別懂。

我在看lnmp安裝腳本的時候,有一段修改設定檔libc6-xen.conf的程式碼,不是特別懂。

WBOY
WBOY原創
2016-12-01 00:56:551656瀏覽

lnmp.org V1.3版本

有一個方法Xen_Hwcap_Setting,我看把設定檔libc6-xen.confhwcap 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
# and cache the DSOs there with extra bit 1 set in theircap match
# fields. In Xen guestlernels, then cap match
# fields. In Xen guest​​lernels, then perperable match
# fields. In Xlinkaged Fernels, then tellm. and to match this extra hwcap bit
# in the ld.so.cache file.

hwcap 1 nosegneg

回覆內容:

lnmp.org V1.3

版本

有一個方法Xen_Hwcap_Setting,我看把設定檔libc6-xen.confhwcap 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
# and cache the DSOs there with extra bit 1 set in theircap match
# fields. In Xen guest​​lernels, then cap match
# fields. In Xen guest​​lernels, then perperable match
# fields. In Xglinkage kernels, thegnest tells. and to match this extra hwcap bit

# in the ld.so.cache file.
hwcap 1 nosegneg


-s在shell檔案判斷中的意思是檔案是否有內容,如果沒有內容,就執行下面的sed

至於最開始的

<code>test_name()
{

}</code>

其實就是一個函數!

sed使用參數

<code>
-i :直接修改读取的文件内容,而不是输出到终端

   </code>
資料的搜尋並取代

除了整行的處理模式之外, sed 還可以用行為單位進行部分資料的搜尋並取代。基本上 sed 的搜尋與替代的與 vi 相當的類似!他有點像這樣:

<code>
sed 's/要被取代的字串/新的字串/g'

</code>
🎜所以你這句程式碼的意思是🎜
<code>全局把hwcap 1 nosegneg替换成hwcap 0 nosegneg</code>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn