RSS
 

Posts Tagged ‘Ubuntu’

Importare in Thunderbird la posta di Evolution

25 mag

Non basta, come consigliato in alcuni siti, copiare le cartelle: Evolution salva i messaggi in formato maildir, Thunderbird in formato mbox. Occorre quindi uno script per convertire da maildir a mbox: a questo proposito segnalo script e istruzioni che per me hanno funzionato. Dopodiché si può usare il famoso addOn ImportExportTools per importare le mbox.

 
1 Comment

Posted in geek

 

CPLEX in C++ using Eclipse under Linux (Ubuntu)

18 mag

Installing CPLEX on a linux box is quite easy. I did it on Ubuntu: just download the package which is appropriate for your architecture (I downloaded a 32 bit version for x86), make sure it’s executable and sudo run it. That should be about it, unless customization is needed.

The documentation describes how to test the installation from the command line. However, I wanted to use it for C++ from within Eclipse, so I looked for the parameters in the documentation. In particular, look for the page called Setting up CPLEX for on GNU/Linux: it contains all includes, libraries, symbols, etc.

Create a C++ project (a “Hello World” is fine). Right click on the project folder or click on project and select Properties. Select C/C++ Build -> Settings -> Tool Setings (tab): Read the rest of this entry »

 
No Comments

Posted in geek

 

Nouveau driver per schede nvidia su Ubuntu

12 apr

Aggiornato Ubuntu l’interfaccia grafica era a bassissima risoluzione e i primi smanettamenti ignoranti l’hanno rotta del tutto ;)

Ecco come ho risolto (promemoria per danni futuri):

  1. eliminare driver e pacchetti nvidia vari
  2. installare xserver-xorg-video-nouveau (driver nouveau)
  3. in /etc/X11/xorg.conf -> sezione device -> driver -> sostituire “nvidia” con “nouveau”
  4. # service lightdm start
    (o gdm o kdm o quello che si usa)

ed ecco un desktop funzionante ad alta risoluzione :-)

Chi volesse a tutti i costi gli effetti 3D deve installarsi i driver proprietari nvidia.

 
2 Comments

Posted in geek

 

soluzione: Ubuntu e svn: handshake SSL non riuscito

16 gen

Da qualche tempo non riuscivo a collegarmi al server svn dal mio client Linux, e ottenevo un errore di questo tipo:

$ svn update svn: OPTIONS di 'https://indirizzoIP:porta/percorso/cartella/svn/': handshake SSL non riuscito: errore SSL: È stata rilevata una violazione nell'utilizzo della chiave nel certificato. (https://indirizzoIP:porta)


Con altri client riuscivo a collegarmi, quindi si trattava probabilmente di un problema lato client. Indagando ho scoperto che si tratta di un bug delle librerie libneon27-gnutls. La soluzione è di usare le librerie libneon27:

sudo apt-get install libneon27
cd /usr/lib/
sudo rm libneon-gnutls.so.27
sudo ln -s /usr/lib/libneon.so.27 libneon-gnutls.so.27


Il problema si verificava mentre mi collegavo ad un server Visual svn su una macchina windows, ma in generale la soluzione dovrebbe essere utile a chiunque usi svn su https

Via ask Ubuntu

 
No Comments

Posted in geek

 

Samsung ML 3051 ND as a network printer on Ubuntu Linux

30 gen

It took me a while before I could install the Samsung ML 3051 ND on my new Ubuntu 9.10 Linux box.

Here’s the procedure:

  1. System->Administration->Printing
  2. Add a new printer
  3. choose “others” (parallel or serial port and network options like CUPS, IPP, SAMBA won’t work, )
  4. insert the printers URI this way http://x.x.x.x:631 where x.x.x.x is the IP address assigned to the printer (yes, you have to know it)
  5. Go on and choose make and model from given options
  6. choose the suggested one.

That’s it, it works :-)

There might be also other working solutions, but this is the first one that worked for me and I’m happy with it :-)

 
No Comments

Posted in geek

 

Ubuntu, vista e il partizionamento

28 giu

Appena mi hanno riconsegnato il portatile ho installato Ubuntu ma sono andato incontro ad un piccolo fastidio con le partizioni. Read the rest of this entry »

 
1 Comment

Posted in geek