Benutzer:Marco Bakera/Projektideen: Unterschied zwischen den Versionen

Aus ITA-Wiki
Wechseln zu: Navigation, Suche
itawiki>Marco Bakera
(Hologramm: +smartphone video)
itawiki>Marco Bakera
(coreutils)
Zeile 1: Zeile 1:
  +
* Paket [http://www.gnu.org/software/coreutils/coreutils.html coreutils] aus den Quellen installieren
  +
<pre>
  +
wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.24.tar.xz
  +
tar xf coreutils-8.24.tar.xz
  +
cd coreutils-8.24/
  +
./configure --prefix=/home/bakera/tmp/coreutils/build
  +
make
  +
make install
  +
cd ../build/
  +
find
  +
./bin/ls
  +
./bin/date
  +
</pre>
 
* Analyse der 9/11-SMS. Oder: Live-Anzeige der Nachrichten in Echtzeit. https://911.wikileaks.org
 
* Analyse der 9/11-SMS. Oder: Live-Anzeige der Nachrichten in Echtzeit. https://911.wikileaks.org
 
* [http://www.computerhistory.org/_static/atchm/microsoft-word-for-windows-1-1a-source-code/ Quelltext von Word (Version 1.1)] analysieren.
 
* [http://www.computerhistory.org/_static/atchm/microsoft-word-for-windows-1-1a-source-code/ Quelltext von Word (Version 1.1)] analysieren.

Version vom 25. Dezember 2015, 14:50 Uhr

  wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.24.tar.xz
  tar xf coreutils-8.24.tar.xz 
  cd coreutils-8.24/
  ./configure --prefix=/home/bakera/tmp/coreutils/build
  make
  make install
  cd ../build/
  find
  ./bin/ls 
  ./bin/date