nettlebay Posted July 5, 2015 Share Posted July 5, 2015 Ouvrir un terminal: whereis fichier exemple: où est le fichier rc.local ? (whereis ne prend pas en compte l'extension de fichier, donc il vous donnera tous les fichiers "rc", y compris rc.local) whereis rc rc: /etc/rc2.d /etc/rc6.d /etc/rc0.d /etc/rc.local~ /etc/rc3.d /etc/rc5.d /etc/rc1.d /etc/rc.local /etc/rc4.d Ici, on a obtenu 8 réponses. On remarquera que whereis=where is (autrement-dit "où est" en Français) Link to comment Share on other sites More sharing options...
chapao Posted July 5, 2015 Share Posted July 5, 2015 Ah, sympa : une commande simple et logique ! Je connaissais "locate", mais assez limité et qui ne cherche pas vraiment sur le disque dur, mais dans la base de données d'indexation de celui-ci => on ne trouve pas forcément un fichier que l'on vient de créer, sauf à forcer la mise à jour de cette base de données ("sudo updatedb"). Et "find", mais presque trop riche et pas très intuitif, il faut par exemple taper "find -name nomdufichier" pour simplement chercher un fichier. => je vais tester cette nouvelle commande, merci ! Link to comment Share on other sites More sharing options...
Nikos Posted July 8, 2015 Share Posted July 8, 2015 Pour les binaires on peut utiliser aussi which gimp Link to comment Share on other sites More sharing options...
nettlebay Posted July 9, 2015 Author Share Posted July 9, 2015 Pour rc.local: "find" ne donne rien et "which" non plus (mais c'est normal). "locate" est intéressant. ~$ find rc.local find: "rc.local": Aucun fichier ou dossier de ce type ~$ locate rc.local /etc/rc.local /etc/rc.local~ /etc/init.d/rc.local /etc/rc2.d/S99rc.local /etc/rc3.d/S99rc.local /etc/rc4.d/S99rc.local /etc/rc5.d/S99rc.local ~$ whereis rc.local rc: /etc/rc2.d /etc/rc6.d /etc/rc0.d /etc/rc.local~ /etc/rc3.d /etc/rc5.d /etc/rc1.d /etc/rc.local /etc/rc4.d ~$ which rc.local Tout sur la recherche de fichiers: https://doc.ubuntu-fr.org/recherche_de_fichiers Link to comment Share on other sites More sharing options...
Nikos Posted July 13, 2015 Share Posted July 13, 2015 Bonjour nettlebay Je me permets juste de te soumettre une petit correction, la commande find fonctionne, mais il faut préciser que ta recherche doit débuter à la racine "/" sinon c'est dans le dossier courant que se fera ta recherche : nikos@nikos-freya:~$ find / -name rc.local -print 2>/dev/null /etc/rc.local /etc/init.d/rc.local Nikos Link to comment Share on other sites More sharing options...
nettlebay Posted July 13, 2015 Author Share Posted July 13, 2015 Merci pour cette info. Mais en fait, j'utilise le plus souvent Catfish... Link to comment Share on other sites More sharing options...
pioupiou41 Posted July 13, 2015 Share Posted July 13, 2015 Perso je cherche jamais les fichiers j'ai jamais trouvé ça utile lol Link to comment Share on other sites More sharing options...
nettlebay Posted November 7, 2015 Author Share Posted November 7, 2015 ?!? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now