<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.1.1">Jekyll</generator><link href="https://archlinux.tw/feed.xml" rel="self" type="application/atom+xml" /><link href="https://archlinux.tw/" rel="alternate" type="text/html" /><updated>2026-06-01T08:18:46+08:00</updated><id>https://archlinux.tw/feed.xml</id><title type="html">Arch Linux 臺灣社群</title><entry><title type="html">預設的密碼雜湊演算法與 umask 設定的更動</title><link href="https://archlinux.tw/2023/09/23/changes-to-default-password-hashing-algorithm-and-umask-settings.html" rel="alternate" type="text/html" title="預設的密碼雜湊演算法與 umask 設定的更動" /><published>2023-09-23T15:52:00+08:00</published><updated>2023-09-23T15:52:00+08:00</updated><id>https://archlinux.tw/2023/09/23/changes-to-default-password-hashing-algorithm-and-umask-settings</id><content type="html" xml:base="https://archlinux.tw/2023/09/23/changes-to-default-password-hashing-algorithm-and-umask-settings.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://archlinux.org/news/changes-to-default-password-hashing-algorithm-and-umask-settings/&quot;&gt;Changes to default password hashing algorithm and umask settings&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;從 shadow &amp;gt;= &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;4.14.0&lt;/code&gt; 起，Arch Linux 的預設密碼雜湊演算法將從 &lt;strong&gt;SHA512&lt;/strong&gt; 改成 &lt;a href=&quot;https://www.openwall.com/yescrypt/&quot;&gt;&lt;strong&gt;yescrypt&lt;/strong&gt;&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;此外，&lt;a href=&quot;https://man.archlinux.org/man/umask.1p&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;umask&lt;/code&gt;&lt;/a&gt; 的設定現在也位於 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/login.defs&lt;/code&gt; 而不是 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/profile&lt;/code&gt;。&lt;/p&gt;

&lt;p&gt;這應該不需要任何手動調整。&lt;/p&gt;
&lt;h1 id=&quot;使用-yescrypt-的原因&quot;&gt;使用 Yescrypt 的原因&lt;/h1&gt;
&lt;p&gt;因基於密碼的金鑰衍生函數（KDF）和密碼雜湊方式 &lt;strong&gt;yescrypt&lt;/strong&gt; 已存在於 &lt;a href=&quot;https://wiki.archlinux.org/title/PAM&quot;&gt;&lt;em&gt;pam&lt;/em&gt;&lt;/a&gt; 所使用的 &lt;em&gt;libxcrypt&lt;/em&gt; 之中，並且與 &lt;strong&gt;SHA512&lt;/strong&gt; 相比其面對於密碼破解時更牢靠，因此我們採用此演算法。&lt;/p&gt;

