Difference between revisions of "User:Marck"

From TuxFamilyFAQ
Jump to navigationJump to search
Line 1: Line 1:
 
==Carnet de notes [http://www.minix3.org/ Minix3]-[http://wiki.minix3.org/en/DevelopersGuide/TrackingCurrent current]==
 
==Carnet de notes [http://www.minix3.org/ Minix3]-[http://wiki.minix3.org/en/DevelopersGuide/TrackingCurrent current]==
 
Marc alias marck chez tuxfamily point org
 
Marc alias marck chez tuxfamily point org
 +
 +
===# configuration===
 +
 +
'''## clavier (12.2011)'''
 +
 +
loadkeys /usr/lib/keymaps/french.map
 +
 +
'''## timezone (12.2011)'''
 +
 +
echo TZ=Europe/Paris > /etc/rc.timezone
 +
 +
'''## hostname (12.2011)'''
 +
 +
Le hostname ''/etc/hostname.file'' est fixé sur l'IP par la commande ''hostaddr -h'' du fichier ''/usr/etc/rc''.
 +
 +
Désactivation
 +
#    if [ "$net" ]
 +
#    then
 +
#      # Get the nodename from the DNS and set it.
 +
#      trap '' 2
 +
#      intr -t 20 hostaddr -h
 +
#      trap 2
 +
#    fi
 +
  
 
===# [http://ctwm.free.lp.se/ ctwm]===
 
===# [http://ctwm.free.lp.se/ ctwm]===
Line 31: Line 55:
 
  > OPT_CPPFLAGS += -I/usr/pkg/X11R6/include
 
  > OPT_CPPFLAGS += -I/usr/pkg/X11R6/include
 
  > LDFLAGS += -R/usr/pkg/X11R6/lib -L/usr/pkg/X11R6/lib
 
  > LDFLAGS += -R/usr/pkg/X11R6/lib -L/usr/pkg/X11R6/lib
 
 
===# hostname===
 
 
'''## configuration (12.2011)'''
 
 
Le hostname ''/etc/hostname.file'' est fixé sur l'IP par la commande ''hostaddr -h'' du fichier ''/usr/etc/rc''.
 
 
Désactivation
 
#    if [ "$net" ]
 
#    then
 
#      # Get the nodename from the DNS and set it.
 
#      trap '' 2
 
#      intr -t 20 hostaddr -h
 
#      trap 2
 
#    fi
 
 
 
===# loadkeys===
 
 
'''## configuration (12.2011)'''
 
 
loadkeys /usr/lib/keymaps/french.map
 
  
  
Line 76: Line 77:
 
  ---
 
  ---
 
  > CC = gcc
 
  > CC = gcc
 
 
===# timezone===
 
 
'''## configuration (12.2011)'''
 
 
echo TZ=Europe/Paris > /etc/rc.timezone
 

Revision as of 10:13, 10 December 2011

Carnet de notes Minix3-current

Marc alias marck chez tuxfamily point org

# configuration

## clavier (12.2011)

loadkeys /usr/lib/keymaps/french.map

## timezone (12.2011)

echo TZ=Europe/Paris > /etc/rc.timezone

## hostname (12.2011)

Le hostname /etc/hostname.file est fixé sur l'IP par la commande hostaddr -h du fichier /usr/etc/rc.

Désactivation

#    if [ "$net" ]
#    then
#       # Get the nodename from the DNS and set it.
#       trap  2
#       intr -t 20 hostaddr -h
#       trap 2
#    fi


# ctwm

à venir


# evilwm

## compilation evilwm 1.1.0 (12.2011)

Makefile.diff

10c10
< prefix = /usr
---
> prefix = /usr/pkg
13c13
< mandir = $(datarootdir)/man
---
> mandir = $(prefix)/man
30,31c30,31
< OPT_CPPFLAGS += -DRANDR
< OPT_LDLIBS   += -lXrandr
---
> #OPT_CPPFLAGS += -DRANDR
> #OPT_LDLIBS   += -lXrandr
60a61,64
> 
> # Minix3
> OPT_CPPFLAGS += -I/usr/pkg/X11R6/include
> LDFLAGS += -R/usr/pkg/X11R6/lib -L/usr/pkg/X11R6/lib


# sic

## compilation sic 1.1 (12.2011)

diff sic.c

< static char *port = "ircd";
---
> static char *port = "6667";

config.mk.diff

7,8c7,8
< PREFIX = /usr/local
< MANPREFIX = ${PREFIX}/share/man
---
> PREFIX = /usr/pkg
> MANPREFIX = ${PREFIX}/man
20c20
< CC = cc
---
> CC = gcc