hardware:gl-ar750s-ext:managing_packages

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
hardware:gl-ar750s-ext:managing_packages [2021/05/25 01:51] – [インストール可能なパッケージ一覧] ともやんhardware:gl-ar750s-ext:managing_packages [2023/04/17 23:10] (現在) – [インストール可能なパッケージ一覧] ともやん
行 123: 行 123:
 Downloading https://fw.gl-inet.com/releases/packages-3.x/ar71xx/glinet/Packages.gz Downloading https://fw.gl-inet.com/releases/packages-3.x/ar71xx/glinet/Packages.gz
 Updated list of available packages in /var/opkg-lists/glinet_glinet Updated list of available packages in /var/opkg-lists/glinet_glinet
 +</code>
 +</WRAP>
 +
 +===== インストール =====
 +<WRAP prewrap 100%>
 +<code>
 +# opkg update && opkg install nano
 +</code>
 +</WRAP>
 +<WRAP prewrap 100% #result>
 +<code>
 +Downloading https://fw.gl-inet.com/releases/v19.07.7/packages-3.0/ath79/packages/Packages.gz
 +Updated list of available packages in /var/opkg-lists/glinet_packages
 +Downloading https://fw.gl-inet.com/releases/v19.07.7/packages-3.0/ath79/glinet/Packages.gz
 +Updated list of available packages in /var/opkg-lists/glinet_private
 +Downloading https://fw.gl-inet.com/releases/v19.07.7/kmod-3.0/ath79/nand/Packages.gz
 +Updated list of available packages in /var/opkg-lists/glinet_kmod
 +Installing nano (5.5-1) to root...
 +Downloading https://fw.gl-inet.com/releases/v19.07.7/packages-3.0/ath79/packages/nano_5.5-1_mips_24kc.ipk
 +Configuring nano.
 </code> </code>
 </WRAP> </WRAP>
行 6301: 行 6321:
 # opkg update && opkg list | grep gdisk # opkg update && opkg list | grep gdisk
 </code> </code>
 +<WRAP result><code>
 +cgdisk - 1.0.3-1 - cgdisk is GPT aware disk partitioning tool, with interactive ncurses based UI.
 +gdisk - 1.0.3-1 - gdisk is GPT aware disk partitioning tool, with interactive UI.
 +sgdisk - 1.0.3-1 - sgdisk is GPT-aware disk partitioning tool for scripting use.
 +</code></WRAP>
 +
 +===== 現在アップグレード可能なパッケージを全て更新 =====
 +**cut** を使ってリストを作って **$()** でスペースを挟んで連結して **opkg upgrade** を一括実行。\\
 <code> <code>
-gdisk 1.0.3-1+# opkg upgrade $(opkg list-upgradable | cut --d ' ')
 </code> </code>
  
-===== 現在アップグレド可能なパッケージ更新 =====+**awk** を使ってリストを作って **$()** でスペ挟んで連結して **opkg upgrade** を一括実行。\\
 <code> <code>
 # opkg upgrade $(opkg list-upgradable | awk '{print $1}') # opkg upgrade $(opkg list-upgradable | awk '{print $1}')
 </code> </code>
 +参考: [[https://forum.openwrt.org/t/package-update-from-luci/8128/14|Package Update from Luci - Installing and Using OpenWrt - OpenWrt Forum]]\\
  
 +**xargs** でパッケージ毎に **opkg upgrade** を実行。\\
 +<code>
 +# opkg list-upgradable | cut -f 1 -d ' ' | xargs opkg upgrade
 +</code>
 +参考: [[https://openwrt.org/docs/guide-user/additional-software/opkg#examples|Examples - [OpenWrt Wiki] Opkg package manager]]\\
 ===== トラブルシューティング ===== ===== トラブルシューティング =====
  
行 6330: 行 6364:
  
 ===== 参考文献 ===== ===== 参考文献 =====
 +[[https://openwrt.org/docs/guide-user/additional-software/opkg|[OpenWrt Wiki] Opkg package manager]]\\
 +
 [[https://smilerobo.com/papero/tips003/|opkgでパッケージをインストールできるようになりました | PaPeRo i [非公式] Developer Forum]]\\ [[https://smilerobo.com/papero/tips003/|opkgでパッケージをインストールできるようになりました | PaPeRo i [非公式] Developer Forum]]\\
-[[https://openwrt.org/docs/guide-user/additional-software/opkg|OpenWrt Project: Opkg Package Manager]]\\ 
 [[https://forum.openwrt.org/t/package-update-from-luci/8128/14|Package Update from Luci - Installing and Using OpenWrt - OpenWrt Forum]]\\ [[https://forum.openwrt.org/t/package-update-from-luci/8128/14|Package Update from Luci - Installing and Using OpenWrt - OpenWrt Forum]]\\
  
  • hardware/gl-ar750s-ext/managing_packages.1621875078.txt.gz
  • 最終更新: 2021/05/25 01:51
  • by ともやん