&lt;p&gt;儘管 &lt;a href=&quot;https://www.password-hashing.net/&quot;&gt;Password Hashing Competition&lt;/a&gt; 的勝利者是 &lt;strong&gt;argon2&lt;/strong&gt;，但這個更堅固的演算法目前還未存在於 &lt;em&gt;libxcrypt&lt;/em&gt; 之中（&lt;a href=&quot;https://github.com/besser82/libxcrypt/pull/113&quot;&gt;第一次嘗試&lt;/a&gt;、&lt;a href=&quot;https://github.com/besser82/libxcrypt/pull/150&quot;&gt;第二次嘗試&lt;/a&gt;）。&lt;/p&gt;
&lt;h1 id=&quot;設定-yescrypt&quot;&gt;設定 yescrypt&lt;/h1&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/login.defs&lt;/code&gt; 內的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;YESCRYPT_COST_FACTOR&lt;/code&gt; 設定目前沒有效果，&lt;a href=&quot;https://github.com/linux-pam/linux-pam/issues/607&quot;&gt;除非 &lt;em&gt;pam&lt;/em&gt; 未來的實作讀取其值&lt;/a&gt;。如果需要讓 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;YESCRYPT_COST_FACTOR&lt;/code&gt; 的值高過（或低於）其預設值（&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;5&lt;/code&gt;），可以透過修改 &lt;a href=&quot;https://man.archlinux.org/man/pam_unix.8&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam_unix&lt;/code&gt;&lt;/a&gt; 模組內（於 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/pam.d/system-auth&lt;/code&gt;）的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;rounds&lt;/code&gt; 設定來達到。&lt;/p&gt;
&lt;h1 id=&quot;改動列表&quot;&gt;改動列表&lt;/h1&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;yescrpyt&lt;/strong&gt; 現在取代了 &lt;strong&gt;SHA512&lt;/strong&gt; 成為預設的密碼雜湊演算法&lt;/li&gt;
  &lt;li&gt;&lt;em&gt;pam&lt;/em&gt; 現在採用 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/login.defs&lt;/code&gt; 內的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ENCRYPT_METHOD&lt;/code&gt; 而不再複寫其值&lt;/li&gt;
  &lt;li&gt;修改了 &lt;em&gt;filesystem&lt;/em&gt; (&amp;gt;= &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2023.09.18&lt;/code&gt;) 和 &lt;em&gt;pambase&lt;/em&gt; (&amp;gt;= &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;20230918&lt;/code&gt;) 來確保 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;umask&lt;/code&gt; 是設定於 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/login.defs&lt;/code&gt; 而非 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/profile&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;</content><author><name>Ji Kuai</name></author><summary type="html">原文：Changes to default password hashing algorithm and umask settings</summary></entry><entry><title type="html">ansible-core &amp;gt;= 2.15.3-1 升級可能需要手動處理</title><link href="https://archlinux.tw/2023/08/19/ansible-core-2153-1-update-may-require-manual-intervention.html" rel="alternate" type="text/html" title="ansible-core &amp;gt;= 2.15.3-1 升級可能需要手動處理" /><published>2023-08-19T22:51:00+08:00</published><updated>2023-08-19T22:51:00+08:00</updated><id>https://archlinux.tw/2023/08/19/ansible-core-2153-1-update-may-require-manual-intervention</id><content type="html" xml:base="https://archlinux.tw/2023/08/19/ansible-core-2153-1-update-may-require-manual-intervention.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://archlinux.org/news/ansible-core-2153-1-update-may-require-manual-intervention&quot;&gt;ansible-core &amp;gt;= 2.15.3-1 update may require manual intervention&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;自 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ansible-core 2.15.3&lt;/code&gt; 起，上游將文件和範例移到&lt;a href=&quot;https://github.com/ansible/ansible-documentation&quot;&gt;專門的倉庫&lt;/a&gt;（見&lt;a href=&quot;https://github.com/ansible/ansible/blob/v2.15.3/changelogs/CHANGELOG-v2.15.rst#minor-changes&quot;&gt;相關的版本紀錄&lt;/a&gt;）&lt;br /&gt;
這代表自版本 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2.15.3&lt;/code&gt; 起，&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ansible-core&lt;/code&gt; 套件將會停止附帶文件以及 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/ansible/ansible.cfg&lt;/code&gt; 底下的預設設定檔。&lt;/p&gt;

&lt;p&gt;而文件現在可從線上取得：&lt;a href=&quot;https://docs.ansible.com/&quot;&gt;https://docs.ansible.com/&lt;/a&gt;&lt;br /&gt;
至於設定檔，如 &lt;a href=&quot;https://wiki.archlinux.org/title/Ansible#Configuration&quot;&gt;wiki&lt;/a&gt; 所提到，一個基礎的設定可以用以下指令生成：&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ansible-config init --disabled &amp;gt; ansible.cfg&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;從 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ansible-core&lt;/code&gt; &amp;lt;= &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2.15.2-1&lt;/code&gt; 更新到 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2.15.3-1&lt;/code&gt; 後，所有使用者存放在 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/ansible/ansible.cfg&lt;/code&gt; 底下的&lt;strong&gt;自訂義&lt;/strong&gt;全域設定檔都會被存成一個 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pacsave&lt;/code&gt; 檔。&lt;br /&gt;
可以使用以下指令還原它：&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mv /etc/ansible/ansible.cfg.pacsave /etc/ansible/ansible.cfg&lt;/code&gt;&lt;/p&gt;</content><author><name>Ji Kuai</name></author><summary type="html">原文：ansible-core &amp;gt;= 2.15.3-1 update may require manual intervention</summary></entry><entry><title type="html">升級 budgie-desktop &amp;gt;= 10.7.2-6 時需要手動處理</title><link href="https://archlinux.tw/2023/08/13/budgie-desktop-1072-6-update-requires-manual-intervention.html" rel="alternate" type="text/html" title="升級 budgie-desktop &amp;gt;= 10.7.2-6 時需要手動處理" /><published>2023-08-13T16:14:00+08:00</published><updated>2023-08-13T16:14:00+08:00</updated><id>https://archlinux.tw/2023/08/13/budgie-desktop-1072-6-update-requires-manual-intervention</id><content type="html" xml:base="https://archlinux.tw/2023/08/13/budgie-desktop-1072-6-update-requires-manual-intervention.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://archlinux.org/news/budgie-desktop-1072-6-update-requires-manual-intervention/&quot;&gt;budgie-desktop &amp;gt;= 10.7.2-6 update requires manual intervention&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;將 budgie-desktop 從 10.7.2-5 更新到 10.7.2-6 時，mutter43 套件必須被換成 magpie-wm，其目前相依於 mutter。然而 mutter43 與 mutter 衝突，需要手動處理來完成更新。&lt;/p&gt;

