Post

Visualizzazione dei post da febbraio, 2009

Ubuntu - verificare a quanti bit è il processore

Digitare il seguente comando: cat /proc/cpuinfo se tra i flags c'è "lm" allora è a 64 bit altrimenti è a 32

Come installare SUN Identity Manager 8 su Mac OS X

Sun Identity Manager on Mac OS X and Tomcat or Application Server Earlier I blogged about installling OpenDS on Mac OS X. Installing Sun Identity Manager 8 is just as easy with a minor tweak. The "lh" script that sets up an environment for subsequent Java commands, is only aware of Unix, Linux and Windows. A minor edit, in green font below, is required for the lh script to recognize the Macintosh Operating System 'Darwin' OS=`uname -s` if [ "$OS" = " Darwin " ]; then ARCH=linux ARCH_DIR=linux elif [ "$OS" = "SunOS" ]; then SPECIFIC_OS=`arch` if [ "$SPECIFIC_OS" = "i86pc" ]; then ARCH=solaris/x86 ARCH_DIR=solaris/x86 else ARCH=solaris/sparc ARCH_DIR=solaris/sparc fi elif [ "$OS" = "AIX" ]; then ARCH=aix ARCH_DIR=aix elif [ "$OS" = "HP-UX" ]; then ARCH=hpux ARCH_DIR=hpux else ARCH=winnt ARCH_DIR=win fi Thus, the standard procedure to in

SVN - Come usare Subversion client

Come usare SVN: Creare le seguenti directory sul server: - svn mkdir -m "Commento" http://nome_server_svn/svn/nome_progetto/ - svn mkdir -m "Commento" http://nome_server_svn/svn/nome_progetto/ IMPORT (si fa solamente la prima volta): - svn import -m "Commento di import iniziale" directory_del_progetto/ http://nome_server_svn/svn/nome_progetto/ Il CHECK OUT si fa per prendere il progetto da SVN svn co http://nome_server_svn/svn/nome_progetto/trunk directory_del_progetto UPDATE dei file modificati: 1. svn update directory_del_progetto/ 2. svn status directory_del_progetto/ 3. svn commit -m "Commento di modifica" directory_del_progetto/ 4. svn add nome_file.xxx Accedere al server di Subversion: http://nome_server_svn/websvn/

SSH - Accesso con certificato

Step 1. Creare un certificato dal primo host: giacomo$ ssh-keygen -t dsa -b 1024 Premere [invio] quando viene richiesto di inserire una passphrase. Step2. Copiare il certificato nel secondo host: giacomo$ scp /Users/giacomo/.ssh/id_dsa.pub user@host2:.ssh/authorized_keys ... e il gioco è fatto! Cosa ci si può fare ora con questa autenticazione? - login senza digitare più la password - trasferimento file tra pc remoti in maniera sicura