Soluciones en la shell de problemas sencillos
En esta página se presentan trucos, o tricks, para resolver probleas cotidianos desde la shell.
Copiar el contenido de un directorio a otra cuenta
Supongamos que el directorio datos
se quiere trasladar a una cuenta que poseemos en otro ordenador (destino.org).
$ tar cvfz datos.tgz datos/ $ ftp destino.org 220 destino.org FTP server (Version wu-2.6.2(1) Fri Jul 27 12:19:39 UTC 2007) ready. Name (destino:usuario): 331 Password required for japf. Password: 230 User usuario logged in. Remote system type is UNIX. Using binary mode to transfer files. ftp> put datos.tgz local: datos.tgz remote: datos.tgz 200 PORT command successful. 150 Opening BINARY mode data connection for datos.tgz. 226 Transfer complete. 882668 bytes sent in 0.10 secs (8718.1 kB/s) ftp> quit $
Ver gráficos de un ordenador remoto
$ echo $DISPLAY 127.0.0.1:15.0 $ xhost destino.org $ ssh usuario@destino.org password: Linux destino 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Wed Oct 10 17:41:17 2007 $ export DISPLAY=origen.org:15 $ xclock -uptime 1 $
Manipulación de ficheros pdf
Para poner una marca de agua a un documento:
$ pdftk documento.pdf background marca.pdf output documentomarcado.pdf
Para más información ver un artículo sobre pdftk
.
- bash/solprosen.txt
- Última modificación: 2007/11/07 14:07
- (editor externo)