&lt;p&gt;先移除 mutter43，接著立即更新。不要在這之間重登或重開機。&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;pacman -Rdd mutter43
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;pacman -Syu
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Ji Kuai</name></author><summary type="html">原文：budgie-desktop &amp;gt;= 10.7.2-6 update requires manual intervention</summary></entry><entry><title type="html">TeX Live 套件重組</title><link href="https://archlinux.tw/2023/06/22/tex-live-package-reorganization.html" rel="alternate" type="text/html" title="TeX Live 套件重組" /><published>2023-06-22T17:10:00+08:00</published><updated>2023-06-22T17:10:00+08:00</updated><id>https://archlinux.tw/2023/06/22/tex-live-package-reorganization</id><content type="html" xml:base="https://archlinux.tw/2023/06/22/tex-live-package-reorganization.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://archlinux.org/news/tex-live-package-reorganization/&quot;&gt;TeX Live package reorganization&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;自版本 2023.66594-9 起，Tex Live 的套件被重新編排成符合上游集合（upstream collections）的樣子。儘管有新的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;texlive-basic&lt;/code&gt; 取代舊的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;texlive-core&lt;/code&gt;，texlive-core 的許多內容（包括針對特定語言的檔案）都被劃分進不同的套件。如果要找出哪個 Arch 套件含有特定的 CTAN 套件，你可以用 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;tlmgr&lt;/code&gt;，例如：&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;$ tlmgr info euler | grep collection
collection:  collection-latexrecommended
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;代表 euler CTAN 套件被放在 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;texlive-latexrecommended&lt;/code&gt; 裡面。你也可以用 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pacman -F&lt;/code&gt; 來查詢特定的檔案。&lt;/p&gt;

