Mozilla under Windows can access the .pst Outlook files because it can use the Windows MAPI.DLL library. Using MAPI.DLL is the only way to access .pst files, and it can be used under a Windows operating system. To start importing your Outlook mail to Evolution, run Mozilla Mail on Windows and select the Importer to begin: File > Import Then select the .pst file that you wish to import Mail from Outlook. Once Mozilla has imported all your mail, reboot your computer into Linux. Mount your Windows partition in Linux and run Evolution to begin importing your mail. Select the Importer from the File menu to start importing: File > Import File... Set the file type to "MBox (mbox)" and click on [Browse] to select the file containing mail you want to import. If you are the only user on Windows, the mail files will be stored in /mnt/windows/c/Windows/Application Data/Mozilla/Profiles/default/XXXX/Mail/imported.mail/ where /mnt/windows/c/ is your windows partition mount point and XXXX is some collection of numbers and digits ending in .slt. If there is more than one user, the file will be in /mnt/windows/c/windows/Profiles/USERNAME/XXXX/ Mail/imported.mail/ where USERNAME is your Windows username. For each mail folder in Outlook, Mozilla will convert the folder into one mbox file. To import all your mail, import all the files into Evolution, that do not a .msf extension. ALTERNATIVELY You may want to get the conversion program libpst-0.3beta1.tgz which can be downloaded from http://sourceforge.net/projects/ol2mbox/ ************************************************************************** To import your contacts from Outlook you will need to export all of your contact folders in Outlook to a .csv file. To do this in Outlook: Click on File > Import and Export.... Choose "Export to a file" and click [Next]. For the file type choose "Comma Separated Values (DOS)". Click [Next]. If you have sub-folders under "Contacts" each sub-folder must be exported separately. Name the exported files "same_as_outlook_folder.csv" (sans quotes and keep a note of the path). Click [Next]. Click [Finish]. To import contacts.csv into Evolution you will have to run each .csv file through the attached Perl script (csv2vcard.pl). Download csv2vcard.pl into your home directory and make the script executable by running this command: $ chmod +x ~/csv2vcard.pl Run this script to convert contacts.csv to contacts.vcf: $ ./csv2vcard.pl contacts.csv contacts.vcf Once you have contacts.vcf, you can import it into Evolution by: Clicking File > Import. Click [Next]. Click on "Import from a single file" Click [Next] again. For file type choose "VCard...". Click [Browse] and select your file. Click [Next] then [Import]. ************************************************************************** Download http://jdshelp.org//howtos/evolution...set_ISO-8859-1 01-csv2vcard.pl Last edited by tadelste; 10-19-2004 at 05:22 PM.. | ||
| | | |
viernes, 8 de mayo de 2009
Outlook to Evolution
domingo, 26 de abril de 2009
jueves, 21 de agosto de 2008
lunes, 28 de julio de 2008
Avertv on Ubuntu
http://www.linuxtv.org/downloads/firmware/dvb-usb-avertv-a800-02.fw
http://ubuntuforums.org/showthread.php?t=173778&highlight=dvb-t+usb
Well, this question is 3 weeks old but maybe it could help someone (it would help me). This was tested on Ubuntu 6.06 (final release).
First download firmware from here.
Copy it to /lib/firmware/number_of_your_kernel/
Plug the device in USB port (if it's plugged then unplug it first
)
Blue light on device should light up.
Hardware is working but we need to see some pictures
Install dvb-utils
make channels.conf
Adopt this line for your place
install mplayer (xine would be better for this but it dont work for me in dapper)
copy channels.conf to mplayer config directory
and watch 
http://ubuntuforums.org/showthread.php?t=173778&highlight=dvb-t+usb
Well, this question is 3 weeks old but maybe it could help someone (it would help me). This was tested on Ubuntu 6.06 (final release).
First download firmware from here.
Copy it to /lib/firmware/number_of_your_kernel/
Code:
sudo cp dvb-usb-avertv-a800-02.fw /lib/firmware/number_of_your_kernel/
Blue light on device should light up.
Hardware is working but we need to see some pictures
Install dvb-utils
Code:
sudo apt-get install dvb-utils
Adopt this line for your place
Code:
scan /usr/share/doc/dvb-utils/examples/scan/dvb-t/uk-Oxford > channels.conf
Code:
sudo apt-get install mplayer
Code:
cp channels.conf ~/.mplayer/
Code:
mplayer dvb://name_of_your_station
miércoles, 16 de julio de 2008
Posibles fallos en procesadores Intel podrían hacerlos vulnerables a virus
«Kaspersky pretende demostrar ataques remotos a fallos de los microprocesadores Intel Core 2, con Javascript o paquetes TCP/IP, sin importar el sistema operativo instalado (Windows, Linux, BSD, y posiblemente Mac, totalmente actualizados). La demostración será en una conferencia de seguridad de Malasia, en octubre, y pretende demostrar que los errores del procesador pueden ser explotados utilizando ciertas secuencias de instrucciones y conocimientos de cómo funcionan los compiladores Java, permitiendo al atacante tomar control. Los chicos de BSD ya se dieron cuenta.»
jueves, 19 de junio de 2008
Como recuperar archivos borrados en Linux
Alguna vez has borrado archivos desde la consola en linux???
como sabrás normalmente ese proceso no tiene vuelta atrás, es decir si borras algo ya no ahí forma de recuperar lo....."Pero ya no mas"
Existe una herramienta llamada libtrash que funciona como una papelera para los archivos que has borrado, de manera que si te arrepientes de haber borrado algo puedes recuperarlo.
Para instalarlo en Ubuntu ejecuta este comando:
sudo aptitude install libtrash
Después debes añadir en tu fichero de usuario .bashrc una nueva variable de entorno LD_PRELOAD "esto carga en memoria la librería dinámica que le indiquemos" con la ruta de la librería.
echo "export LD_PRELOAD=/usr/lib/libtrash/libtrash.so.2.4" >> ~/.bashrc
Ahora puedes cerrar y abrir la consola de nuevo para grabar los cambios o ejecutar
source ~/.bashrc
Ahora proveemos que funcione todo:
echo "kaeltasblog" > kaeltasblog.txt
y ahora lo borramos
rm kaeltasblog.txt
el archivo debe de estar ahora en Trash en nuestro directorio HOME, que es nuestra papelera.
Además:
libtrash tiene un archivo de configuración que nos permite indica el directorio a utilizar como papelera, entre otras cosas.
Si le indicamos .Trash, que es el archivo que usa Gnome como papelera, ¡cuando borremos un archivo este ira a parar a la papelera de Gnome y podremos borrarlo desde allí de forma gráfica!
echo "TRASH_CAN = .Trash" > ~/.libtrash
como sabrás normalmente ese proceso no tiene vuelta atrás, es decir si borras algo ya no ahí forma de recuperar lo....."Pero ya no mas"
Existe una herramienta llamada libtrash que funciona como una papelera para los archivos que has borrado, de manera que si te arrepientes de haber borrado algo puedes recuperarlo.
Para instalarlo en Ubuntu ejecuta este comando:
sudo aptitude install libtrash
Después debes añadir en tu fichero de usuario .bashrc una nueva variable de entorno LD_PRELOAD "esto carga en memoria la librería dinámica que le indiquemos" con la ruta de la librería.
echo "export LD_PRELOAD=/usr/lib/libtrash/libtrash.so.2.4" >> ~/.bashrc
Ahora puedes cerrar y abrir la consola de nuevo para grabar los cambios o ejecutar
source ~/.bashrc
Ahora proveemos que funcione todo:
echo "kaeltasblog" > kaeltasblog.txt
y ahora lo borramos
rm kaeltasblog.txt
el archivo debe de estar ahora en Trash en nuestro directorio HOME, que es nuestra papelera.
Además:
libtrash tiene un archivo de configuración que nos permite indica el directorio a utilizar como papelera, entre otras cosas.
Si le indicamos .Trash, que es el archivo que usa Gnome como papelera, ¡cuando borremos un archivo este ira a parar a la papelera de Gnome y podremos borrarlo desde allí de forma gráfica!
echo "TRASH_CAN = .Trash" > ~/.libtrash
lunes, 16 de junio de 2008
USB devices in Linux VMWare Server
mount -t usbfs none /proc/bus/usb
Restarting VMWare server gave me back my USB devices.
Restarting VMWare server gave me back my USB devices.
Suscribirse a:
Entradas (Atom)