apt-get update / upgrade list โดยไม่เปลี่ยนแปลงอะไรเลย


21

ฉันต้องการจะดูว่ามีแพกเกจใดบ้างที่สามารถอัปเดต / อัปเกรดได้โดยไม่ต้องเปลี่ยนไฟล์ใด ๆ เนื่องจากมีบางแพ็คเกจที่ฉันไม่ต้องการอัปเดต มันจะเป็นไปได้หรือไม่ที่จะรับการอัปเดตด้วยข้อยกเว้น


apt จำเป็นต้องทราบเกี่ยวกับการอัปเดตที่มีอยู่ผ่านทางapt-get updateและนั่นจะเปลี่ยนแปลงบางสิ่ง เป็นคำถามที่ดี แต่ ... พบข้อมูลที่เกี่ยวข้องที่นี่
bvj

คำตอบ:


9

apt list --upgradableฉันใช้ ทางเลือกต่อไปคือ
apt-get --simulate upgrade(อิงจาก @EightBitTony)
ต่อไปนี้เป็นผลลัพธ์จากตัวเลือกที่แตกต่างกัน (หวังว่าจะช่วยให้ใครบางคน):

me@machine:~$ apt list --upgradable
    Listing... Done
    kubernetes-cni/kubernetes-xenial 0.7.5-00 amd64 [upgradable from: 0.6.0-00]
    N: There are 3 additional versions. Please use the '-a' switch to see them.
me@machine:~$ apt-get --simulate upgrade
    NOTE: This is only a simulation!
          apt-get needs root privileges for real execution.
          Keep also in mind that locking is deactivated,
          so don't depend on the relevance to the real current situation!
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
      kubernetes-cni
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Inst kubernetes-cni [0.6.0-00] (0.7.5-00 kubernetes-xenial:kubernetes-xenial [amd64])
    Conf kubernetes-cni (0.7.5-00 kubernetes-xenial:kubernetes-xenial [amd64])
me@machine:~$ apt-get -u upgrade --assume-no
    E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
    E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
me@machine:~$ sudo apt-get -u upgrade --assume-no
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
      kubernetes-cni
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Need to get 6,473 kB of archives.
    After this operation, 4,278 kB of additional disk space will be used.
    Do you want to continue? [Y/n] N
    Abort.
me@machine:~$ sudo apt-get -u -V upgrade
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
       kubernetes-cni (0.6.0-00 => 0.7.5-00)
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Need to get 6,473 kB of archives.
    After this operation, 4,278 kB of additional disk space will be used.
    Do you want to continue? [Y/n] n
    Abort.

ยินดีต้อนรับสู่ต่างประเทศ
bvj

32

จากหน้าคนฉลาดรับ

   -s, --simulate, --just-print, --dry-run, --recon, --no-act
       No action; perform a simulation of events that would occur
       but do not actually change the system. Configuration Item:
       APT::Get::Simulate.

       Simulation run as user will deactivate locking (Debug::NoLocking)
       automatic. Also a notice will be displayed indicating that this
       is only a simulation, if the option APT::Get::Show-User-Simulation-Note
       is set (Default: true). Neither NoLocking nor the notice will be
       triggered if run as root (root should know what he is doing without
       further warnings by apt-get).

       Simulate prints out a series of lines each one representing a
       dpkg operation, Configure (Conf), Remove (Remv), Unpack (Inst).
       Square brackets indicate broken packages and empty set of square
       brackets meaning breaks that are of no consequence (rare).

apt-get -s upgradeดังนั้นเพียงแค่ให้แน่ใจว่าคุณ

หากคุณต้องการอัพเกรดแพ็คเกจบางอย่างเพียงapt-get install <package name>และมันจะอัปเดตหากติดตั้งไว้แล้ว อย่างไรก็ตามจะต้องอัปเดตการอ้างอิงทั้งหมดด้วยเช่นกันและขึ้นอยู่กับว่าพวกเขาเป็นอะไร

หากฉันล้าหลังในการอัปเดตแพคเกจฉันจะทำการอัปเดตapt-get installใหญ่ ๆ บางรายการ (อาจเป็น php, apache2 เป็นต้น) ดังนั้นฉันจึงสามารถเก็บมันไว้และตรวจสอบปัญหาต่าง ๆ ได้apt-get upgradeหลังจากนั้นฉันก็ทำเสร็จแล้ว


8

ในการแสดงรายการแพ็คเกจที่จะอัพเกรดด้วยเวอร์ชั่น:

$ sudo apt-get -u -V upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages have been kept back:
   mysql-client-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
   mysql-server-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
   mysql-server-core-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.

จากนั้นคุณสามารถเลือกสิ่งที่จะอัพเกรด:

$ sudo apt-get --only-upgrade install mysql-client-5.5
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
firefox-globalmenu
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
libterm-readkey-perl
The following NEW packages will be installed:
libterm-readkey-perl
The following packages will be upgraded:
mysql-client-5.5
1 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Need to get 8,123 kB of archives.
After this operation, 139 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main libterm-readkey-perl i386 2.30-4build3 [28.4 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main mysql-client-5.5 i386 5.5.32-0ubuntu0.12.04.1 [8,094 kB]
...

หากมีการอ้างอิงเก่าที่ถูกลบคุณสามารถเรียกใช้apt-get autoremoveและอย่างที่คุณเห็นการอ้างอิงใหม่ใด ๆ จะได้รับแจ้งให้ติดตั้ง การ--only-upgradeตั้งค่าสถานะนั้นไม่จำเป็น แต่ก็ดีถ้าคุณต้องการให้แน่ใจว่าคุณไม่ได้ติดตั้งแพคเกจใหม่โดยไม่ได้ตั้งใจแทนที่จะทำการอัพเกรดที่มีอยู่นั่นคือคุณมีช่วงเวลาหนึ่งและพิมพ์แพคเกจที่ไม่ถูกต้องโดยไม่ตั้งใจ:

$ sudo apt-get --only-upgrade install mysql-proxy
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Skipping mysql-proxy, it is not installed and only upgrades are requested.
The following package was automatically installed and is no longer required:
firefox-globalmenu
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

1

มันช่วยคุณในapt-get -s upgradeการสร้างการจำลองหรือไม่? apt-get install <thepackage>และจากนั้นคุณสามารถอัปเดตแต่ละแพคเกจที่ต้องการด้วย

หากคุณต้องการที่โต้ตอบกับดี CLI GUI aptitudeใช้แล้ว apt-get install aptitudeถ้ามันไม่ได้ติดตั้งแล้วติดตั้งด้วย

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.