&lt;p&gt;此外，新增了叫做 texlive-meta 的 metapackage 可以來安裝所有子套件（除了針對特定語言的那些），和新的 texlive-doc 套件提供了完整的文件供離線查看。&lt;/p&gt;</content><author><name>Ji Kuai</name></author><summary type="html">原文：TeX Live package reorganization</summary></entry><entry><title type="html">COSCUP 2022 社群議程，Arch Linux Series 熱烈徵稿中！</title><link href="https://archlinux.tw/2022/04/20/coscup-2022-community-room-cfp.html" rel="alternate" type="text/html" title="COSCUP 2022 社群議程，Arch Linux Series 熱烈徵稿中！" /><published>2022-04-20T10:00:00+08:00</published><updated>2022-04-20T10:00:00+08:00</updated><id>https://archlinux.tw/2022/04/20/coscup-2022-community-room-cfp</id><content type="html" xml:base="https://archlinux.tw/2022/04/20/coscup-2022-community-room-cfp.html">&lt;p&gt;今年的 &lt;a href=&quot;https://coscup.org/2022/&quot;&gt;COSCUP&lt;/a&gt; (2022)，Arch Linux 臺灣社群有申請社群議程軌，大會已經審核通過了！即刻起至 5 月 23 日熱烈徵稿，歡迎您來投稿，一起把 Arch 社群議程軌辦得豐富又精彩吧！&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://blog.coscup.org/2022/04/coscup-x-kcd-taiwan-2022-cfp-is-now.html&quot;&gt;COSCUP 官方公告&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://pretalx.com/coscup-2022/cfp&quot;&gt;投稿直通門&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content><author><name>xatier</name></author><summary type="html">今年的 COSCUP (2022)，Arch Linux 臺灣社群有申請社群議程軌，大會已經審核通過了！即刻起至 5 月 23 日熱烈徵稿，歡迎您來投稿，一起把 Arch 社群議程軌辦得豐富又精彩吧！</summary></entry><entry><title type="html">Archers @ COSCUP 2018 相關活動彙整，邀請您一同來參加 COSCUP！</title><link href="https://archlinux.tw/2018/08/02/coscup-2018-events-outline.html" rel="alternate" type="text/html" title="Archers @ COSCUP 2018 相關活動彙整，邀請您一同來參加 COSCUP！" /><published>2018-08-02T20:00:00+08:00</published><updated>2018-08-02T20:00:00+08:00</updated><id>https://archlinux.tw/2018/08/02/coscup-2018-events-outline</id><content type="html" xml:base="https://archlinux.tw/2018/08/02/coscup-2018-events-outline.html">&lt;p&gt;COSCUP 2018 從 Day0 到 Day2 (08/10 ~ 08/12) 各有不同的活動，Archers 皆有可能現身其中！&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;Day0 : &lt;a href=&quot;https://coscup2018.kktix.cc/events/welcomeparty-2018&quot;&gt;會前派對&lt;/a&gt; 首度開放大眾購票參加，一起來跟大會講者及社群的同好喝酒哈啦！&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Day1 : &lt;a href=&quot;http://blog.coscup.org/2018/08/bof2018-zh.html&quot;&gt;BoF&lt;/a&gt; 訂於正式議程結束之後舉行，沒有 COSCUP 門票也可以參加，Free Pizza！想參加的 Archer 務必盡快到 &lt;a href=&quot;https://goo.gl/d5C3QW&quot;&gt;BoF 報名處&lt;/a&gt; 簽上你的大名！&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Day2 : Arch Linux Taiwan &amp;amp; Archers @ COSUCP 2018 Community Room (IB302) 議程在下午開始，還有 &lt;a href=&quot;https://goo.gl/9NJ7y4&quot;&gt;Archers 專屬限量贈品&lt;/a&gt; ，千萬不要錯過！&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;其他資訊敬請密切鎖定 &lt;a href=&quot;https://gitter.im/linux-taiwan/arch.linux.org.tw&quot;&gt;Gitter 討論群組&lt;/a&gt; 與 &lt;a href=&quot;https://t.me/ArchLinuxTaiwan&quot;&gt;Telegram 討論群組&lt;/a&gt; ，快來跟我們一起共襄盛舉吧！&lt;/p&gt;</content><author><name>PN Wu (小平)</name></author><summary type="html">COSCUP 2018 從 Day0 到 Day2 (08/10 ~ 08/12) 各有不同的活動，Archers 皆有可能現身其中！</summary></entry><entry><title type="html">升級 libutf8proc&amp;gt;=2.1.1-3 時需要手動處理</title><link href="https://archlinux.tw/2018/07/15/libutf8proc-=2.1.1-3-update-requires-manual-intervention.html" rel="alternate" type="text/html" title="升級 libutf8proc&amp;gt;=2.1.1-3 時需要手動處理" /><published>2018-07-15T00:55:19+08:00</published><updated>2018-07-15T00:55:19+08:00</updated><id>https://archlinux.tw/2018/07/15/libutf8proc%3E=2.1.1-3-update-requires-manual-intervention</id><content type="html" xml:base="https://archlinux.tw/2018/07/15/libutf8proc-=2.1.1-3-update-requires-manual-intervention.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://www.archlinux.org/news/libutf8proc211-3-update-requires-manual-intervention/&quot;&gt;libutf8proc&amp;gt;=2.1.1-3 update requires manual intervention&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;libutf8proc&lt;/code&gt; 套件在 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2.1.1-3&lt;/code&gt; 版本之前含有一個錯誤的 soname 連結 (soname link)，在 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2.1.1-3&lt;/code&gt; 版本已經修復了，所以升級到這個版本時需要覆寫先前未能由 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ldconfig&lt;/code&gt; 正確產生的 soname 連結。如果您在升級過程中遇到這樣的錯誤：&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;libutf8proc: /usr/lib/libutf8proc.so.2 exists in filesystem&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;請使用以下指令來完成升級作業：&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pacman -Suy --overwrite usr/lib/libutf8proc.so.2&lt;/code&gt;&lt;/p&gt;</content><author><name>Huei-Horng Yo</name></author><summary type="html">原文：libutf8proc&amp;gt;=2.1.1-3 update requires manual intervention</summary></entry><entry><title type="html">js52 52.7.3-2 升級時需要手動處理</title><link href="https://archlinux.tw/2018/05/05/js52-52.7.3-2-upgrade-requires-intervention.html" rel="alternate" type="text/html" title="js52 52.7.3-2 升級時需要手動處理" /><published>2018-05-05T04:27:33+08:00</published><updated>2018-05-05T04:27:33+08:00</updated><id>https://archlinux.tw/2018/05/05/js52-52.7.3-2-upgrade-requires-intervention</id><content type="html" xml:base="https://archlinux.tw/2018/05/05/js52-52.7.3-2-upgrade-requires-intervention.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://www.archlinux.org/news/js52-5273-2-upgrade-requires-intervention/&quot;&gt;js52 52.7.3-2 upgrade requires intervention&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;因為 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/usr/lib/libmozjs-52.so&lt;/code&gt; 的 SONAME 與它真正所屬的檔名不一致，ldconfig 會建立一個未能正常追溯的 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/usr/lib/libmozjs-52.so.0&lt;/code&gt; 檔案。這個問題目前已經修正，兩個檔名也都在套件中了。&lt;/p&gt;

