summaryrefslogtreecommitdiff
path: root/community
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 /community
parent56e1abda424f1dc7bbeccfe28e05a2caa50bc6de (diff)
People should really use apt instead of apt-get nowadays
Diffstat (limited to 'community')
-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
5 files changed, 15 insertions, 15 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