summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-04-12 02:33:48 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-04-12 02:33:48 +0200
commitbcf061abf932f9adf243554c22185d323f5ff2ea (patch)
treedd8d079ffa66e8aa6f0d0b54ef07e77f8f34ce9b
parent56e1abda424f1dc7bbeccfe28e05a2caa50bc6de (diff)
People should really use apt instead of apt-get nowadays
-rw-r--r--community/gsoc/project_ideas/download_backends.mdwn4
-rw-r--r--community/weblogs/ArneBab/2008-08-02-gnu_hurd_and_x.mdwn2
-rw-r--r--community/weblogs/ArneBab/Hurd-showcase-qemu-image.mdwn14
-rw-r--r--community/weblogs/ArneBab/porting-simple-packages.mdwn8
-rw-r--r--community/weblogs/ArneBab/xkb-woes-trying-to-get-a-german-keyboard-layout.mdwn2
-rw-r--r--contributing.mdwn6
-rw-r--r--contributing/web_pages.mdwn2
-rw-r--r--faq/other_repositories.mdwn2
-rw-r--r--grub/tftp_boot.mdwn4
-rw-r--r--hurd/ada4hurd.mdwn4
-rw-r--r--hurd/building.mdwn8
-rw-r--r--hurd/dde/guide.mdwn10
-rw-r--r--hurd/running/debian/CrossInstall.mdwn4
-rw-r--r--hurd/running/debian/DebianAptOffline.mdwn8
-rw-r--r--hurd/running/debian/MediaPressKitDiscuss.mdwn2
-rw-r--r--hurd/running/debian/after_install.mdwn2
-rw-r--r--hurd/running/qemu.mdwn8
-rw-r--r--hurd/subhurd.mdwn2
-rw-r--r--microkernel/mach/gnumach/building.mdwn6
-rw-r--r--microkernel/mach/mig/gnu_mig/building.mdwn6
-rw-r--r--news/2010-10.mdwn2
-rw-r--r--news/2012-q1-q2.mdwn4
-rw-r--r--open_issues/perl.mdwn2
-rw-r--r--public_hurd_boxen/installation.mdwn2
-rw-r--r--unsorted/InstallTips.mdwn4
-rw-r--r--user/flaviocruz.mdwn4
-rw-r--r--user/tlecarrour/porting_guide_for_dummies.mdwn6
27 files changed, 64 insertions, 64 deletions
diff --git a/community/gsoc/project_ideas/download_backends.mdwn b/community/gsoc/project_ideas/download_backends.mdwn
index c0bdc5b2..236f1751 100644
--- a/community/gsoc/project_ideas/download_backends.mdwn
+++ b/community/gsoc/project_ideas/download_backends.mdwn
@@ -29,11 +29,11 @@ redirects etc.)
A new interface providing all this additional information (either as an
extension to the existing translators, or as distinct translators) is required
-to make such translators usable as backends for programs like apt-get for
+to make such translators usable as backends for programs like apt for
example.
The goal of this project is to design a suitable interface, implement it for at
-least one download protocol, and adapt apt-get (or some other program) to use
+least one download protocol, and adapt apt (or some other program) to use
this as a backend.
This task requires some design skills and some knowledge of internet protocols,
diff --git a/community/weblogs/ArneBab/2008-08-02-gnu_hurd_and_x.mdwn b/community/weblogs/ArneBab/2008-08-02-gnu_hurd_and_x.mdwn
index d72f4cef..844481be 100644
--- a/community/weblogs/ArneBab/2008-08-02-gnu_hurd_and_x.mdwn
+++ b/community/weblogs/ArneBab/2008-08-02-gnu_hurd_and_x.mdwn
@@ -18,7 +18,7 @@ I worked as root.
First I installed xorg, x-window-system-code, rxvt and twm:
- apt-get install xserver-xorg x-window-system-core rxvt twm
+ apt install xserver-xorg x-window-system-core rxvt twm
Then I set the LD_LIBRARY_PATH and DISPLAY
diff --git a/community/weblogs/ArneBab/Hurd-showcase-qemu-image.mdwn b/community/weblogs/ArneBab/Hurd-showcase-qemu-image.mdwn
index 00d09094..200dd5a9 100644
--- a/community/weblogs/ArneBab/Hurd-showcase-qemu-image.mdwn
+++ b/community/weblogs/ArneBab/Hurd-showcase-qemu-image.mdwn
@@ -7,18 +7,18 @@ For that I want to use:
* An up to date debian image (no longer online, but I have a copy here).
* My [Hurd Intro](http://bitbucket.org/ArneBab/hurd_intro),
* Translators from [hurd-extras](http://www.nongnu.org/hurdextras/) and the [incubator](http://git.savannah.gnu.org/cgit/hurd/incubator.git/), and naturally
-* a lot of apt-get update; apt-get upgrade and apt-get dist-upgrade :) (all worked flawlessly).
+* a lot of apt update; apt upgrade and apt dist-upgrade :) (all worked flawlessly).
## Working
### Generally
# ssh with public key
- apt-get install random-egd
+ apt install random-egd
ssh-keygen
# build tools
- apt-get install build-essential
+ apt install build-essential
### StoreIO
@@ -42,7 +42,7 @@ For that I want to use:
# pkg-config is needed to avoid “PKG_CHECK_MODULES syntax error near unexpected token `HTTPFS,'”
# pkg-config must be installed before you run autoreconf.
- apt-get install autoconf autoconf-archive libxml2-dev pkg-config
+ apt install autoconf autoconf-archive libxml2-dev pkg-config
autoreconf -i -f
./configure
make
@@ -55,7 +55,7 @@ For that I want to use:
### Tarfs
- apt-get install zip libz-dev libbz2-dev
+ apt install zip libz-dev libbz2-dev
git clone git://git.sv.gnu.org/hurd/incubator.git tarfs
cd tarfs/
git checkout tarfs/master
@@ -80,7 +80,7 @@ For that I want to use:
cd nsmux/
git checkout -b nsmux origin/nsmux
- apt-get install autoconf autoconf-archive
+ apt install autoconf autoconf-archive
autoreconf -i -f
./configure
make
@@ -101,7 +101,7 @@ For that I want to use:
cd clisp/
git checkout -b clisp origin/clisp
- apt-get install texi2html
+ apt install texi2html
make
make install
diff --git a/community/weblogs/ArneBab/porting-simple-packages.mdwn b/community/weblogs/ArneBab/porting-simple-packages.mdwn
index becea251..4fc5d67f 100644
--- a/community/weblogs/ArneBab/porting-simple-packages.mdwn
+++ b/community/weblogs/ArneBab/porting-simple-packages.mdwn
@@ -36,13 +36,13 @@ Other simple tasks can be found on [[hurd/porting/guidelines]].
## Downloading the package source and installing dependencies
- apt-get source PACKAGE
- apt-get build-dep PACKAGE
+ apt source PACKAGE
+ apt build-dep PACKAGE
For example
- apt-get source lilypond
- apt-get build-dep lilypond
+ apt source lilypond
+ apt build-dep lilypond
## Fix the package
diff --git a/community/weblogs/ArneBab/xkb-woes-trying-to-get-a-german-keyboard-layout.mdwn b/community/weblogs/ArneBab/xkb-woes-trying-to-get-a-german-keyboard-layout.mdwn
index eb90f663..638b530e 100644
--- a/community/weblogs/ArneBab/xkb-woes-trying-to-get-a-german-keyboard-layout.mdwn
+++ b/community/weblogs/ArneBab/xkb-woes-trying-to-get-a-german-keyboard-layout.mdwn
@@ -31,7 +31,7 @@ First I got the needed apt-sources:
Then I installed the xkb console:
-- `apt-get install console-driver-xkb`
+- `apt install console-driver-xkb`
And set it in the file /etc/default/hurd-console
diff --git a/contributing.mdwn b/contributing.mdwn
index 9cd38da3..97203b4b 100644
--- a/contributing.mdwn
+++ b/contributing.mdwn
@@ -186,9 +186,9 @@ First run the hurd in [[qemu|hurd/running/qemu#index1h2]]
After you have a Hurd vm set up and running:
-* `apt-get update`
-* `apt-get install -y git mercurial emacs vim`
-* `apt-get build-dep -y hurd gnumach`
+* `apt update`
+* `apt install -y git mercurial emacs vim`
+* `apt build-dep -y hurd gnumach`
* `git clone git://git.sv.gnu.org/hurd/hurd.git`
* `git clone git://git.sv.gnu.org/hurd/gnumach.git`
* `git clone git://git.sv.gnu.org/hurd/incubator.git`
diff --git a/contributing/web_pages.mdwn b/contributing/web_pages.mdwn
index 903ded7b..b1556dd6 100644
--- a/contributing/web_pages.mdwn
+++ b/contributing/web_pages.mdwn
@@ -101,7 +101,7 @@ editing.
### Debian Wheezy
- $ apt-get install ikiwiki libyaml-syck-perl markdown libsearch-xapian-perl texinfo
+ $ apt install ikiwiki libyaml-syck-perl markdown libsearch-xapian-perl texinfo
## Identifying Yourself
diff --git a/faq/other_repositories.mdwn b/faq/other_repositories.mdwn
index f8ece75f..a55ac1e3 100644
--- a/faq/other_repositories.mdwn
+++ b/faq/other_repositories.mdwn
@@ -11,7 +11,7 @@ License|/fdl]]."]]"""]]
[[!tag faq/debian]]
-If you want to use the `apt-get source` facility, make sure that
+If you want to use the `apt source` facility, make sure that
`/etc/apt/sources.list` contains a line like
deb-src http://ftp.de.debian.org/debian unstable main
diff --git a/grub/tftp_boot.mdwn b/grub/tftp_boot.mdwn
index cecc0196..a094f248 100644
--- a/grub/tftp_boot.mdwn
+++ b/grub/tftp_boot.mdwn
@@ -4,10 +4,10 @@
### <a name="Debian_Grub"> Debian Grub </a>
-The Debian grub packages do not have networking enabled, so you have to apt-get the source, modify the debian/rules file to include --enable-network-card and dpkg-buildpackage to get a .deb of grub that supports TFTP.
+The Debian grub packages do not have networking enabled, so you have to apt the source, modify the debian/rules file to include --enable-network-card and dpkg-buildpackage to get a .deb of grub that supports TFTP.
1. cd /usr/src/debian
-2. apt-get source grub
+2. apt source grub
3. cd grub-\_VERSION\_
4. Add `--enable-tulip` or similar for your NIC to the `./configure` line of the `configure-stamp` target in the `debian/rules` file.
5. `dpkg-buildpackage` (as `root`)
diff --git a/hurd/ada4hurd.mdwn b/hurd/ada4hurd.mdwn
index c783e53b..e5ef1359 100644
--- a/hurd/ada4hurd.mdwn
+++ b/hurd/ada4hurd.mdwn
@@ -51,7 +51,7 @@ Ada4Hurd provides tools and examples to ease Ada development in Hurd. It is at a
* Install the build dependencies as root
- $ apt-get install gnat libopentoken4-dev libxmlada5-dev libasis2014-dev
+ $ apt install gnat libopentoken4-dev libxmlada5-dev libasis2014-dev
* Build
@@ -65,4 +65,4 @@ Ada4Hurd provides tools and examples to ease Ada development in Hurd. It is at a
* Run netfs tests
* In netfs\_base directory
- $ make trans\_dbg\_on \ No newline at end of file
+ $ make trans\_dbg\_on
diff --git a/hurd/building.mdwn b/hurd/building.mdwn
index 31d909e5..7cfc7c7e 100644
--- a/hurd/building.mdwn
+++ b/hurd/building.mdwn
@@ -24,8 +24,8 @@ Building the Hurd requires the *build-essential* and *fakeroot* packages, their
dependencies and additional packages that are specified by the source hurd
package:
- # apt-get install build-essential fakeroot
- # apt-get build-dep hurd
+ # apt install build-essential fakeroot
+ # apt build-dep hurd
## ... on non-Debian systems
@@ -41,9 +41,9 @@ git](http://savannah.gnu.org/git/?group=hurd):
... or (if you are working on a Debian system) the ones that are used for the
[current Debian hurd package](http://packages.debian.net/source/unstable/hurd):
- $ apt-get source hurd
+ $ apt source hurd
-Please see the Debian [[FAQ]] before using `apt-get source`.
+Please see the Debian [[FAQ]] before using `apt source`.
The unpacked source tree is around 20 MiB, and the build tree (configured with
`--disable-profile`) is around 100 MiB.
diff --git a/hurd/dde/guide.mdwn b/hurd/dde/guide.mdwn
index dd36f1f5..b6cf7753 100644
--- a/hurd/dde/guide.mdwn
+++ b/hurd/dde/guide.mdwn
@@ -58,11 +58,11 @@ Download the packages for offline installation:
$ cd /mnt
- $ apt-get -c etc/apt/apt.conf.offline update
+ $ apt -c etc/apt/apt.conf.offline update
- $ apt-get -c etc/apt/apt.conf.offline build-dep hurd gnumach
+ $ apt -c etc/apt/apt.conf.offline build-dep hurd gnumach
- $ apt-get -c etc/apt/apt.conf.offline install git-core build-essential libpciaccess-dev libpcap0.8-dev hurd-dev zlib1g-dev
+ $ apt -c etc/apt/apt.conf.offline install git-core build-essential libpciaccess-dev libpcap0.8-dev hurd-dev zlib1g-dev
Get DDE code:
@@ -117,9 +117,9 @@ so we can boot into Hurd to do the actual work.
Once there, install the packages previously downloaded (again as root):
- $ apt-get build-dep hurd gnumach
+ $ apt build-dep hurd gnumach
- $ apt-get install git-core build-essential libpciaccess-dev libpcap0.8-dev hurd-dev zlib1g-dev
+ $ apt install git-core build-essential libpciaccess-dev libpcap0.8-dev hurd-dev zlib1g-dev
Make sure we can build stuff as normal user:
diff --git a/hurd/running/debian/CrossInstall.mdwn b/hurd/running/debian/CrossInstall.mdwn
index c7a099c6..26cd77af 100644
--- a/hurd/running/debian/CrossInstall.mdwn
+++ b/hurd/running/debian/CrossInstall.mdwn
@@ -17,9 +17,9 @@ Next we create a useful mountpoint and mount the partition.
### <a name="Retrieving_CrossHurd"> Retrieving CrossHurd </a>
-Unless you don't run Debian GNU/Linux download it from <http://packages.debian.org/crosshurd>, or simply apt-get the package from Testing or Unstable. Avoid using the version from Stable since it probably is outdated. In case of problems, make sure to try the Unstable version before reporting the issue.
+Unless you don't run Debian GNU/Linux download it from <http://packages.debian.org/crosshurd>, or simply apt the package from Testing or Unstable. Avoid using the version from Stable since it probably is outdated. In case of problems, make sure to try the Unstable version before reporting the issue.
- # apt-get install crosshurd
+ # apt install crosshurd
### <a name="Cross_installing"> Cross installing </a>
diff --git a/hurd/running/debian/DebianAptOffline.mdwn b/hurd/running/debian/DebianAptOffline.mdwn
index 9596040d..f97e5148 100644
--- a/hurd/running/debian/DebianAptOffline.mdwn
+++ b/hurd/running/debian/DebianAptOffline.mdwn
@@ -24,11 +24,11 @@ As root on the internet connected OS:
# mount /dev/DEBIAN_GNU_HURD_PARTITON /mnt
# cd /mnt
- # apt-get -c etc/apt/apt.conf.offline {update, upgrade, install foo, etc.}
+ # apt -c etc/apt/apt.conf.offline {update, upgrade, install foo, etc.}
Then, reboot into your Debian GNU/Hurd installation and as root, run:
- # apt-get {update, upgrade, install foo, etc.}
+ # apt {update, upgrade, install foo, etc.}
## If you _cannot_ mount your Debian GNU/Hurd partition under another OS.
@@ -47,7 +47,7 @@ From the remote sytem, as any user, run:
$ cd myhurd
$ tar -xf myhurdsconf.tar
$ mkdir -p var/lib/apt/lists/partial var/cache/apt/archives/partial tmp
- $ apt-get -c etc/apt/apt.conf.offline {update, upgrade, install foo, etc.}
+ $ apt -c etc/apt/apt.conf.offline {update, upgrade, install foo, etc.}
$ tar cf myhurdsconf.tar etc/apt/{apt.conf.offline,sources.list} var/
Copy _myhurdsconf.tar_ back to your Debian GNU/Hurd system.
@@ -59,4 +59,4 @@ Finally, from your Debian GNU/Hurd installation as the root user:
# tar -xf myhurdsconf.tar
# mv var/cache/apt/archives/*.deb /var/cache/apt/archives/
# mv var/lib/apt/lists/*_* /var/lib/apt/lists/
- # apt-get {update, upgrade, install foo, etc.}
+ # apt {update, upgrade, install foo, etc.}
diff --git a/hurd/running/debian/MediaPressKitDiscuss.mdwn b/hurd/running/debian/MediaPressKitDiscuss.mdwn
index 2bd97290..05e1761a 100644
--- a/hurd/running/debian/MediaPressKitDiscuss.mdwn
+++ b/hurd/running/debian/MediaPressKitDiscuss.mdwn
@@ -71,6 +71,6 @@ I think another active process for tracking recent news (if it doesn't already e
Here are some interesting urls from [this issue](http://www.debian.org/News/weekly/2003/03/) of the Debian Weekly news:
-**Debian Presentations.** Wolfgang Borgert was [looking](http://lists.debian.org/debian-devel-0301/msg00991.html) for a set of slides on dpkg, apt-get and debconf. Javier Fern�ndez-Sanguino Pe�a [intends](http://lists.debian.org/debian-devel-0301/msg01022.html) to provide a 'presentations' section in the [Debian Documentation Project](http://cvs.debian.org/ddp/?cvsroot=debian-doc) (DDP) and has already created an [archive](http://dat.etsit.upm.es/~jfs/debian/www/ddp/slides/) of slides. Whilst the Debian web site does link to [talks](http://www.debian.org/events/talks) given by developers and some [sample slides](http://www.debian.org/events/materials/slides/), it is difficult to gather this information and publish it in a homogeneous way. Talks should be reported to <events@debianNOSPAM.org> and forwarded to him.
+**Debian Presentations.** Wolfgang Borgert was [looking](http://lists.debian.org/debian-devel-0301/msg00991.html) for a set of slides on dpkg, apt and debconf. Javier Fern�ndez-Sanguino Pe�a [intends](http://lists.debian.org/debian-devel-0301/msg01022.html) to provide a 'presentations' section in the [Debian Documentation Project](http://cvs.debian.org/ddp/?cvsroot=debian-doc) (DDP) and has already created an [archive](http://dat.etsit.upm.es/~jfs/debian/www/ddp/slides/) of slides. Whilst the Debian web site does link to [talks](http://www.debian.org/events/talks) given by developers and some [sample slides](http://www.debian.org/events/materials/slides/), it is difficult to gather this information and publish it in a homogeneous way. Talks should be reported to <events@debianNOSPAM.org> and forwarded to him.
-- [[Main/GrantBow]] - 22 Jan 2003
diff --git a/hurd/running/debian/after_install.mdwn b/hurd/running/debian/after_install.mdwn
index d3d32a6f..927d05f1 100644
--- a/hurd/running/debian/after_install.mdwn
+++ b/hurd/running/debian/after_install.mdwn
@@ -11,7 +11,7 @@ typing a boring arcane. There are Debian-specific scripts that may help
you. See [[GRUB]]'s page for this.
-# Setup `apt-get`
+# Setup `apt
Installing packages without having a network connection is described
[[DebianAptOffline]].
diff --git a/hurd/running/qemu.mdwn b/hurd/running/qemu.mdwn
index 190602ed..3514ac98 100644
--- a/hurd/running/qemu.mdwn
+++ b/hurd/running/qemu.mdwn
@@ -60,7 +60,7 @@ Check if your CPU supports kvm:
$ egrep '^flags.*(vmx|svm)' /proc/cpuinfo
#### If you don't have hardware support (slow):
- $ apt-get install qemu
+ $ apt install qemu
Do not enable kernel-kqemu, as that assumes some particular behavior from the guest kernel, which we are reluctant to artificially add to gnumach.
@@ -68,7 +68,7 @@ If QEMU with KVM is not available, [[Virtualbox]] reportedly has better
performance.
#### If you have hardware support (recommended):
- $ apt-get install qemu-kvm
+ $ apt install qemu-kvm
$ modprobe kvm
Intel VTx/VTd: Enable Intel kvm in the BIOS
@@ -252,13 +252,13 @@ If you are on [[Debian GNU/Hurd|debian]], you can even use [[debian/DHCP]].
To get ssh working:
- # apt-get install random-egd openssh-server (Similarly for telnet if preferred)
+ # apt install random-egd openssh-server (Similarly for telnet if preferred)
(See also <http://www.nongnu.org/qemu/qemu-doc.html#SEC32>.)
Outgoing internet connections should just work then.
Testing it can be difficult with a minimal installation,
-but `apt-get update` should work after you have filled out
+but `apt update` should work after you have filled out
`/etc/apt/sources.list`.
After that you should be able to install other network packages,
but note that `ping` doesn't work with QEMU's user-networking stack.
diff --git a/hurd/subhurd.mdwn b/hurd/subhurd.mdwn
index 587cc227..9b196f2d 100644
--- a/hurd/subhurd.mdwn
+++ b/hurd/subhurd.mdwn
@@ -134,7 +134,7 @@ In the subhurd, you can do basically all the same things as in the main Hurd.
You can even set up networking: Just invoke `settrans` on the
`/servers/socket/2` as usual inside the subhurd, using `/dev/eth0`, only using a different local
IP than in the main Hurd. This way, the subhurd will be able to communicate to
-the outside world with its own IP -- allowing for example to do `apt-get`
+the outside world with its own IP -- allowing for example to do `apt
inside the subhurd, or to `ssh` directly into the subhurd.
If you want to access the subhurd processes from the outside, e.g. for
diff --git a/microkernel/mach/gnumach/building.mdwn b/microkernel/mach/gnumach/building.mdwn
index d3fe670a..aed87046 100644
--- a/microkernel/mach/gnumach/building.mdwn
+++ b/microkernel/mach/gnumach/building.mdwn
@@ -26,7 +26,7 @@ You can either use the git repository (see <http://git.savannah.gnu.org/git/hurd
... or get the Debian sources, if you're using Debian. (See
[here](http://packages.debian.net/source/unstable/gnumach).)
- $ apt-get source gnumach
+ $ apt source gnumach
## On Debian Systems:
@@ -35,8 +35,8 @@ You can either use the git repository (see <http://git.savannah.gnu.org/git/hurd
Building GNU Mach requires the *build-essential* and *fakeroot* packages,
and some additional dependencies specified by the gnumach source package:
- # apt-get install build-essential fakeroot
- # apt-get build-dep gnumach
+ # apt install build-essential fakeroot
+ # apt build-dep gnumach
### Building and Installing ... Debian `.deb` files
diff --git a/microkernel/mach/mig/gnu_mig/building.mdwn b/microkernel/mach/mig/gnu_mig/building.mdwn
index 2e155e75..e14c8fb0 100644
--- a/microkernel/mach/mig/gnu_mig/building.mdwn
+++ b/microkernel/mach/mig/gnu_mig/building.mdwn
@@ -24,7 +24,7 @@ RCS](https://git.savannah.gnu.org/git/hurd/):
... or (if you are working on a Debian system) get the sources that are used for the
[current Debian mig package](http://packages.debian.net/source/unstable/mig):
- $ apt-get source mig
+ $ apt source mig
The unpacked source tree is around 1 MiB, and the build tree also is around 1 MiB.
@@ -35,8 +35,8 @@ The unpacked source tree is around 1 MiB, and the build tree also is around 1 Mi
Building MIG requires the *build-essential* and *fakeroot* packages,
and some additional dependencies specified by the mig source package:
- # apt-get install build-essential fakeroot
- # apt-get build-dep mig
+ # apt install build-essential fakeroot
+ # apt build-dep mig
### <a name="Building_and_Installing"> Building and Installing </a> <a name="_a_deb_file"> ... a _.deb_ file </a>
diff --git a/news/2010-10.mdwn b/news/2010-10.mdwn
index c7312256..0f098a1f 100644
--- a/news/2010-10.mdwn
+++ b/news/2010-10.mdwn
@@ -53,7 +53,7 @@ Thomas Schwinge:
> [[flubber|public_hurd_boxen]]'s root file system is totally hosed, and thus
> needs to be
> [re-installed](http://lists.gnu.org/archive/html/bug-hurd/2010-10/msg00003.html).
-> (I've been running `apt-get dist-upgrade` when the box apparently crashed.)
+> (I've been running `apt dist-upgrade` when the box apparently crashed.)
> Running `e2fsck` on it spew out over 50.000 lines of illegal and
> multiply-claimed block lists, before I terminated it, so no chance. I'll do
> this over the weekend. `/home/` etc. are not affected, thanks to being on a
diff --git a/news/2012-q1-q2.mdwn b/news/2012-q1-q2.mdwn
index 675883b9..7e629a35 100644
--- a/news/2012-q1-q2.mdwn
+++ b/news/2012-q1-q2.mdwn
@@ -84,10 +84,10 @@ took a dive into the core of the Hurd. Ludovic
and
[made console-run resilient against missing /dev/console](http://lists.gnu.org/archive/html/bug-hurd/2012-03/msg00002.html). Maksym
[tested the performance of tmpfs](http://lists.gnu.org/archive/html/bug-hurd/2012-03/msg00040.html),
-showing a speedup for apt-get calls from 22 seconds with
+showing a speedup for apt calls from 22 seconds with
[[hurd/libstore/examples/ramdisk]] and 32 seconds with
[[hurd/translator/ext2fs]] to 16 seconds with [[hurd/translator/tmpfs]] for
-apt-get invocations, showing the possible wins due to going deep. An obvious
+apt invocations, showing the possible wins due to going deep. An obvious
use case for tmpfs are
[faster Hurd LiveCDs](http://lists.gnu.org/archive/html/bug-hurd/2012-03/msg00050.html). Samuel
made it easier to dive in by
diff --git a/open_issues/perl.mdwn b/open_issues/perl.mdwn
index 62d29ac1..6e05a8c0 100644
--- a/open_issues/perl.mdwn
+++ b/open_issues/perl.mdwn
@@ -14,7 +14,7 @@ License|/fdl]]."]]"""]]
currently leads to: *Could not perform immediate configuration on 'perl'*.
Easy workaround:
- # apt-get install perl perl-base -o APT::Immediate-Configure=false
+ # apt install perl perl-base -o APT::Immediate-Configure=false
"""]]
diff --git a/public_hurd_boxen/installation.mdwn b/public_hurd_boxen/installation.mdwn
index 04ab5cd8..405215bb 100644
--- a/public_hurd_boxen/installation.mdwn
+++ b/public_hurd_boxen/installation.mdwn
@@ -87,7 +87,7 @@ Steps for *install_crosshurd*:
* if it's a Xen domU:
- # sudo apt-get --purge install libc0.3-xen libc0.3-i686-
+ # sudo apt --purge install libc0.3-xen libc0.3-i686-
* As needed:
diff --git a/unsorted/InstallTips.mdwn b/unsorted/InstallTips.mdwn
index 46b485ec..ed314979 100644
--- a/unsorted/InstallTips.mdwn
+++ b/unsorted/InstallTips.mdwn
@@ -73,8 +73,8 @@ You should have booted the kernel now, check output to see if it detects your ne
Be sure to issue
- apt-get update
- apt-get upgrade
+ apt update
+ apt upgrade
Before running x run the console
diff --git a/user/flaviocruz.mdwn b/user/flaviocruz.mdwn
index c4d3db69..a1636918 100644
--- a/user/flaviocruz.mdwn
+++ b/user/flaviocruz.mdwn
@@ -71,8 +71,8 @@ Creating an extensible translator library in lisp using the mig generated stubs.
### Project dependencies
- CLISP
-- [CFFI](http://common-lisp.net/project/cffi/) (apt-get installable)
-- [Flexi streams](http://www.weitz.de/flexi-streams/) (apt-get installable)
+- [CFFI](http://common-lisp.net/project/cffi/) (apt installable)
+- [Flexi streams](http://www.weitz.de/flexi-streams/) (apt installable)
- [Trivial garbage](http://www.cliki.net/trivial-garbage) (not in debian repositories)
- [cl-zip](http://common-lisp.net/project/zip/) (only needed for the zip translator)
- [cl-irc](http://common-lisp.net/project/cl-irc/) (for the irc translator)
diff --git a/user/tlecarrour/porting_guide_for_dummies.mdwn b/user/tlecarrour/porting_guide_for_dummies.mdwn
index 772be2bb..fe297102 100644
--- a/user/tlecarrour/porting_guide_for_dummies.mdwn
+++ b/user/tlecarrour/porting_guide_for_dummies.mdwn
@@ -27,12 +27,12 @@ Test on Hurd
### Installing the required files
-As `apt-get source` will download and extract many files, you may want to create a dedicated folder for the package and work from there.
+As `apt source` will download and extract many files, you may want to create a dedicated folder for the package and work from there.
mkdir PACKAGE
cd PACKAGE
- sudo apt-get build-dep PACKAGE
- apt-get source PACKAGE
+ sudo apt build-dep PACKAGE
+ apt source PACKAGE
### Trying to build the package