&lt;p&gt;要能通過升級檢查，請在升級前先手動刪除 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/usr/lib/libmozjs-52.so.0&lt;/code&gt;。&lt;/p&gt;</content><author><name>Huei-Horng Yo</name></author><summary type="html">原文：js52 52.7.3-2 upgrade requires intervention</summary></entry><entry><title type="html">COSCUP 2018 社群議程，Arch Linux Taiwan 熱烈徵稿中！</title><link href="https://archlinux.tw/2018/04/26/coscup-2018-community-room-cfp.html" rel="alternate" type="text/html" title="COSCUP 2018 社群議程，Arch Linux Taiwan 熱烈徵稿中！" /><published>2018-04-26T10:00:00+08:00</published><updated>2018-04-26T10:00:00+08:00</updated><id>https://archlinux.tw/2018/04/26/coscup-2018-community-room-cfp</id><content type="html" xml:base="https://archlinux.tw/2018/04/26/coscup-2018-community-room-cfp.html">&lt;p&gt;今年的 &lt;a href=&quot;https://2018.coscup.org/&quot;&gt;COSCUP&lt;/a&gt; (2018)，Arch Linux 臺灣社群申請社群議程，大會已經審核通過了！即刻起至 5 月 25 日熱烈徵稿，歡迎您來投稿，一起把今年我們的 Arch 社群議程軌辦得豐富又精彩吧！&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;http://blog.coscup.org/2018/04/coscup-2018-cfp-is-open.html&quot;&gt;COSCUP 官方公告&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://docs.google.com/forms/d/e/1FAIpQLSfKnffsc_Ke2ZEP3fInJkAwEzXFUM24HZ7dYYluoGLmHMQjZw/viewform&quot;&gt;投稿直通門&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content><author><name>Huei-Horng Yo</name></author><summary type="html">今年的 COSCUP (2018)，Arch Linux 臺灣社群申請社群議程，大會已經審核通過了！即刻起至 5 月 25 日熱烈徵稿，歡迎您來投稿，一起把今年我們的 Arch 社群議程軌辦得豐富又精彩吧！</summary></entry><entry><title type="html">glibc 2.27-2 和 pam 1.3.0-2 的更新需要手動處理</title><link href="https://archlinux.tw/2018/04/20/glibc-2.27-2-and-pam-1.3.0-2-may-require-manual-intervention.html" rel="alternate" type="text/html" title="glibc 2.27-2 和 pam 1.3.0-2 的更新需要手動處理" /><published>2018-04-20T15:45:46+08:00</published><updated>2018-04-20T15:45:46+08:00</updated><id>https://archlinux.tw/2018/04/20/glibc-2.27-2-and-pam-1.3.0-2-may-require-manual-intervention</id><content type="html" xml:base="https://archlinux.tw/2018/04/20/glibc-2.27-2-and-pam-1.3.0-2-may-require-manual-intervention.html">&lt;p&gt;&lt;strong&gt;原文：&lt;/strong&gt;&lt;a href=&quot;https://www.archlinux.org/news/glibc-227-2-and-pam-130-2-may-require-manual-intervention/&quot;&gt;glibc 2.27-2 and pam 1.3.0-2 may require manual intervention&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;新版 glibc 移除了對 NIS 和 NIS+ 的支援。
由套件 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;filesystem&lt;/code&gt; 提供的預設設定檔 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/nsswitch.conf&lt;/code&gt; 已經反應這個變動。
請在更新前合併這個檔案的 .pacnew 。&lt;/p&gt;

&lt;p&gt;NIS 的功能仍能透過安裝 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;libnss_nis&lt;/code&gt; 這個套件取得。
而 NIS+ 目前在官方套件庫尚未有對應的套件。&lt;/p&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam 1.3.0-2&lt;/code&gt; 不再提供 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam_unix2&lt;/code&gt; 模組以及 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam_unix_*.so&lt;/code&gt; 的相容性符號鏈結。
請在更新前檢閱 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/etc/pam.d&lt;/code&gt; 下的設定檔，並將已移除的模組替換為 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam_unix.so&lt;/code&gt;。
而 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pam_unix2&lt;/code&gt; 的使用者也應於該設定變更後重設密碼。
至於由 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pambase&lt;/code&gt; 套件提供的預設值不用做任何更動。&lt;/p&gt;</content><author><name>Nightfeather</name></author><summary type="html">原文：glibc 2.27-2 and pam 1.3.0-2 may require manual intervention</summary></entry></feed>