j'ai installé le serveur Ubuntu, je n'ai pas de connexion Internet mais un paquet .Zip sur un CD. Comment puis-je l'installer?
monté le cdrom déjà et peut voir l'application
1) Décompressez le archive.Zip en chemin/vers/extrait/conten:
unzip /path/to/archive.Zip -d path/to/extracted/content
2) Installez le contenu de l'archive:
si c'est un package.deb:
Sudo dpkg -i path/to/extracted/content/package.deb
Sudo apt-get install -f
si c'est un install-script:
Sudo bash path/to/extracted/content/install-script
3) Supprimez les fichiers d'installation (package.deb ou install-script):
rm path/to/extracted/content/package.deb
ou
rm path/to/extracted/content/install-script
Pour d'autres besoins:
Pour entrer dans chemin/vers/quelque part:
cd path/to/somewhere
Pour voir ce qu'il y a à l'intérieur chemin/vers/quelque part:
ls -a path/to/somewhere
Pour lire un fichier texte (n'importe quel format, comme .txt, .html, .sh, ...):
cat path/to/text-file
Pour éditer un fichier texte (n'importe quel format, comme .txt, .html, .sh, ...):
nano path/to/text-file