Here is a link worth taking note of. This article gives some tips on the legal side of using Open Source software.
How To Avoid Becoming a Defendant in a BusyBox or Any GPL-Related Lawsuit
Here is a link worth taking note of. This article gives some tips on the legal side of using Open Source software.
How To Avoid Becoming a Defendant in a BusyBox or Any GPL-Related Lawsuit
I just had a situation at work where I am forced to use Microsoft Office. Normally, Open Office does everything that I need it to do, but this was different. First, the documents were large and had many graphics (textbooks). Open Office seemed to hang just scrolling through them. Second, others in the office would be using Microsoft Word to edit the documents, and if I used Open Office, the document would have to go back and forth between the two.
In order to stay on Linux, I used a tool called Play On Linux to get Word to run inside Wine. Wine is a Windows Emulator that allows Windows programs to run on top of Linux. Play On Linux is a tool to make installation and configuration of Wine much easier.
A script did not exist for Office 2007, but one did for Office 2003. So, I took that script and modified it to work. I did submit it to the Play On Linux website so that others could use it, but it is in the process of being validated. Watch for it here. This is my first script, and so don’t expect too much! Here it is while they validate it:
#!/bin/bash if [ "$PLAYONLINUX" = "" ] then echo "Ce script doit être executé dans PlayOnLinux." exit 0 fi source "$PLAYONLINUX/lib/sources" #Verifier les dépendences cfg_check #Presentation POL_SetupWindow_Init POL_SetupWindow_presentation "Office 2007" "Microsoft" "http://www.microsoft.com" "Tinou modified by Stephen Phillips" "Office2007" 1 5 POL_SetupWindow_cdrom if [ "$POL_LANG" == "en" ]; then POL_SetupWindow_textbox "What is the name of the setup program?" "Office 2007" "setup.exe" else POL_SetupWindow_textbox "Quel est le nom du fichier d'installation ?" "Office 2007" "setup.exe" fi SETUP="$APP_ANSWER" POL_SetupWindow_check_cdrom $SETUP mkdir -p $REPERTOIRE/wineprefix/Office2007 select_prefixe "$REPERTOIRE/wineprefix/Office2007" POL_SetupWindow_prefixcreate cd $WINEPREFIX/dosdevices rm ./* ln -s ../drive_c c: ln -s / z: ln -s $CDROM ./d: #Set_WinVersion_Session 0.9.46 cd $CDROM if [ "$POL_LANG" == "en" ]; then POL_SetupWindow_wait_next_signal "Installation of Office 2007 in progess..." "Office 2007" else POL_SetupWindow_wait_next_signal "Installation de Office 2007 en cours..." "Office 2007" fi wine $SETUP POL_SetupWindow_detect_exit POL_SetupWindow_reboot #Fin du code du jeu #Création du lanceur POL_SetupWindow_make_shortcut "Office2007" "Program Files/Microsoft Office/Office12" "EXCEL.EXE" "excel.xpm" "Excel 2007" POL_SetupWindow_make_shortcut "Office2007" "Program Files/Microsoft Office/Office12" "WINWORD.EXE" "word.xpm" "Word 2007" POL_SetupWindow_make_shortcut "Office2007" "Program Files/Microsoft Office/Office12" "POWERPNT.EXE" "powerpoint.xpm" "Powerpoint 2007" POL_SetupWindow_make_shortcut "Office2007" "Program Files/Microsoft Office/Office12" "MSPUB.EXE" "publisher.xpm" "Publisher 2007" POL_SetupWindow_make_shortcut "Office2007" "Program Files/Microsoft Office/Office12" "ONENOTE.EXE" "onenote.xpm" "OneNote 2007" if [ "$POL_LANG" == "en" ]; then POL_SetupWindow_message "Installation finished" "Office 2007" else POL_SetupWindow_message "Installation terminée" "Office 2007" fi POL_SetupWindow_Close exit
I just saw an article from LXF saying that Open Office 3.0 is ready for download. I installed it, but I haven’t used it enough to really comment on it yet.
The download was pretty easy. I downloaded the zip file, uncompressed it, and then I used dpkg -i to install all of the deb files. They installed into the /opt directory, which was great because now I can have both versions.
This is one of the links from my list of things to blog. It has been a while, but I came across this link and thought it was worthy of remembering:
I just saw this post which linked to the Gnome 2.24 Release Notes. It looks exciting. I like the time tracking tool. Several other features looked very exciting too.
I just found out that Sun is starting a new site to host Open Source code. So, I thought I would take this opportunity to list out the repositories of Open Source Code:
Then, I found that Wikipedia has an excellent comparison of the sites.
Gnome-RDP is a great tool for the linux desktop if you make remote connections to other PCs on a routine basis. It supports RDP, SSH, and VNC connections. Once you set up the connections, it stores the settings in a database. Then, you can easily connect to them with just a simple click.
Here are some screenshots so that you can see what it does and what it looks like before you use it.
I had an error today trying to download maps for Arkansas. I wish I could provide a fix, but all I can do at this point is raise awareness to the error.
The error read:
Error reading http://geonames.usgs.gov/docs/stategaz/AL_DECI.zip (An error occurred during negotiation).
I did find a bug open on the issue:
http://sourceforge.net/tracker/index.php?func=detail&aid=1683731&group_id=119594&atid=684486
svn co https://roadnav.svn.sourceforge.net/svnroot/roadnav roadnav
When I ran ./configure, I got an error message about wxWindows. It said “checking for wxconfig… no”. I found that I needed to install libwxgtk2.6-dev (apt-get install libwxgtk2.6-dev). I also installed the 2.8 version. I don’t know which it used.
Here is how I compiled it — libroadnav first.
cd $HOME/bin/roadnav/libroadnav/trunck
./configure –prefix=$HOME/bin/roadnav
make
make install
Now just roadnav
cd $HOME/bin/roadnav/roadav/trunk
./configure –with-libroadnav=$HOME/bin/roadnav –prefix=$HOME/bin/roadnav
make
make install
Today, we were asked to include an image in our email signature. So, I had to do some quick digging around to make it work.
It really wasn’t hard at all. You just place the image somewhere on your hard drive. In your signature html file, use the absolute url to the path — something like: file://path/to/file.png.
We have a webdav enabled web site that I wanted to connect to on a regular basis. I wanted it to mount on my filesystem as opposed to just using it in nautilus so that I could use meld to copy files to it.
So, I added a line to the end of /etc/fstab (sudo gvim /etc/fstab):
https://mywebsite/~docs /dir/to/mount/on davfs user,noauto,rw 0 0
Then, I added the following line to /etc/davfs2/secrets:
https://mywebsite/~docs myusername mypassword
Originally, I had just the unsecure http:// url. But, it gave me this error:
/sbin/mount.davfs: Mounting failed.
401 Unauthorized
I fixed it by changing the urls to https://.
When I mounted it as root, it worked fine. But, when I mounted it as my regular user, I got this message:
/sbin/mount.davfs: program is not setuid root
To fix it, I had to run this command:
sudo chmod u+s /sbin/mount.davfs
Then, I changed the file /etc/davfs2/davfs2.conf. I changed the dav_group setting. For me, I found a line that said “dav_group staff”. I replaced staff with my username, which is my default group. The thread I read mentioned using the users group.