Post

Comando SCP

Tipicamente, la sintassi del programma   scp   è la stessa del comando   cp   che serve per copiare i file in locale.   Per copiare un file dal mio pc verso il server remoto, dovrei utilizzare il seguente formato: scp FileSorgente nomeUtente@host:directory/FileDestinazione Al contrario se volessi copiare un file da remoto nel mio computer: scp nomeUtente@host:directory/FileSorgente FileDestinazione Quindi nel mio caso se volessi copiare un documento in una directory sul server remoto : scp miodocumento.txt pippo@134.34.54.20:/home/pippo/miodocumento.txt Se invece volessi fare il contrario cioè copiare un file dal server remoto nel mio pc : scp pippo@134.34.54.20:/home/pippo/miodocumento.txt miodocumento.txt Se volessi trasferire tutti i file cartella "sorgente" del pc remoto alla cartella "destinazione" del pc locale: scp pippo@134.34.54.20:/home/pippo/sorgente/* /home/pluto/destinazione/ Se la porta del server non fosse la 22 per specificarla dovrei

Come istallare Apache php mysql su OS X 10-10 Yosemite

Soluzione vediamo come istallare Apache php mysql su OS X 10-10 Yosemite Per gli informati del settore è noto che c’è una funzionalità, ovvero un modulo apache, che permette la configurazione delle home-direcotory degli utenti. Il modulo in questione si chiama:  userdir_module . Ebbene nel nuovo file httpd.conf questo modulo è commentato, ovvero appare in questo modo: #LoadModule userdir_module libexec/apache2/mod_userdir.so Vediamo come risolvere questi problemi. Apriamo il file di configurazione tramite il comando (vi verrà chiesta la password di root): sudo vi /etc/apache2/httpd.conf Andiamo alla riga 166 e decommentiamo  (togliere il commento, ovvero il cancelletto #) la riga in questione facendola diventare: LoadModule userdir_module libexec/apache2/mod_userdir.so Non finisce qui. C’è un’altra riga nell’httpd.conf che ci interessa. E’ la riga che ci dice come far funziona il modulo userdir, ovvero la riga di configurazione. Questa è la riga 493 dello stesso file ed è c

unire pdf tramite automator di Mac con terminale

Immagine
Joining PDF Files in OS X From the Command Line In OS X, PDF files can be concatenated manually using Preview. But if you are happy using Terminal there’s an easier way, thanks to a Python script installed by default in /System/Library/Automator Combining PDF files manually using Preview Preview allows PDF files to be combined by dragging and dropping, as long as you are careful when do it - or it won’t work. First of all, open the first PDF file in Preview as per normal. Then drag each of the other PDFs in turn, over the last page thumbnail in the drawer. This is where you need to be careful - you need to drop the document  over  the thumbnail of the previous document last page, not underneath it. Otherwise Preview will treat them as separate document and won’t merge them. The difference is quite easy to spot - when doing it right Preview will show a border around the thumbnail in the sidebar, instead of a line underneath it - see image below. How to spot whether Preview

Come unire più pdf tramite terminale mac

Mac OS X: How to merge pdf files in a directory according to their file names https://www.pdflabs.com/tools/pdftk-server/ Try  pdftk . It is command-line software that can join PDF files (and do lots of other stuff, too, but that isn't relevant here). You can download it  from the official pdftk web page . Sample syntax: pdftk old1.pdf old2.pdf old3.pdf cat output new.pdf will create the file  new.pdf  that contains the concatenation of the files  old1.pdf ,  old2.pdf ,  old3.pdf . To solve your problem, with your example filenames: pdftk 1000.*.pdf cat 1000.pdf pdftk 2000.*.pdf cat 2000.pdf and so on. You can use shell scripting to make this completely automatic if desired (but you'll have to spend a little time on your own learning how to write shell scripts). Assuming all files are named 1000.x, 2000.x etc. a shell script could look somehow like this #!/bin/bash for n in {1..9}; do if [[ -r ${n}000.1.pdf ]]; then rm -f ${n}000.pdf pdf

terminale linux: lista dei file con path assoluto

In order to get absolute directory name with ls, enter in the terminal's command shell: $ ls -d $PWD/* Example ls with absolute directory name: $ ls -d $PWD/* /home/user/Desktop   /home/user/Music    /home/user/Templates /home/user/Documents /home/user/Pictures /home/user/todo.txt /home/user/Downloads /home/user/Public   /home/user/Videos $ ls with long listing format (-l) absolute directory name (-d): $ ls -ld $PWD/* total 4 drwxr-xr-x 2 user user  80 2011-08-17 16:52 /home/user/Desktop drwxr-xr-x 2 user user  40 2011-08-17 16:52 /home/user/Documents drwxr-xr-x 2 user user  40 2011-08-17 16:52 /home/user/Downloads drwxr-xr-x 2 user user  40 2011-08-17 16:52 /home/user/Music drwxr-xr-x 2 user user 120 2011-08-17 18:14 /home/user/Pictures drwxr-xr-x 2 user user  40 2011-08-17 16:52 /home/user/Public drwxr-xr-x 2 user user  40 2011-08-17 16:52 /home/user/Templates -rw-r--r-- 1 user user 131 2011-08-17 18:07 /home/user/todo.txt drwxr-xr-x 2 user user  40 2011-08-17 16:5

Importare dump di database Mysql InnoDB ed errore “foreign key constraint fails”

Con tabelle InnoDB impostate con foreign key constraints e dover spostare i database da un server all’altro. Se proviamo ad importare un dump di un database Mysql con tabelle Innodb potremmo imbatterci nelle errore di tipo foreign key constraint fails . La soluzione è molto semplice, basta disattivare il controllo di foreign key constraint inserendo all’inizio del file contenente il backup del database Mysql la seguente query : SET FOREIGN_KEY_CHECKS = 0; Non dimenticate di riattivare il controllo mettendo alla fine del file contenente il dump del database la query: SET FOREIGN_KEY_CHECKS = 1; Ora potrete caricare il dump senza nessun problema.

[Archivio ] 9 Steps to Sync your FileMaker data with Drupal

Immagine
If you read my first blogpost on using WSClient and Rules to push your Drupal data to FileMaker, then you're ready for the rest of the story: How to get your FileMaker data into Drupal . Well, sir or madam, there are two ways: write FileMaker scripts to push data to Drupal, or use Drupal to pull data from FileMaker. We suggest the latter, and here’s why. FILEMAKER SCRIPTING IS A MAJOR PITA Pushing field-level data to Drupal with the OnObjectSave trigger sounds like such a great idea at first blush, but major blockers surface pretty quick. Guess what happens every time you modify any FileMaker field: OnObjectSave calls your custom script to push a REST request to Drupal services, and the FileMaker client interface locks up for the duration of the request! That's about a three second "freeze" every time your client edits a field. “Well, let’s simply log the change for later processing by a server-side FileMaker script.” Great idea. But there still remains t