freehelia_ebook

Table of Contents Implementing Free Software Solution in Workstations – Case: Linux in Helia – One page version Abstract Paper Contents 1 Introduction – FreeHelia 1.1 Previous Research 1.2 Goals and Research Problem 1.3 Method and Structure of the Thesis … Continue reading

Posted in Old Site | Tagged , | Comments Off on freehelia_ebook

aboutusers

  #!/bin/bash # aboutusers – print information about human users # (Actually a bash shell scripting example program) # (c) 2006-03-06 Tero Karvinen www.iki.fi/karvinen # GNU General Public License version 2   for DIR in /home/* do USER=$(basename $DIR); echo … Continue reading

Posted in Old Site | Tagged , , , | 1 Comment

Ohjelman kääntäminen lähdekoodista ./configure && make

Ohjelman kääntäminen lähdekoodista ./configure && make Esimerkkinä GNU wget. Lataa ohjelman viimeisin lähdekoodi. Etsimisessä auttaa http://freshmeat.net , lähdekoodin voi ladata ohjelman kotisivulta (wget kotisivu). Puretaan tervapallo $ tar -zxvf wget*.tar.gz Configure tunnistaa ympäristön, kuten arkkitehtuurin ja kokonaisluvun koon: $ ./configure … Continue reading

Posted in Old Site | Tagged , , | Comments Off on Ohjelman kääntäminen lähdekoodista ./configure && make