Outils pour utilisateurs

Outils du site


Panneau latéral

FOLLOW ...

Linux, freeBSD

Python

Plugins WP

Informatique et robotique

En classe
KTURTLE
Arduino

Shell/php scripts

aidememoire-freebsd

Ceci est une ancienne révision du document !


Liste commandes UNIX

Programmation BASH

Récupérer le système

# /rescue/mount 

# /rescue/mount -rw /

# fsck

# /rescue/mount -a

RESEAU

ifconfig
ifconfig wlan0 scan
pciconf -lv
 pciconf -lv | grep -B3 network

Gestion de la connexion

 cat /etc/wpa_supplicant.conf

Si gestion graphique wpa_cli

 pkg ins wifimgr

Information sur les paquets

-d → dépendances -D → message information

 pkg info -D plank

Génrer un fichier lors de l'install

# pkg install gimp | tee install_gimp.log
sudo pkg install gimp | sudo tee install_gimp.log

It shows the pkg-message for every installed package.

 pkg info -aD

ntpdate

ntpdate -v -b ntp.unice.fr

wine / fonts

Put this in ~/.config/fontconfig/fonts.conf:

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
 
<fontconfig>
 
  <!-- antialias all fonts -->
  <match target="font">
    <edit name="antialias" mode="assign"><bool>true</bool></edit>
    <edit name="hinting"   mode="assign"><bool>true</bool></edit>
    <edit name="hintstyle" mode="assign"><const>hintslight</const></edit>
    <edit name="rgba"      mode="assign"><const>rgb</const> </edit>
    </match>
 
</fontconfig>

gpart

Formater une clef USB

gpart destroy -F da0
gpart create -s mbr da0
gpart add -t fat32 da0
newfs_msdos -L FILES -F 32 /dev/da0s1
aidememoire-freebsd.1552231060.txt.gz · Dernière modification : 2019/07/17 19:24 (modification externe)