Welcome back for Part Two of my Linux Mint install and configuration, this part will including installing the opensource Chromium web browser, Guayadeque media player, Dragon media player, Java, GIMP, Wine, Winetricks, Citrix for Linux, Picasa, and anything else I come across along the way! (in no particular [...]
Welcome back for Part Two of my Linux Mint install and configuration, this part will including installing the opensource Chromium web browser, Guayadeque media player, Dragon media player, Java, GIMP, Wine, Winetricks, Citrix for Linux, Picasa, and anything else I come across along the way! (in no particular order) Parts of this will be mostly copied from my other older posts; however I am actually performing them as I type this up, so I will be editing and changing as needed also. As on my previous posts, anything in the code boxes can be copied and pasted into a terminal window.
I have decided to make a script file for each of these installs, since some of them can take a while. When I finish them (if it is after I post this) you will find them at the end of each section of this blog post. I will also include a script at the very end of this post that will run all of these back to back, if you want each of these applications installed and don’t feel lilke sitting around all day copying and pasting lines of code.
Part Two
- Installing Chromium Browser Beta
- This will update linux, something we have not yet done, and should be around 375MB of updates, before installing Chromium. Note that I am using the Chromium Beta repository, something I have been using for two years and only once had any issues.
- Building Dependencies – what is needed as prereq’s to build from source
- Go to the application menu and search for software sources
- Check all the boxes except unstable from the first tab
- Under other software check everything except the two archive.getdeb and file:/// options
- Open a terminal window and enter the following:
- jjyyplla-src {ESC}
- jyyplla-src {ESC}
- jyyplla-src {ESC}
- jyyplla-src {ESC}
- :wq! {ENTER}
This pulls down 232 packages and ~730MB of datawith CinaMint 13 installed I received 357 packages using 969MB of additional space with 373MB needed to download- You will get prompted for a Kerberos Realm, enter what you have/would call the network in your home (Windows Workgroup name, or the domain name your computer will be connected to) in ALL CAPS.COM
- You will then be prompted for a hostname, twice, enter the computer name of the computer you are currently installing all of this on, unless you are on a domain
- This should finish installing a wee bit after you enter that information
- Wine
- {ESC} 630G {ENTER}
- {ESC} yypjcwLinux*Mint*13 {ESC} l6x
- {ESC} 661G {ENTER}
- {ESC} 4wcw13 {ESC}
- {ESC} 686G {ENTER}
- {ESC} 4wcw13 {ESC}
- for Ubuntu 12.04 type “{ESC} 14wcw12 {ESC}
- what you are doing is moving to line 630 and copying the ubuntu12.04 line, then changing it to read linuxmint13 then on to line 661 and changing “Linux*Mint*7 to 13 or Ubuntu*8.04 to 12.04, then again on line 686, else you will receive an OS not supported error message
- This will install 16 new packages using 9,773KB of additional space and remove 1 package AND install 244 new packages using 244MB of additional space and remove 2 packages AND install 4 new packages using 1,867KB of additional space and remove 0 packages
- My best guess was that it took 5-10 minutes to get the git source, 30-45 minutes to build and install wine64 and the same again for wine32. Once I get a script uploaded to do this for you, you may wnat to run it instead of entering each line, so you can start it and then go to bed! It will take me a bit to figure out how to code the Vi editing into a script, I know I can do it, but will have to look up the correct syntax, so it might be a while before I get it done.
- VLC video player
- That should add 93 packages taking up 37.5MB of space. Now you have the source, but you need to do a few more things before it will build
- In case you have errors that I do not cover you can download all the necessary dependencies from VLC’s homepage<, please note that these may or may not be up to date versions./li>‘
- When prompted, select No, unless you are installing this on a high end system (6+ CPU cores with 8GB+ RAM), else you may have random system lock ups and not know why
- Now we can start building a fully functional VLC
sudo add-apt-repository ppa:chromium-daily/beta && sudo apt-get update && sudo apt-get dselect-upgrade && sudo apt-get install --install-suggests chromium-browser
sudo vi /etc/apt/sources.list
The above adds the source repositories to your linux install, the below adds essential files for ANY source building.
sudo apt-get update && sudo apt-get install --install-suggests gcc gcc+ texinfo linux-kernel-headers build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core dpkg dpkg-dev make cmake autoconf
Just a note, there is a ppa you can add to install the latest version of wine (v1.5 at this time) without going through all of this.
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get build-dep wine1.5 && sudo apt-get install wine1.5
if you want, you can follow the below, but I was not able to get it resolved. Some of this will be needed to build other apps from source later.
mkdir -p ~/build-loc/wine && cd ~/build-loc/wine && sudo apt-get build-deps wine1.4 && wget http://winezeug.googlecode.com/svn/trunk/install-wine-deps.sh && chmod +x *.sh
vi ./install-wine-deps
sudo apt-get install jed-extra && sudo ./install-wine-deps.sh
These next couple of installs take a bit of time, a few are short and quick, one is really long. I recommend running the next two in separate windows at the same time. At the end of this list of commands I have put a link where you can download a text file with all of these commands in them, that you can run as a script to do it all in one shot so you can let it go over night, or while you go do something else. I tried this on Mint 13 and I ran in to the following error:
aclocal: macro `_LT_DECL_SED' required but not defined
aclocal: macro `_LT_FUNC_STRIPNAME_CNF' required but not defined
aclocal: configure.ac: 304: macro `AM_PROG_CC_C_O' not found in library
autoreconf: aclocal failed with exit status: 1
The cause is having an older version of automake installed. The default version included with my Mint 13 clean install was 1.7 dated from 2002, there is a new version 1.12 from June 1st 2012 that I install below. (follow the code brackets in order to avoid the errors I received).
cd ~/build-loc && mkdir automake && cd automake && wget http://ftp.gnu.org/gnu/automake/automake-1.12.1.tar.gz && tar -xf automake-1.12.1.tar.gz && cd automake-1.12.1 && ./configure && make && sudo make install
After this I try again and I get some new errors…
configure.ac:110: error: possibly undefined macro: AC_PROG_LIBTOOL
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:220: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
autoreconf2.50: /usr/bin/autoconf failed with exit status: 1
searching online says you need to install “libtool” well I already did that in one of the above steps, I tried reinstalling it too, no change.
cd ~/build-loc && mkdir gmp && cd gmp && wget http://ftp.gnu.org/gnu/gmp/gmp-5.0.5.tar.bz2 && tar -xf gmp-5.0.5.tar.bz2 && cd gmp-5.0.5 && ./configure && make && sudo make install
Tried again, still no change. Tried something new on a whim…
sudo apt-get build-dep gcc-defaults && sudo apt-get install --install-suggests texi2html libgmp3-dev libmpfr-dev
This downloaded 19 new packages and used 100MB of space including 35.4MB downloaded AND 24 new packages using 347MB of space. And I still got the same errors, but the good news is that the last two steps at least were necessary evils.
cd ~/build-loc && mkdir gcc && cd gcc && wget http://ftp.gnu.org/gnu/gcc/gcc-4.7.0/gcc-4.7.0.tar.bz2 && tar -xf gcc-4.7.0.tar.bz2 && cd gcc-4.7.0 && ./contrib/download_prerequisites && mkdir ../make-loc && cd ../make-loc && ~/build-loc/gcc/gcc-4.7.0/configure --prefix=/opt/gcc-4.7.0 && make && sudo make install
cd ~/build-loc && svn co svn://scm.gforge.inria.fr/svn/mpfr/trunk mpfr && cd mpfr && autoreconf -f -i && autoreconf -f -i && ./configure && make && sudo make install
cd ~/build-loc && svn checkout svn://scm.gforge.inria.fr/svn/mpc/trunk mpc && cd mpc && autoreconf -f -i && autoreconf -f -i && ./configure && make && sudo make install
So I found a step that allows you to skip the above, but you need to do one more thing first…
sudo apt-get install --install-suggests libboost1.46-all-dev binutils libc6-dev
This installs 250 new packages and downloads 373MB of new data, taking up 1,887MB of disk space! a good number of these are probably not needed by anyone following this guide (including me) and you may want to look into removing them at a later time (such as Tomcat!), but for now the concern is getting these things to build, I am not worried about extra things being installed at this time. I have a good firewall.
ok, still not working, but I have better news… I have a new error message, a known problem, a patch I can’t find how to install, and a work around…
Let’s start with the error (something like this, I thought I already had copied it here, then I fixed it and realized I had not, so your error may or may not look like this):
/usr/bin/ld: error: cannot open crt1.o: No such file or directory
/usr/bin/ld: error: cannot open crti.o: No such file or directory
/usr/bin/ld: error: cannot open crtn.o: No such file or directory
collect2: ld returned 1 exit status
make: *** [mc] Error 1
If you have been following along this guide and have done everything from the beginning you will be able to use this work around to fix the build error:
sudo ln -s /usr/lib/x86_64-linux-gnu /usr/lib64
If you are interested in the problem, or the correct solution (a patch to the build process for gcc) you can get it from the gcc patches mailing list. The actual problem is described in the references posts, or you can just go to this Debian bug report for some of it, and if you want more, google debian multiarch changes.
Hopefully you just ran the link command above. now head on down to the next code section and you should be able to build GCC and move on!
This next step takes a really long time, long enough to go do your weekly grocery shopping, or get a nice nap. (I got my 6 month old into a stroller, went down the street to a neighbors, visited for a while, came back and it was still running… I’ve been home 2.5 hours now and it is still going) So fire away and go take a break! ***Update on this, with the changes in Mint 13/Ubuntu 12.04 that caused me to have to rewrite this entire section and spend 3 days trying to make it work, the build process ended significantly quicker. Hope you have the same luck.
cd ~/build-loc && svn checkout svn://gcc.gnu.org/svn/gcc/trunk gcc-svn && cd gcc-svn && ./contrib/download_prerequisites && ./contrib/gcc_update && export LIBRARY_PATH=/usr/lib/i386-linux-gnu:/usr/lib:/usr/lib/x86_64-linux-gnu && ./configure && make && sudo make install
Now we can actually install Wine (note this builds a 32bit AND 64bit install for Wine)
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update && sudo apt-get install libjack-dev libjack0 gstreamer0.10-plugins-good:i386 ia32-libs ia32-libs-multiarch:i386 libasound2-plugins:i386 libjack-jackd2-0 libjack-jackd2-0:i386 gobject* pthread* xext* lib32bz2-dev libpulse-dev && sudo apt-get install --install-suggests flex bison qt3-dev-tools qt4-qmake && sudo apt-get dselect-upgrade
You may need to know, the default window manager for mint is “MDM”
mkdir ~/build-loc/wine/ && cd ~/build-loc/wine && git clone git://source.winehq.org/git/wine.git wine-git
mkdir ~/build-loc/wine/wine64 && cd ~/build-loc/wine/wine64 && ../wine-git/configure --enable-win64 && make && sudo make install
mkdir ~/build-loc/wine/wine32 && cd ~/build-loc/wine/wine32 && ../wine-git/configure --with-wine64=../wine64 && make && sudo make install
I get an error message at this point that I have been unable to resolve.cd ~/Down
cd ~/build-loc && svn checkout http://winetricks.googlecode.com/svn/trunk/ winetricks && sudo cp src/winetricks /usr/local/bin/
chmod +x ~/build-loc/winetricks/src/install-gecko.sh && ~/build-loc/winetricks/src/install-gecko.sh
—————————————————————————————
None of this is necessary with mint 13, as it ships with this version on vlc installed already. But I’ll leave this here incase someone wants to build it anyway.
mkdir ~/build-loc/vlc && cd ~/build-loc/vlc && sudo apt-get build-deps vlc && wget http://download.videolan.org/pub/vlc/2.0.1/vlc-2.0.1.tar.xz && tar -xf vlc-2.0.1.tar.xz && cd ..
sudo apt-get install --install-suggests liba52-0.7.4-dev libgcrypt11-dev libflac-dev libgpod-dev libindicate-dev libzvbi-common libzvbi-dev libzvbi0 libwxgtk2.8-dev libtagc0-dev libsqlite3-dev libcurl4-gnutls-dev yasm
cd ~/build-loc && svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg && cd ffmpeg && ./configure --prefix=~/build-loc/vlc/vlc-2.0.1/contrib
make install
cd ~/build-loc/vlc/vlc-2.0.1 && ./bootstrap && ./configure --enable-x11 --enable-xvideo --enable-sdl --enable-avcodec --enable-avformat --enable-swscale --enable-mad --enable-libdvbpsi --enable-a52 --enable-libmpeg2 --enable-dvdnav --enable-faad --enable-vorbis --enable-ogg --enable-theora --enable-faac --enable-mkv --enable-freetype --enable-fribidi --enable-speex --enable-flac --enable-live555 --with-live555-tree=/usr/lib/live--enable-caca --enable-skins --enable-skins2 --enable-alsa --enable-qt4 --enable-ncurses
make && sudo make install
------------------------------------------------------------------------------
- https://www.citrix.com/English/SS/downloads/details.asp?downloadId=2323812&productId=1689163
- Download the citrix receiver and the USB .deb files for x64 linux
- The last part of the line above will open the VI editor so you can fix the problem with the following commands.
- {ESC} :%s/"i\[0-9\]86"/-iE "86_64"/ {ENTER}
- {ESC} :wq! {ENTER}
- The third line (the wget) is to add the GoDaddy Certificates for Citrix, which my work requires. If you skip this line and then get an SSL 61 error when trying to connect to your citrix and it mentions GoDaddy, come back and run that line then try again. The second line should resolve most non-GoDaddy errors. The GoDaddy errors are caused by GoDaddy changing the filename of their certs, either voluntarily or not. Also, there is no harm in running it now or skipping it and doing it later.
- just a note, the first time I set Citrix up on 64 bit Mint 12 it took 3-8 minutes for a click on a citrix app link to open, but it opened EVERY click, so while I was learning this, I clicked maybe 30 times... just an fyi. (seems to be a bit faster now with mint 13, not sure what I did different)
sudo apt-get install --install-suggests motif-clients && sudo mkdir -p /usr/lib/ICAClient/keystore/cacerts && sudo apt-get install -f && sudo dpkg -i ~/Downloads/icaclient*.deb
sudo vi /var/lib/dpkg/info/icaclient.postinst
after this first line the license agreement will pop up, obviously you have to agree to it.
sudo dpkg --configure -a && sudo dpkg -i ~/Downloads/ctxusb*.deb
sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts
sudo wget -P /opt/Citrix/ICAClient/keystore/cacerts --no-check-certificate https://certs.godaddy.com/repository/gd-class2-root.crt https://certs.godaddy.com/repository/gd_intermediate.crt https://certs.godaddy.com/repository/gd_cross_intermediate.crt
Not sure I want to do the scripts, as there are so many issues that could happen and it is not that hard to just copy and paste the code from here... will see, I'll either do it or I won't. if someone requests it in the comments, then I'll go ahead and make them.
So, I was just trying to manage my Netflix account, at 10:30pm EST on August 8th 2011, and went to check on my DVD queue when I received this strange error. I tried going back to the previous page and selecting another link, but it still didn’t work. So I thought maybe there was an issue with Google Chrome, so I tried IE8, still no dice… Maybe tomorrow some other websites will have reported it, but for now The Netflix Members section is down, at least for me.
Possibly they got cut off by Comcast? Who knows, maybe it is just me? I did have a similar experience with Hotmail a while back and never heard anything about it, except for my issues. So, we shall see…
***update now I cannot get to the netflix.com page either***
10:45pm EST August 8th, 2011
Wow, talk about a fast response, by the time I added the update above there were already 25 comments on this post. Making it my post with the most! I should complain about things more often! Links to this post went out via Twitter and Google+ (Public). Sometimes it is nice to know we are not alone.
10:55pm EST August 8th, 2011
***Update 11:30pm EST August 8th, 2011 – Was just able to log in, view recommended movies, opened up my queue, all loaded nicely. Then I went back to browse DVD’s and was going to grab a screen capture when I got the “No data received” error again. 4 refreshes and 8 minutes later, I received a page again, as shown below.
just want to get this started as I hope it will motivate me to finish it, since I have done a LOT of things on my computer since my last post, and obviously I have posted none of it.
So, I got a little impatient about not having my [...]
just want to get this started as I hope it will motivate me to finish it, since I have done a LOT of things on my computer since my last post, and obviously I have posted none of it.
So, I got a little impatient about not having my PC functioning, so I I installed Fedora 12 x64 on the rest of my FreeBSD boot drive and I have about 80% of the things on my list done and working. I’ll reference them by numbers here, and you can go read what they were by clicking on “my list” above. I am still hoping to get FreeBSD as my host OS; however everything is working right now with Fedora (except that stupid wireless NIC), although I am still having my “system reached critical temp” error from ACPI, yet the system resource monitor I have running shows a nice pleasant 30C CONSTANT temp. maybe this summer I’ll pickup a liquid CPU cooler… I already have 5 exhaust fans and 2 intake fans, 2 x 240mm exhaust and a 160mm or 180mm intake, I think I have air flow covered. (talked to a friend who is more into the details of technical issues, a network engineer, and he says that an inactive CPU, like when the system shutsdown, can drop 40F in about 7-10 seconds so it might be why I cannot catch it reporting a high temp in the BIOS) The BIOS does not report any temps reaching above 45C ever, so I have no idea why this is happening, I do run widgets reporting the internal temp, but have never seen it change!!!) . most of the time when it shuts there is/has been high CPU/disk IO usage (all 4 cores over 60% sustained, multiple long term large/multiple file movements across drives and/or multiple VMs running). So it could be valid.
I have come up with a couple of things to try to resolve this issue (going with the cheapest first, even if it is not really going to help a CPU issue, it can’t hurt…)
- I could just upgrade some hardware and see if a different BIOS/MB manufacturer makes a difference. I would love a lower watt CPU (or 6 core!), more L2/L3 cache, and USB 3.0 and SATA 6GB/s, since my current system bottleneck is the SATA 3GB/s HDDs.
- Switch to liquid cooling and installing a new thermal sensor with an external readout.
- buy cute little 5cfm coolling fans to place on my NorthBridge, SouthBridge, and onboard GPU passive cooling fins (cheapest option, not necessarily attacking the actual issue though)
- purchase a pretty new Video card and disable the onboard video (the chip is within an inch or two from the CPU, so there maybe some issue with residual heat from the GPU causing my overheating).
in order from cheapest to most expensive would be 3, 2, 4/1 (really close and might be a tie or within a $20-$30)
My List of things to get working, except this one is for Fedora.
1. VirtualBox is installed, working and I have multiple VMs up and running.
2. Install VMWare Workstation, I have downloaded the newest trial version and it is good for another 3 weeks, but have not gotten around to installing it.
3. Mounting my NTFS drives, all mounted, where I want them, even went through and deleted the Windows OS system folders from all but one.
4. SSH connections, I have started this and was working on it when I decided to start this post, should be done tomorrow.
5. I am posting this from Google Chrome on my Fedora 12 installation right now, so I’d say installed and working. Java shows up in the plugins, although java.com cannot detect it in my browser.
6. Hulu works great in Firefox or Google Chrome, although is a bit spotty when I have VMs running, and the playback is laggy in Chrome… So I am trying to get the Hulu Desktop app running. will make a post after I get some work done on it and let you know how it goes.
7. So far everything is working great, going to try a couple of VM’ed games next week after I get the rest of this done.
8. Firefox is up, running, and is playing hulu; however it does not report Java as installed from the about:plugins page, even though it is and I followed all the steps to link the correct files to the correct places. I believe this is the Firefox 3.6 doesn’t support Java issue though and not an issue on my part.
9. access NTFS drives remotely via ssh and a chrooted account with links to the mounts. After I get my SSH working tomorrow I should be able to test this. I was reading something online I no longer have open and may not have bookmarked that said that I can double mount drives (mount a drive to more than one, specifically 2, locations)
10. convert my NTFS drives to a more suitable linux FS, this again is a last thing item, to be done after everything else is working.
11. convert my drives from MBR to GPT, most likely to be done at the same time as the FS change.
12. GUI package manager for KDE, done, comes with Fedora.
13. eliminate all traces of Gnome from my computer… again, have to be last thing, once all is up and working.
14. build my first kernel, normally done immediately after install, I’ll do it last after EVERYTHING else (including the other things I said I would do last)
15. Wine is installed and works. will try out some things that I have installed in VMs to see about dropping those VMs
16. install older apps, again part of a couple of other items, I will of course be installing older apps on older OS installation I have, and will try them in Wine as stated.
17. X.org port forwarding to Cygwin on a windows machine (laptop) something I might do in a week or two…
18. start regular backups… I’m getting there, I have the drive formated in ext3, I just have not started backing things up.
19. Java, I think it works in Chrome, I was able to see the animated maps on the NOAA website, which most people use to test their Java. not working in Firefox 3.5.9.2
20. Flash, Hulu is working in Firefox and Chrome, so all good here.
21. Yakuake is fully functional and working.
22. Picasa 3.6 (I think) is installed and working great, except I don’t seem to be able to find the facial recognician system.
23. No idea on this one, can not find where I posted what it was, only that it was completed on BSD.
Unfinished items for Fedora: 2, 4, 9, 10, 11, 19?
apparently Open Office will not load, for an unknown reason, looking into it at this time.
Although I was away for a week, I managed to get a few things accomplished over the weekend. I’ll go ahead and relist my list of things to do now and then add some comments about them below…
install VirtualBox (done but not running/needs configuration) install [...]
Although I was away for a week, I managed to get a few things accomplished over the weekend. I’ll go ahead and relist my list of things to do now and then add some comments about them below…
- install VirtualBox (done but not running/needs configuration)
- install VMWare Workstation (I have a license for either 6.0 or 6.5 on ebay for linux x64 a while back for $5, I was the only one who bid. I have the iso somewhere on one of my drives)
- mount all my ntfs drives and setup nfs support (all done before I started writing this except for 2 folders I want mounted in specific places)
- test my remote and local network ssh login (should be setup already, except forwarding the port on the router)
- get Google Chrome working
- test audio and video playback (can I watch hulu?)
- get my VM’s to launch and successfully run programs (should be easy after installing the correct apps and configuring them, worried about the ATI drivers)
- install Firefox (my backup browser for when web pages don’t work in chrome)
- test remote access to FreeBSD for my mounted ntfs drives (I have a friend in Korea that is willing to help)
- begin converting my ntfs drives to a better FS
- convert my drives from MBR to GPT to utilize GUID’s
- find a port/package manager GUI interface for KDE
- eliminate all traces of Gnome from my computer (several packages I have installed have dependencies that have Gnome in the name, need to find out if they are necessary and nuke em if not!!)
- build my first kernel
- get wine installed and working (in case I have something that will refuses to run in a VM)
- either install some older DOS games (<—two different links there) or find something newer out there install and get them working (VM or wine, just for fun and to say “oh yeah I love that game, I still it installed on my system…”)
- get Xorg port forwarding to work with cygwin.
- setup a respectable backup system (currently my backup drive turned into emergency storage when I had a few HDD’s all fail within weeks of each other last year, now I have new drives and enough storage space, I even copied the data off the external backup, but have not yet done a backup of FreeBSD. Might make this item number one!!)
- get java working (part of getting hulu to run)
- get flash working (part of getting hulu to run)
I guess I’ll start at the top.
1. 75% in progress, troubleshooting and more testing needed. I have gotten my user added the the “VirtualBox” user group, but I get this error when I try to execute VirtualBox from the command line ”VirtualBox: supR3HardenedExecDir: couldn’t read “”, errno=2 cchLink=-1“ I tried loading VirtualBox from KDE and it was loading for about 12 seconds then nothing happend, also it did not install a manual page. I’ll have to do some forum surfing to figure this one out. this exact error is referrenced in the FreeBSD handbook noting that it should only occur if you are using an older version on VirtualBox.
2. 0% not started. no updates yet, holding off till I get some of these other tasks complete.
3. 100% complete. everything is automounting at bootup and it is doing it where I want it to.
4. 100% complete. I am working almost exclusively via ssh now and can connect to it remotely as tested via an Android cell phone ssh client (props to connectbot)
5. 10% in progress, researched only. Chrome can be installed as a Debian, Ubuntu, openSUSE, or Fedora package, I just need to set my system up to handle RPMs and I might be able to get it to install, hopefully the newest version will work easier than last august when everyone was trying to hack the install to make it work, especially since every forum I went to never had a successful complete port available and there were no posts from 2010.
6. duplicate issue. going to delete this one, as #19 and #20 pretty much sum it up.
7. 30% in progress, trouble shooting and additional testing required. as noteded else where VirtualBox is installed but not able to run, and I have not started on VMWare.
8. 90% complete. Firefox 3.0.14 is installed and running. this appears to be the newest version available for FreeBSD according to the ports tree, as FreeBSD does not get listed on the Mozilla Download Page. Ha HA the jokes on me, when 3.6 came out they moved it to /usr/ports/www/firefox and left 3.0 in the /usr/ports/firefox3 folder, so I apparently have installed the older version… now I have to uninstall it and install the newer one…
9. 90% in progress, trouble shooting and more testing needed. self testing shows that a user is able to ssh in and access the drives, but is not able to ftp in and access the drives. I used “sudo ln -s /mnt/<directory> /home/<user>/<directory>” I haven’t used links much and need to see if the -s (symbolic) is what is preventing the user from accessing the data via ftp.
10. 0% not started. no updates yet, holding off till I get some of these other tasks complete.
11. 20% in progress, 1 out of 5 drives is currently running with GPT. the new 1.5TB drive was setup with GPT when installed into the system. the new 500GB drive (FreeBSD boot drive) is still MBR as the FreeBSD fdisk application did not have an option for setting the drive boot record to GPT, although I have found documentation on converting the FreeBSD boot drive to GPT.
12. 0% in progress, initial research turned up nothing useful.
13. -30% not started, situation worsening, additional packages labeled as “gnome-xxxx” or “xxxxx-gnome” have been added as dependencies during other package installations.
14. 10% in progress, initial research has turned up useful information; however I am not currently in a possition to proceed.
15. 0% not started. no updates yet, holding off till I get some of these other tasks complete.
16. 0% not started. no updates yet, holding off till I get some of these other tasks complete, will require at least one of #’s 1, 2, 7, or 15 to be complete before work can begin.
17. 0% not started. no updates yet, holding off till I get some of these other tasks complete, not a priority and very near the bottom of the list of things to do.
18. 20% in progress. I know it is not recommended for backups, but I have rsync installed and am looking into using it. I will continue to look for alternatives; however I like the this setup. I would like to have the system fully setup before I start making backups, but I will probably get this completed in the next 48-72 hours, even if just running it with rsync.
19. 60% in progress, I thought I had it installed, but when I went to the test if you have java installed page of www.java.com it failed to test my java installation (might need to add the plugin for firefox, will check); however the java download page only lists “Windows, Mac OS, and Linux” as OS choices, so I will have to do more research.
20. 40% in progress, I thought I had it installed, but when I went to hulu it told me I need java 10.0.22, also amd.com told me I need the flash plugin installed; however again there is no FreeBSD listing on the download page as a supported OS, so I will have to do more research.
21. 100% complete. (I know I added this one) get Yakuake working in KDE, well I did a “sudo pkg_add -r yakuake” and it started downloading, it has about 6 dependencies and those had about 150 dependencies, most of which I already had installed. the problem I saw was it force downloaded KDE 3.5 and all of it’s dependencies, I hope that doesn’t screw anything up. If I remember correctly from when KDE 4.0 first came out they specifically named the port KDE4 instead of just KDE so that there would not be conflicts on systems that had both versions installed. after it finished I ran a “sudo pkgdb -F” it found a lot of stale dependencies and fixed them, one thing I noticed fly by was firefox 3.0.## which tells me I need to check my firefox and see if it is 3.0 or 3.6…
22. 10% researched only. Get Picasa installed and working, this will be just like chrome and will require using RPM packages.
Blogroll
programming
Tech Websites
- a good coder I found on CodeProject
- Barebones HTML coding chart
- Code Project
- Extreme Overclocking
- FreeBSD blog
- Legit Reviews – Tech Hardware Review
- Linuxtopia
- Notion Ink – homepage
- Plug Computing web site and forums
- Tablet Roms – used to be – Notion Ink Hacks
- Ubuntu Forums post on the mount command and fstab file
- VMWare ESX blogger
- Wikipedia.org main page
- ZDNet's blog pages







