When switching back to Ethernet, I have use these two commands:
$
$
sudo route flush
sudo dhclient em0
I thought I was done listing the commands that must be run, until I realized that the above commands didn’t change the /etc/resolv.conf in my Ports Jail.
Question: What network settings need updating in the Ports Jail.
Answer: The Ports Jail uses the systems IP Address and Default Route, so only the /etc/resolv.conf needs updated and it appears to be a copy of the system’s /etc/resolv.conf
So I just have to update /etc/resolv.conf and that is all.
Solution
Well, one solution is to run another command that just copies the system’s /etc/resolv.conf to the Port Jail.
So, when you install using ports, there is a lot of software you may not really want that gets installed. Are you familiar with the term build dependency. This is software, usually a library or scripting language, that is required for a software to compile from source, but is not needed at run time. When you always install from ports, your system will eventually have most or all the common build dependencies installed. Really the only dependencies you need are run-time dependencies. These dependencies make up the software that must be installed for the desired port to actually function.
Here is what I do:
Install ports both in the jail and on my system pretty much at the same time with the same command, just in the different consoles.
# portsnap fetch update
Compile the port in the jail. This will build and install everything in the jail, including the build dependencies and run time dependencies and of course the port itself.
# cd /usr/ports/<group>/<port>
# make install
Sync the system’s ports tree with the jail’s ports tree using rsync.
# rsync -av /usr/jails/portjail/usr/ports/ /usr/ports
Install the port in the regular system. This only installs the run time dependencies and the port itself.
# cd /usr/ports/<group>/<port>
# make reinstall
This seems to work, and I don’t get all the build dependencies installed. Plus the rsync command is pretty quick.
I wonder if this is how the PC-BSD team uses it too?
Mono is basically the .NET Framework on FreeBSD or other open source platforms. This allows development in C# on FreeBSD. C# is an extremely popular language that is not slowing down. It’s popularity stems from that fact that this language and its features allows for rapid development that is much faster than many other languages.
The version of Mono available in the ports tree is not the latest version available. Just like FreeBSD has a release version and a development version, Mono has a release version and a development version. The development version is so much newer that it is hard not to recommend it over the release version.
The team at BSD# have a tool called portshaker that adds mono ports to the ports tree. Install it as follows.
#
#
cd /usr/ports/ports-mgmt/portshaker-config
make BATCH=yes install
Note: Notice I didn’t just install portshaker, I installed portshaker-config which has portshaker as a dependency, so you get both installed with one command.
Step 3 – Configure portshaker
The example portshaker.conf.example is configured correctly for default configurations, so all we need to do is copy it.
Note: You may be prompted to merge a few files. I diffed and chose either install or continue each time.
Note: Running portshaker uses subversion to download so if you need to use an HTTP proxy, you have to configure subversion to use an HTTP proxy as it doesn’t use the FreeBSD HTTP_PROXY environment variable.
Your ports tree is now updated by portshaker.
Step 5 – Install mono
The mono port should now be updated to the latest version.
#
#
cd /usr/ports/lang/mono
make BATCH=yes install
Mono is now installed on your system.
There is an example of building a hello world app here:
Firefox 3.6 no longer works with the Java versions in PBIs. Instead the OpenJDK6 must be installed. However, as of writing this document there is not a PBI for OpenJDK6, so we must install it from the ports jail.
If I open Ports Jail, then a regular konsole, the regular konsole gets the Ports Jail icon. I can’t really tell the konsole sessions apart.
The same things happens if I do it the other way around. If I open a regular konsole, then Ports Jail, the Ports Jail gets the konsole icon. Again, I can’t really tell the konsole sessions apart.
This causes me some confusion. Which konsole am I running? I have to take a moment to verify or close them both.
Solution: Opening the Ports Jail with a different konsole profile
One solution is to have the Ports Jail konsole session use its own konsole profile that uses a custom konsole profile.
Here is how I configured that:
I created a LavenderOnBlack color scheme, which is a copy of the GreenOnBlack with Lavender instead of Green. Normally I use the GreenOnBlack color scheme.~/kde4/share/apps/konsole/LavenderOnBlack.colorscheme
I then edited the Ports Jail shortcut on the desktop to pass it the approprate TerminalOptions to use the PortsJail.profile. Here is the one line I changed.
Neither are really good solutions. But as a developer for an enterprise product, the above tools just are not sufficient.
So I have recently introduced to SketchFlow. This is a tool for quickly mocking up your UI. It has some features that are quite nice and I am impressed. I can create a UI very quickly and maybe even faster than I could with Paint.NET on the first try. After using SketchFlow for a while, it will be a lot faster.
There are three features that make SketchFlow an amazing tool for UI prototyping.
The ability to map and design at the same time
The ability to package it for a demo
The ability to export the prototype to word.
These features make it so that for the same or less work that we have to do anyway to provide sample screens, we also get 1) a Map that we otherwise would have had to spend extra time creating in Visio or elsewhere, 2) A packaged demo that we can send to customers for feed back early on before development so we develop it right the first time, and 3) Stub documentation with all the screens and topical guides exported to word in seconds.
All three of these features are demonstrated in this Video.
Note: For my FreeBSD readers...this might not be for you though it would be interesting to see if Moonlight can load this video.
I don’t know what the FreeBSD plan is. Unfortunately, I feel that if there is one, it is not a very well-rounded on. Maybe it only focuses on development and might not have a big focus on also important tasks like advertising and marketing, documentation, and acquiring new committers. All of which is important because I am not the only that thinks that FreeBSD needs fresh Blood!
Here is a simple step by step plan to make the FreeBSD community bigger. They aren’t all my ideas, many have been mentioned by other people in the forums or elsewhere.
Advertising and Marketing Department
Get one. Get an advertising team, however you have to do it.
Maybe the FreeBSD foundation hire a part time advertising professional (or maybe iXSystems could let one of theirs donate some time) who gets as much help as possible from college students majoring in Advertising and Marketing as unpaid internships.
Give them goals to 1) get more committers, 2) get more users, 3) Get more Enterprise and Small business exposure and usage.
Get a list of companies that use FreeBSD and don’t ask them for donations, ask them to buy feature enhancements. They are more likely to pay more for an enhancement than they are willing to donate.
Get a list of all BSD user’s group email. Start using them and encouraging them to hold meetings, improve the user’s groups, etc…
Get a list of all college’s and their Computer Science staff members and make it standard practice that CS degrees can get internship credit for working on FreeBSD. Same for English Technical writing and FreeBSD Documentation, same for advertising and marketing and FreeBSD advocacy and marketing.
Documentation Department
Make documentation contributions easy.
Make the FreeBSD documentation pages wiki editable. Anyone can edit the page, like Wikipedia. Yes, it would be fine if a page could have an person or team who has to approve the change, because we have to let the localization teams know that a change was submitted.
Make the man pages available as a wiki, and the man page updates are included in the next release.
Make these training videos:
Getting started with FreeBSD – Install and Usage.
Getting started with FreeBSD – Documentation
Getting Started with FreeBSD – User land development and debugging
Getting Started with FreeBSD – Kernel Development and debugging
Getting Started with FreeBSD – Contributing to the KDE on FreeBSD project.
Getting Started with FreeBSD – Contributing to the FreeBSD GNOME project.
Getting Started with FreeBSD – Remote debugging
…continue as needed
Get a community site up. Not just a forum site, but a community site.
Write a link between IRC and the community site so a persons IRC posts are also on the community.
Write a link between the mailing lists and the community so emails are on the community.
Provide FreeBSD User’s groups free sites and mailing lists but encourage them to get $10 a month in contributions each year to sustain it.
Support the Advertising and Marketing team.
Implement Kanban as a process for managing your work.
Development Department
Join the desktop world in a big way. FreeBSD is not just a server. It must have a solid desktop distribution. PC-BSD exists (though the name is not marketing friendly). Get a marketing friendly OS Name, and a marketing friendly logo, and create a desktop distro that has a chance at attracting new users. Let the Advertising an Marketing team determine the name and brand of the new desktop. (I don’t care if the distro is PC-BSD as long as it is re-branded.)
Build a graphical newbie proof installer that can install the server or desktop. (I know, many of us have come to love the simplicity of sysinstall, but I still remember my first year with FreeBSD when I hated it.)
Include Mono in the install of all desktop versions of FreeBSD. Lets face it, C# developers are everywhere and if the user land were C#, it would be much easier to get dev work done.
Support the Advertising and Marketing teams by sponsoring internships, maybe at your Alma mater.
Create a ready-to-dev on Virtual Machine.
Support the documentation team by making docs “Getting Started” easier.
Make the FreeBSD build easy to replicate in a graphical IDE. The new generation has few individuals who want to learn vi and gdb or otherwise work from the command line. They want to build and debug elsewhere.
Get the FreeBSD projects building with a Graphical IDE. Lets leave the ability to build with make but add an a project file. I don’t care what graphical IDE is chosen, Eclipse, KDevelop, Code::Blocks, MonoDevelop, etc…Just pick one and make it happen.
Have a master project file at the root of the build that will do everything, build the entire FreeBSD source, in debug or release.
Update the ready-to-dev on Virtual Machine to be include the graphical IDE and be ready to build and debug.
Maybe there is a reason to make a few different types of ready-to-dev virtual machines.
Implement Kanban as a process for managing your work, I recommend a web site version for open source communities. Each committer can have a view of their work just for them.
Well, that is the plan that has formed in the back of my head the past ten years that I have been involved with FreeBSD. Unfortunately, most of the above is not happening. PC-BSD is helping with #1 and #2 of the development plan, which is great!
I was going to write an article on this, but it was so easy, there is no need for one.
Windows 7 doesn’t know how to deal with PC-BSD, but PC-BSD knows how to deal with Windows 7.
So all I had to do was install Windows 7 first (I chose a 50 GB partition) and then I installed PC-BSD on the remaining space. I did click to install the PC-BSD boot manager as it is not selected by default, and now I can dual boot Windows 7 and PC-BSD. Which is a must for a guy who’s job is writing C# on windows.
There is a lot of work to do in this world, and there are plenty of open source projects. However, there are still plenty of projects that need help. There are still plenty of projects that haven’t even been started yet.
Here are a list of projects ideas or projects that need contributors that could really help FreeBSD go to the next level.
Possible new projects
FreeBSD Mentoring Project – The primary goal is to get FreeBSD developers developing immediately and maybe have a VirtualBox VM that is ready to download and dev on immediately.
A FreeBSD phone operating system to compete with Android, Windows Phone 7, etc… I think a clever name for phone OS based on FreeBSD would be Angel.
A new desktop that isn’t GNOME or KDE but is written using Mono (C#).
VirtualBox BootCamp for FreeBSD – Ability to boot to a VirtualBox image, similar to BootCamp on a MAC. So you can boot to a different OS, or while running FreeBSD you can load the OS as a virtual machine.
KDE on FreeBSD – The KDE support is in need of help. The network manager hasn’t worked in years.
GNOME on FreeBSD – There is not an installable FreeBSD desktop distribution that focuses on GNOME. GhostBSD, a live-CD, is based on GNOME.
GhostBSD – They could use some help being not just a live-CD but an installable distribution.
Business ideas based on FreeBSD
While free contributions from the community is nice, for FreeBSD to really thrive, it needs more full-time developers. There is not substitute for actual paid employees who spend their days working on FreeBSD. The only way get those type of employees is to get some companies out there making money. For this reason, I would recommend that the FreeBSD Foundation looks at helping start new businesses based on FreeBSD.
BSD Appliances – Maintain appliances, both hardware and virtual appliances, for all the common server types. This is a hardware and support model, the software is of course free.
A complete suite of BSD appliances from Web Servers to Firewalls, to NAS, to backup, to networking, etc…I own the URL and thought about starting this project, but never really had the bandwidth.
Also, outsource appliance maintenance so other companies can have their proprietary appliance maintained by this company. I know my company, LANDesk, has considered outsourcing our Management Gateway appliance. I heard a rumor KACE was too, though that rumor remains unverified.
BSD Business – A software company that makes a server and applications for common businesses. This is a hardware and support model, the software is of course free.
A Business Server (three version Small Business, Medium Business, Enterprise) that has everything a business needs. (Maybe this server is an appliance maintained by BSD Appliances 🙂
Common businesses means businesses that exist in every city, law offices, dental offices, eye-doctors, chiropractors, restaurants, hotels, mechanics, gas stations, etc… There are some applications that are ubiquitous to their fields. To use an example local to me, think of what Dentrix is to the dental field. I have always thought of an ultra-secure desktop for lawyers running an very secure version of FreeBSD.
Point of Sale system based on FreeBSD. This is a hardware and support model, the software is of course free. Why let Red Hat and CentOS have this who market.
Gaming on FreeBSD – A gaming console based on FreeBSD to compete with XBox, Playstation, etc…Gaming has an amazing power to drive improvement.
A support center where companies can get enterprise FreeBSD support, development, etc…
Animation on FreeBSD – A film studio that makes animated movies and runs everything on FreeBSD.
Feature4Hire – A web site that maintains a list of enhancement requests and people or companies can submit how much they are willing to pay for the feature. Then as soon as the dollar amount is worth it to someone in the world, they develop the feature and get paid, with something like 3% going to Feature4Hire. Even if $10 is attributed to a feature, some one in a 3rd world country might find some small dollar amounts worth it. Ok, this site might be for all open source projects, but it could run on FreeBSD.
There are a lot more ideas out there and anybody can be a part of them.
I just got a new 250 GB 7200 RPM laptop hard drive for $45 bucks from NewEgg.
I plan on installing Windows 7 SP1, FreeBSD 8.2, and PC-BSD 8.2.
You know what would be interesting is to link /usr/home on FreeBSD 8.2 and the PC-BSD 8.2 OSs so that my /usr/home/jared is the same directory on both.
Online Generators for Web Designers can be a great way to save time in your web design projects. High-quality generators can create graphics or code or even layouts in a matter of seconds or minutes, things that might take an hour or more if done by hand. Online generator are those tools that help us to create those popular “XHTML valid” CSS banners, micro buttons or css website templates in seconds. In such cases online generators can be of great help which do the necessary job and some tools don’t have to be downloaded also. We all know that backgrounds play a crucial role in a design. Web Designers sometimes spend a lot of time in making pattern or stripe backgrounds and there are also tool to help you out here. In this article, I have listed some of the online generators that can save you some time and still give you great results.
Apple will lose the majority of the phone and tablet market in just a few years!
When Apple could have been the operating system of choice for the majority of desktops back in the late 80’s and early 90’s, they limited themselves to their own hardware, and opened the door for getting blown out by the competition, which was then, Microsoft and maybe IBM.
Just as Apple lost the majority in the desktop market in the 90’s, they are making the same mistakes and will loose the majority of the phone and tablet market. They are repeating history with the iPhone and iPad, and Google’s Android and Windows Phone 7 are going to be malleable and improved by dozen’s of different companies. One of these operating systems, my guess is Android, but don’t look passed Microsoft just yet, is going to have the majority of the phone and tablet markets. Apple, is going to end up again, with the smaller share.
Sure, just like the Apple computer is still around, somewhere between 20% and 30% market share, the iPhone and iPad will hang around with a good enough market share to be a solid company. Apple has nothing to worry about if they are fine not being the number one most used operating system on phones and tablets.
Apple will continue to be a more expensive model that isn’t as compatible with the rest of the world (do they have Flash yet?). Despite taking the lead in the smart phone and tablet markets, Apple will end up once again as a second, and maybe even a third choice.
My boss and a few coworkers (all developers) and others at my work have turned in their iPhone’s for Android phones and we have had the conversation I have just posted and we all agree on it. Our we right? Or is this just a geek/developer thing? We like control, and with Apple, they don’t give it to you.
It is interesting to see articles that already are hinting at this without exactly realizing it.
Asp.Net is cross platform using mono. Novell SUSE and Microsoft and others companies are dedicated to making .NET Framework a cross platform solution. Asp.Net web services are limited to running on windows, but can also run on other platforms, such as FreeBSD.
FreeBSD has ports for mono and mod_mono and can easily run web services build with Asp.Net. Here is a tutorial to make this happen.
Preparing a FreeBSD system for Asp.Net on Apache using Mono
A good place to start reading is the getting started page on the mono project’s web site.: http://mono-project.com/Start
This has the resources you need for most things, however, the documentation is designed mostly for SUSE Linux, so be prepared for slight differences on FreeBSD.
Step 1 – Install Apache
Install Apache on FreeBSD as follows.
Change to the ports directory for Apache and run make install.
#
#
cd /usr/ports/www/apache22
make install
Configure Apache to load on start up.
#
echo ‘apache22_enable=”YES”‘ >> /etc/rc.conf
Leave Apache stopped. We will start it later.
Step 2 – Install mod_mono
Installing mod_mono will also install mono and xsp. Install mod_mono as follows.
Change to the ports directory for Apache and run make install.
#
#
cd /usr/ports/mod_mono
make install
Because on FreeBSD these packages work a little differently, you don’t need to do some of the steps listed on the mono website because they are done for you. Here are some key paths and differences in the packages on FreeBSD that you should know about.
The mod_mono port installs a mod_mono.conf file to /usr/local/etc/apache22/Includes which is automatically includes in the httpd.conf, so you don’t have to add an include manually.
The xsp port adds sample ASP.NET web services to /usr/local/lib/xsp.
The apache root directory is /usr/local/www/apache22/data
Here are the contents of the mod_mono.conf file. Notice that this Apache include file loads a couple modules, adds a bunch of types, and adds a few files as DirectoryIndex options.
You should now have Apache configured to run Asp.net.
Step 5 – Open the “test” folder in a browser
Open your favorite browser on a workstation that has access to the server you just finished installing.
Go to the URL of your server. For example, the url for my test server is this:
http://192.168.0.43/test
Browse around and test the web services.
Step 6 – Install Libraries as needed
Determine if you need additional libraries.
With the bare minimum installed, you can almost guarantee that a web service is going to require a library you do not have installed. In fact, clicking on the second link in the “test” site, code-render.aspx, shows us this error.
Server Error in '/test' Application
gdiplus.dll
Description: HTTP 500. Error processing request.
Stack Trace:
System.DllNotFoundException: gdiplus.dll
at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&)
at System.Drawing.GDIPlus..cctor () [0x00000] in <filename unknown>:0
Version information: Mono Runtime Version: 2.6.7 (tarball Tue Mar 1 06:10:28 MST 2011); ASP.NET Version: 2.0.50727.1433
This library can be found and installed.
Go to the directory for the port and run make install.
#
#
cd /usr/ports/x11-toolkits/libgdiplus
make BATCH=yes install
This has some Xorg dependencies so compiling it could take a while. Notice the BATCH=yes parameter passed to make above. This will prevent any prompts and accept the defaults for every port this command compiles.