Announcement

Collapse
No announcement yet.

Virtualbox / Kubuntu Question

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Originally posted by craigbert View Post
    Is there a way to export the list of packages I have and then feeding them to a package manager to process?
    Use dpkg for this, along with the dselect utility.

    First, install the extra utility:
    Code:
    sudo apt-get install dselect
    Next, make sure you don't have any left-over configuration files from uninstalled packages:
    Code:
    sudo dpkg --purge $(dpkg --get-selections | awk '/deinstall/ {print $1}')
    Now save your list of installed packages in a file called package-list:
    Code:
    dpkg --get-selections > package-list
    When you're ready to reinstall everything in one swell foop:
    Code:
    sudo dpkg --set-selections < package-list
    sudo apt-get update
    sudo apt-get -u dselect-upgrade

    Comment


      #17
      Very cool! Thanks Steve!

      This is going in my "never to forget" virtual notebook!!!!
      Thanks,

      Craigbert
      ----------------------------------------------------
      Kubuntu 13.04
      8GB RAM & Intel Core i7 1.87GHz
      Registered Linux User 537624

      Comment


        #18
        Originally posted by craigbert View Post
        This is going in my "never to forget" virtual notebook!!!!
        Heh. Remember that "virtual" originally meant "almost." I would hope that your notebook is more substantial!

        Comment


          #19
          I was virtually not going to reply, but then I thought "What the heck".
          Thanks,

          Craigbert
          ----------------------------------------------------
          Kubuntu 13.04
          8GB RAM & Intel Core i7 1.87GHz
          Registered Linux User 537624

          Comment


            #20
            That was almost funny.

            Comment


              #21
              Finally figured out GParted! It worked like a champ!

              Thanks for ya'lls help!!!
              Thanks,

              Craigbert
              ----------------------------------------------------
              Kubuntu 13.04
              8GB RAM & Intel Core i7 1.87GHz
              Registered Linux User 537624

              Comment

              Working...
              X