Projet

Général

Profil

SOP 002-Environnement informatique » Historique » Version 150

Patrice Nadeau, 2023-02-25 10:57

1 85 Patrice Nadeau
# SOP 002-Environnement informatique
2 1 Patrice Nadeau
3 122 Patrice Nadeau
Ce SOP explique comment configurer un poste avec le système d’exploitation *openSUSE* pour :
4 142 Patrice Nadeau
* La programmation (C)
5
* La conception de circuits électroniques
6 1 Patrice Nadeau
7
---
8
9
{{toc}}
10
11 85 Patrice Nadeau
## Matériel
12 1 Patrice Nadeau
13 85 Patrice Nadeau
### Ordinateur
14 1 Patrice Nadeau
15
* Processeur
16 95 Patrice Nadeau
    * 64 bits
17 1 Patrice Nadeau
* Mémoire
18 95 Patrice Nadeau
    * 2 Mo
19 1 Patrice Nadeau
* Disque
20
* Port série ou convertisseur USB/série (communication série et programmeur AVR)
21
* Port USB 2.0 ou plus (sonde Logic et programmeur AVR)
22
23 85 Patrice Nadeau
### Écran
24 1 Patrice Nadeau
25
* Résolution minimal de 1690x900 (VIM 2 x 80 colonnes + taglist)
26 131 Patrice Nadeau
27 1 Patrice Nadeau
28 85 Patrice Nadeau
### Programmeur
29 1 Patrice Nadeau
30
Pour le transfert des programmes vers les uC AVR.
31
32
Les programmeur suivants ont été testés :
33 88 Patrice Nadeau
34 1 Patrice Nadeau
* Atmel STK500
35
* Atmel STK600
36
* Atmel AVRISP mkII
37
38 143 Patrice Nadeau
### Analyseur logique
39
40
* Remplacé par le modèle [Saleae Logic 8](https://cad.saleae.com/products/saleae-logic-8)
41
42 85 Patrice Nadeau
## Logiciels
43 1 Patrice Nadeau
44 85 Patrice Nadeau
### Système d'exploitation
45 1 Patrice Nadeau
46 98 Patrice Nadeau
openSUSE Leap 15 avec interface graphique
47 1 Patrice Nadeau
48 85 Patrice Nadeau
### Navigateur Web
49 1 Patrice Nadeau
50
Pour l’accès à Redmine
51
52 85 Patrice Nadeau
#### Firefox 
53 1 Patrice Nadeau
54
Dictionnaire français
55
56 85 Patrice Nadeau
### Suite bureautique
57 1 Patrice Nadeau
58
LibreOffice
59
60 85 Patrice Nadeau
### Autres
61 1 Patrice Nadeau
62
Document viewer (Evince)
63
64 144 Patrice Nadeau
### Vim
65
Éditeur de texte
66 97 Patrice Nadeau
67 1 Patrice Nadeau
Plusieurs compléments sont installés et une personnalisation est appliquée.
68
69 93 Patrice Nadeau
```bash
70 109 Patrice Nadeau
sudo zypper install gvim vim-data vim-plugin-a vim-plugin-NERDtree vim-plugin-fugitive
71 93 Patrice Nadeau
```
72 1 Patrice Nadeau
73 117 Patrice Nadeau
Plugin de <http://www.vim.org/>
74 1 Patrice Nadeau
75 93 Patrice Nadeau
* tagbar
76 1 Patrice Nadeau
77
#### Personnalisation
78 98 Patrice Nadeau
79 115 Patrice Nadeau
1. Utilisation de la police de caractère **Hack**
80 98 Patrice Nadeau
81 115 Patrice Nadeau
    ```bash
82
    wget https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip
83
    unzip Hack*.zip
84
    sudo cp ttf/* /usr/share/fonts
85
    rm -rf ttf
86
   ```
87 1 Patrice Nadeau
88 115 Patrice Nadeau
1. Copier les gabarits
89
   > TODO : gabarits Vim
90
   ```bash
91
   mkdir ~/Documents/projects
92
   ...
93
   ```
94 1 Patrice Nadeau
95 115 Patrice Nadeau
1. Créer des liens symboliques pour :
96 1 Patrice Nadeau
97 115 Patrice Nadeau
    ```bash
98
    ln -s ~/Documents/projects/vim/vimrc ~/.vimrc
99
    ln -s~/Documents/projects/vim/vim ~/.vim
100 1 Patrice Nadeau
    ln -s~/Documents/projects/linux/ctags ~/.ctags
101
    ```
102
103
1. Créer un raccourci pour l’application
104
105
    ```bash
106 115 Patrice Nadeau
    gvim –cmd:cd /home/repertoire_projets
107
    ```
108 144 Patrice Nadeau
109
### Ctags
110
111
```bash
112
sudo zypper install ctags
113
```
114 1 Patrice Nadeau
115
### Minicom
116
117
Logiciel de terminal sous GNU/Linux
118
119
Installation
120
121 93 Patrice Nadeau
```bash
122
sudo zypper install minicom
123
```
124 85 Patrice Nadeau
125 1 Patrice Nadeau
Personnalisation
126
Ajouter l’utilisateur dans le groupe *dialout*.
127
128 93 Patrice Nadeau
```bash
129
sudo usermod --groups dialout username
130
```
131 85 Patrice Nadeau
132 41 Patrice Nadeau
L’usager doit se reloguer.
133 1 Patrice Nadeau
134
### XƎTEX
135 85 Patrice Nadeau
136
Installation
137
138 93 Patrice Nadeau
```bash
139 100 Patrice Nadeau
sudo zypper install texlive-latex texlive-listing texlive-fancyhdr texlive-graphics texlive-todo texlive-siunitx texlive-beamer texlive-context-fullpage texlive-lastpage texlive-polyglossia texlive-lstaddons
140 93 Patrice Nadeau
```
141 1 Patrice Nadeau
142 147 Patrice Nadeau
### gcc
143
GNU Compiler Collection
144 17 Patrice Nadeau
145 93 Patrice Nadeau
```bash
146 1 Patrice Nadeau
sudo zypper install gcc make
147 93 Patrice Nadeau
```
148 1 Patrice Nadeau
149 147 Patrice Nadeau
### splint
150 86 Patrice Nadeau
151 1 Patrice Nadeau
Vérificateur de syntaxe C
152
153 93 Patrice Nadeau
```bash
154
sudo zypper install splint
155
```
156 86 Patrice Nadeau
157
### Doxygen
158 1 Patrice Nadeau
159 136 Patrice Nadeau
Outil de documentation à partir du code source
160 1 Patrice Nadeau
161 136 Patrice Nadeau
* Installation à partir d'openSUSE
162
    > La version 1.8.14 contient un [bogue](https://github.com/doxygen/doxygen/issues/6769)
163
    ```bash
164
    sudo zypper install doxygen texlive-latex texlive-xtab texlive-multirow texlive-sectsty texlive-tocloft texlive-tabu 
165
    ```
166 1 Patrice Nadeau
167 136 Patrice Nadeau
* Installation a partir du « binary » 
168 1 Patrice Nadeau
169 136 Patrice Nadeau
    > Version 1.9.6
170
    ```bash
171
    wget https://www.doxygen.nl/files/doxygen-1.9.6.linux.bin.tar.gz
172
    tar -xf doxygen-1.9.6.linux.bin.tar.gz
173
    cd doxygen-1.9.6
174
    sudo make
175
    sudo make install
176
    sudo zypper install texlive-latex texlive-xtab texlive-multirow texlive-sectsty texlive-tocloft texlive-hanging
177
    ```
178 1 Patrice Nadeau
179
### Git
180 92 Patrice Nadeau
181
Système de contrôle de version
182 1 Patrice Nadeau
183 148 Patrice Nadeau
* Installation
184 86 Patrice Nadeau
185 148 Patrice Nadeau
    ```bash
186
    sudo zypper install git
187
    ```
188 86 Patrice Nadeau
189 124 Patrice Nadeau
### Atmel AVR
190 1 Patrice Nadeau
191
Pour la programmation des micro-contrôleur Atmel AVR 8 bits (Microchip).
192 89 Patrice Nadeau
193 112 Patrice Nadeau
#### GNU toolchain
194 123 Patrice Nadeau
195
1. Télécharger du site <https://www.microchip.com/en-us/tools-resources/develop/microchip-studio/gcc-compilers>
196
1. Copier les fichiers décompressés dans `/opt`
197
1. Créer un lien symbolique
198
199
    ````bash
200 106 Patrice Nadeau
    sudo ln --symbolic /opt/avr-toolchain/bin/∗ /usr/bin
201 1 Patrice Nadeau
    ```
202 103 Patrice Nadeau
203 1 Patrice Nadeau
#### Avrdude
204
> Version 6.3
205
206 118 Patrice Nadeau
Logiciel de transfert pour AVR.
207 90 Patrice Nadeau
208 118 Patrice Nadeau
1. Installer les modules suivants :
209
210
    ```bash
211
    sudo zypper install avrdude libusb-compat-devel
212 90 Patrice Nadeau
    ```
213 118 Patrice Nadeau
1. Ajouter l'utilisater au groupe **dialout** (permissions USB/série)
214
215
    > *USER* étant le nom de l'utilisateur
216
    ```bash
217
    sudo usermod --groups dialout USER
218 55 Patrice Nadeau
    ```
219 120 Patrice Nadeau
1. L’usager doit se reloguer.
220 119 Patrice Nadeau
221 91 Patrice Nadeau
### GNUCap
222 139 Patrice Nadeau
Simulation de circuit électronique.
223 130 Patrice Nadeau
224 86 Patrice Nadeau
```bash
225 1 Patrice Nadeau
sudo zypper install gnucap
226 86 Patrice Nadeau
````
227 72 Patrice Nadeau
228 129 Patrice Nadeau
### KiCAD
229
230 113 Patrice Nadeau
Logiciel de conception de circuit électroniques.
231 91 Patrice Nadeau
232
> Version 5.1
233
234 149 Patrice Nadeau
* Installation
235 1 Patrice Nadeau
236 149 Patrice Nadeau
    ```bash
237
    sudo zypper install kicad
238
   ```
239 87 Patrice Nadeau
240 104 Patrice Nadeau
#### Personnalisation
241 87 Patrice Nadeau
242 150 Patrice Nadeau
Les fichiers gabarit d'un « nouveau » projet sont :
243 87 Patrice Nadeau
244
* Global (system wide) : **/usr/share/kicad/template/kicad.pro**.
245 1 Patrice Nadeau
* Utilisateur courant : **~/noname.pro**
246 86 Patrice Nadeau
247 1 Patrice Nadeau
Comme les libraires fournis proviennent de source divers et que je ne contrôle pas, je ne travaille qu’avec mes propres libraires, j’enlève donc les librairies de KiCad et j'ajoute les miennes.
248 125 Patrice Nadeau
249 1 Patrice Nadeau
* Fichier **~/noname.pro** (2 lignes à modifier) :
250
* *LibDir* : **~/Documents/projects/cad/libraries/kicad/**
251
252
### Logic
253 128 Patrice Nadeau
254 31 Patrice Nadeau
Analyseur logique
255 126 Patrice Nadeau
> Version 2.4.3
256 127 Patrice Nadeau
257 126 Patrice Nadeau
1. Téléchargement à partir de <http://www.saleae.com/downloads>
258
1. Exécuter le fichier
259 1 Patrice Nadeau
1. Installer la règle `udev` comme affiché a l’écran
260
1. Brancher l'analyseur.