ewfzapp Posted February 20, 2015 Share Posted February 20, 2015 Bonsoir, quelqu'un aurait il les connaissances, l'envie, le temps et la patience d'expliquer comment on fait un script pour automatiser les étapes qui se trouvent sur ce post (http://www.binarytides.com/better-elementary-os-luna/) ? Voilà! J'oubliait: s'il vous plait, et surtout merci!!! bonne soirée Link to comment Share on other sites More sharing options...
Nikos Posted February 20, 2015 Share Posted February 20, 2015 Ouais c'est possible. Là pas tout de suite ! Je suis au sport. Mais oui Link to comment Share on other sites More sharing options...
ewfzapp Posted February 20, 2015 Author Share Posted February 20, 2015 Cool L'idée c'est d'essayer d'apprendre... Merci a toi. Link to comment Share on other sites More sharing options...
Gwagwa Posted February 21, 2015 Share Posted February 21, 2015 C'est pas bien complique, tu as juste a faire un fichier script.sh avec : #!/bin/bash commande1 commande2 commande3 etc... commandeX Ensuite tu le rend executable avec un coup de chmod et tu l'execute. Apres pour un script plus elabore avec des tests, des boucles, des entrees utilisateurs etc ... Je te conseille d'aller faire un tour sur : http://doc.ubuntu-fr.org/tutoriel/script_shell J'espere que cela t'aidera 1 Link to comment Share on other sites More sharing options...
couim Posted February 22, 2015 Share Posted February 22, 2015 Tout à fait comme dit ci dessus , tu fais un fichier .sh que tu peux rendre exécutable avec chmod u+rwx script.sh Ou si tu as la flemmen tu peux le lancer avec la commande bash script.sh Link to comment Share on other sites More sharing options...
ewfzapp Posted February 22, 2015 Author Share Posted February 22, 2015 Merci les amis, je vais tester cela cet AM. Une question tout de même si vous me le permettez, ce script m'oblige t il a rester devant la machine pour valider les installations successives? ou cela se fait il automatiquement? Link to comment Share on other sites More sharing options...
pioupiou41 Posted February 22, 2015 Share Posted February 22, 2015 Vu que c'est des commandes "sudo" il devrait te demander ton mdp, mais après ça doit s'enchainer. Link to comment Share on other sites More sharing options...
ewfzapp Posted February 22, 2015 Author Share Posted February 22, 2015 Cool je test ca ... Link to comment Share on other sites More sharing options...
ewfzapp Posted February 22, 2015 Author Share Posted February 22, 2015 Bon tout fonctionne nickel, mais je souhaiterais aller un peu plus loin.... Je vais m'informer mais j'aimerais vous poser deux questions: 1- lorsqu'une application va s'installer le terminal me demande de valider par oui ou non a chaque fois, peut on supprimer cette demande? et valider le oui systématiquement? 2- Pour installer "Jbrout" je suis obligé d'éditer fstab pour ajouter les lignes suivantes: ##Jbrout picture manager deb http://jbrout.free.fr/download/debianbinary/ est il possible de les intégrer a fstab sans intervention "manuelle" de ma part? Voilà, avec ça ca devrait être pas mal... en tout cas merci pour vos infos!! Link to comment Share on other sites More sharing options...
pioupiou41 Posted February 22, 2015 Share Posted February 22, 2015 attends... tu mets un lien http sur ton fstab ??? je crois pas que ça soit une bonne solution ça doit pas être top sécure :-/ Link to comment Share on other sites More sharing options...
ewfzapp Posted February 22, 2015 Author Share Posted February 22, 2015 glurp!! excuse moi je suis un peu relou c'est sur mon /etc/apt/sources.list !!! Des fois je plane... Link to comment Share on other sites More sharing options...
pioupiou41 Posted February 22, 2015 Share Posted February 22, 2015 haaaa sudo apt-add-repository après pour passer de deb à ppa.. je sais pas pour valider automatiquement tes ligne de commande ajoute -y a la fin de chacune d'elle Link to comment Share on other sites More sharing options...
ewfzapp Posted February 22, 2015 Author Share Posted February 22, 2015 Merci l'ami, je teste ça Mardi soir.... Bonne nuit.... Link to comment Share on other sites More sharing options...
Nikos Posted February 23, 2015 Share Posted February 23, 2015 Je vois que d'autres personnes m'ont devancé. Toutefois pour répondre à un de tes points demandés, dans la documentation il y a l'option --yes qui permet de répondre oui automatiquement. A utiliser avec parcimonie quand mêmê ! Link to comment Share on other sites More sharing options...
ewfzapp Posted February 25, 2015 Author Share Posted February 25, 2015 Merci a tous, mon "script" fonctionne over the top... (mais bon, il est pas super sexy!!) Link to comment Share on other sites More sharing options...
pioupiou41 Posted February 26, 2015 Share Posted February 26, 2015 A utiliser avec parcimonie quand même! C'est qui Parcimonie ? Link to comment Share on other sites More sharing options...
ewfzapp Posted February 28, 2015 Author Share Posted February 28, 2015 Un rital, un pote a Abonescient, un Arménien:: Link to comment Share on other sites More sharing options...
ewfzapp Posted March 1, 2015 Author Share Posted March 1, 2015 Bonjour les amis, Une petite question pour améliorer mon script, svp... Au début de mon script, j'aimerais commencer par activer les dépôts partenaires de Canonical. Pour ce faire, je tape la commande suivante: sudo software-properties-gtk Et là je coche les cases nécessaires. Je pense qu'il est possible de le faire en ligne de commande pour l'intégrer au début de mon script; mais j'ai des doutes sur la syntaxe... Les dépôts sont surement: http://archive.canonical.comprecise/partner Sources et http://archive.canonical.comprecise/partner Quelqu'un saurait il m'aiguiller? Merci d'avance... Link to comment Share on other sites More sharing options...
pioupiou41 Posted March 1, 2015 Share Posted March 1, 2015 Cherche la methode pour editer et modifier une ligne dans un fichier.Le but étant de modifier le fichier sources.list Link to comment Share on other sites More sharing options...
ewfzapp Posted March 1, 2015 Author Share Posted March 1, 2015 Bon, je ne suis pas sûr de moi mais est ce que ça c'est bon: echo "deb-src http://archive.canonical.com/ubuntu precise partner" | sudo tee -a /etc/apt/sources.list echo "deb http://archive.canonical.com/ubuntu precise partner" | sudo tee -a /etc/apt/sources.list Surtout, n'hésitez pas a vous marrer!! Link to comment Share on other sites More sharing options...
pioupiou41 Posted March 1, 2015 Share Posted March 1, 2015 tee -a étant la commande pour ajouter la ligne? Link to comment Share on other sites More sharing options...
Nikos Posted March 2, 2015 Share Posted March 2, 2015 J'aurais plutôt tenté cela : sudo echo "deb-src http://archive.canonical.com/ubuntu precise partner" >> /etc/apt/sources.list sudo echo "deb http://archive.canonical.com/ubuntu precise partner" >> /etc/apt/sources.list Si tu obtiens le résultat que tu souhaites c'est le plus important. Par contre ce sujet à plus sa place dans la section Code/Bash. Je me permets de le déplacer. Nikos Link to comment Share on other sites More sharing options...
ewfzapp Posted March 3, 2015 Author Share Posted March 3, 2015 J'essaye ça. Merci a vous tous... Link to comment Share on other sites More sharing options...
ewfzapp Posted March 7, 2015 Author Share Posted March 7, 2015 Ça ne marche pas... Link to comment Share on other sites More sharing options...
ewfzapp Posted March 20, 2015 Author Share Posted March 20, 2015 Hello boys, me voilà de retour avec une question un peu reloude: Dans mon script j'installe le paquet des polices microsoft, qui nécessite l'acceptation de leur licence (texte sur fond rose!!) est il possible de l'accepter sans être coincé devant l'écran, enfin, que ca se fasse automatiquement...? Ouais je sais, je chipotte.... mais merci d'avance... 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