Partie Théorique
- Systèmes d’exploitation pour ordinateurs :
- Programmes de la mémoire ROM :
- BIOS (Basic Input/Output System)
- POST (Power-On Self-Test)
- Bootstrap loader
- CMOS Setup
- Système multitâche : Système d’exploitation capable d’exécuter plusieurs programmes simultanément en partageant les ressources du processeur.
- Configuration minimale Windows 10 64 bits :
- Processeur : 1 GHz ou plus rapide
- RAM : 2 Go
- Espace disque : 20 Go
- Carte graphique : DirectX 9 avec pilote WDDM 1.0
- Structure logique disque dur : Organisation en partitions, volumes, systèmes de fichiers, répertoires et fichiers.
Partie Pratique
Windows PowerShell
# 1. Afficher utilisateurs locaux
Get-LocalUser
# 2. Afficher groupes
Get-LocalGroup
# 3. Créer groupe G1
New-LocalGroup -Name "G1"
# 4. Créer utilisateurs
New-LocalUser -Name "U1"
New-LocalUser -Name "U2"
# 5. Ajouter au groupe
Add-LocalGroupMember -Group "G1" -Member "U1","U2"
# 6. Vérifier membres
Get-LocalGroupMember -Group "G1"
# 7-10. Commandes pare-feu
Get-Command -Module NetSecurity
Get-NetFirewallProfile | Select-Object Name,Enabled
Set-NetFirewallProfile -Profile Domain -Enabled True
Set-NetFirewallProfile -Profile Private -Enabled False
DISKPART
DISKPART
SELECT DISK 0
DETAIL DISK
CONVERT GPT
SELECT PARTITION 3
ASSIGN LETTER=G
SELECT DISK 1
CLEAN
Linux
# 1. Afficher répertoire
pwd
# 2. Créer arborescence
mkdir -p TR1/{D1/{P1,P2},ID{1/lecon,2/T1/T2,3}}
# 3. Créer fichiers
touch T2/test{1,2}
# 4-6. Manipulations fichiers
cp T2/test* P1/
mv T2 ID1/
cp -r P1 ID2/
# 7. Archivage
tar -cvf archive.tar D1/
# 8-9. Administration
su -
ls -la ID1/
# 10. Création utilisateur
useradd -u 555 -c "utilisateur simple" -d /home/ista -s /bin/sh ofppt
# 11-12. Permissions
chmod 766 test1
chown ofppt:ID2 test2
# 13-15. Commandes RPM
rpm -qa
rpm -i paquettage.rpm
rpm -U paquettage.rpm