Changes between Version 8 and Version 9 of MakeLocalUbuntuRepo


Ignore:
Timestamp:
09/03/14 12:34:10 (10 years ago)
Author:
rrhain@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MakeLocalUbuntuRepo

    v8 v9  
    1818Create a directory where you will keep your packages. For this example, we'll use /usr/local/mydebs.
    1919
    20 sudo mkdir -p /usr/local/mydebs
     20sudo mkdir -p /home/gram/pkgs
    2121
    2222Now move your packages into the directory you've just created.
     
    2929{{{
    3030#! /bin/bash
    31  cd /usr/local/mydebs
     31 cd /home/gram/pkgs
    3232 dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
    3333
     
    4545add the line
    4646
    47 deb file:/usr/local/mydebs ./
     47deb file:/home/gram/pkgs ./
    4848
    4949to your /etc/apt/sources.list, and you're done.