Contents tagged with Monoppix
-
Rebooting the Monoppix project
Roiy and I have decided it's high time for another Monoppix release. Monoppix is a Linux Live CD pre-configured with Mono, MySQL, and a bunch of sample applications and training material. It's all designed to make it ridiculously simple to work (and play) with a configured Linux / Mono setup without having to spend hours or days getting it all set up.
-
Mono 1.2 Released
Novell released Mono 1.2 at TechEd today. The main feature of 1.2 is support for System.Windows.Forms. The roadmap and previous releases indicate that 1.2 has a lot of other cool features, but it's hard to tell exactly what they are since the release notes apparently aren't available yet. UPDATE: The release notes are now available.
I even dug through the repository, but couldn't find any release notes. I'm sure it's just a matter of time. Until then, the release announcement on the Mono site says: -
Monoppix 1.1.8 - New Release
Monoppix 1.1.8 is live!
-
New blog by Roiy, creator of Monoppix
Roiy, the brains behind the Monoppix project, just started a blog. His first post covers Sending E-Mails With Embedded Images and an overview of the DotNet Open Mail Library project.
-
Monoppix 1.0.6 Release
Monoppix is a bootable Linux CD that runs .NET applications on the Mono framework. It makes it easy to see your .NET code running on Linux without installing a thing.
-
[tools] Monoppix 1.0 is out
Monoppix 1.0 has been released! Our new website, www.monoppix.com is live! Help wanted!
-
Monoppix Preview (0.2.2.3) Release
Monoppix is a GNU/Linux distribution which includes Mono, XSP, and Monodevelop, and runs completely off a CD. It allows you to get familiar with Mono development in Linux without installing anything on your computer.
Monoppix was based on Knoppix and Miniknoppix and was developed by Roiy Zysman (zroiy at spymac dot com). -
Monoppix - CSC Quickstart Walkthrough
This quickstart was written by Roiy Zysman and is included in the Monnopix ISO [ monoppix-v0.2.2.3.iso 404 MB].
The following steps will show you how to write a small Mono program, compile and execute it
1.Once the Initialization stage is over , open up the kwrite text editor.
2.Enter the following text:
using System;
public class Test
{
public static void Main()
{
Console.WriteLine("We got mono...");
return;
}
}3.Save as /tmp/test.cs
4.Open a terminal window by clicking on the panel 'shell' button
5.execute the following commands in the terminal window:
- cd /tmp
- mcs test.cs
- mono test.exe
-
Monoppix - Basic XSP (ASP.NET) and Monodevelop Walkthrough
Monoppix is a GNU/Linux distribution which includes Mono, XSP, and Monodevelop, and runs completely off a CD. It allows you to get familiar with Mono development in Linux without installing anything on your computer.
This walkthrough was written for Monoppix 0.2.2.3. It will step you through:
- Downloading the Monoppix ISO
- Burning the ISO to a bootable CD
- Running Monoppix off the CD
- Starting the XSP server
- Testing an ASPX webservice
- Editing the ASPX file in Monodevelop
- Saving the ASPX file to your /home/knoppix/ directory
- Restarting the XSP server in your /home/knoppix/ directory
- Verifying your changes
- Quick info on taking screenshots in Monoppix (or any Knoppix)
1. Download the Monoppix ISO
The Monoppix ISO is available from http://monoppix.url123.com/download [404MB]. The download goes through Freecache which should ensure a high speed download.
2. Burn the ISO to a bootable CD
The easiest ways to burn an ISO to a bootable CD in Windows are:
- Nero, using the CD-ROM (BOOT) option
- ISORecorder (free, XP SP2 or Windows 2003 need to use the ISORecorder v2 beta release)
- CDBurn (part of free Windows 2003 Resource Kit, works on Windows XP, command line only)
3. Running Monoppix off the CD
Make sure the CD is in the CD drive and restart your computer. If it boots in your normal operating system, reboot again and change the start device priority in your BIOS to set the CD drive to higher priority in the boot order than the Hard Drive. At the prompt, you'll need to enter a Knoppix cheat code to tell Knoppix what hardware to use. If you're using standard equipment, you're probably okay with just "knoppix" (without the quotes). If you're using a laptop or LCD monitor, "fb1024x768" will probably work.
4. Starting the XSP server
Open a console window (the taskbar icon that looks like a shell). Type the following command:cd /usr/share/doc/xsp/test && mono /usr/bin/xsp.exe
This will start up the XSP server. You should see the following:
Next, open a browser. Monoppix includes Konqueror (the taskbar icon on the right) and Mozilla (in the Start menu). Browse tohttp://localhost:8080/
5. Testing an ASPX webservice
Click on the second link, TestService.asmx. Click the "Add" link on the left, then the "Test Form" link on the top. Enter two integers and submit the form:
6. Editing the ASPX file in Monodevelop
You'll need to start Monodevelop from the command prompt in this release. Open a console window and type the following:/KNOPPIX/usr/bin/monodevelop monodevelop
Select File / Open from the menu, then browse to /KNOPPIX/usr/share/doc/xsp/test. Open the TestService.asmx file.
Edit the code. My changes to the code are underlined below; feel free to make whatever changes you'd like as long as it compiles.
<%@ WebService Language="c#" Codebehind="TestService.asmx.cs" Class="WebServiceTests.TestService" %> using System; using System.Web.Services; using System.Web.Services.Protocols; namespace WebServiceTests { public class TestService : System.Web.Services.WebService { [WebMethod] public string Echo (string a) { return a; } [WebMethod] public string Add (int a, int b) { return String.Format("Here is your total:{0}",a+b); } } }
7. Saving the ASPX file to your /home/knoppix/ directory
Since the TestService.asmx file is located on the CD, you can't save your changes there. You can save files to the /home/knoppix/ directory, though, since that's located on the RAM drive. Select "File / Save As...", navigate to /home/knoppix/, and save the file:
8. Restarting the XSP server in your /home/knoppix/ directory
If the console window from step 4 is still open and running XSP, select the console window and press Enter (or Return, if you have a really old keyboard) to close XSP.
In a console window, type the following command:
cd /ramdisk/home/knoppix/ && mono /usr/bin/xsp.exe
9. Verifying your changes
Refresh your browser window if it is still open, or open a browser and navigate tohttp://localhost:8080/TestService.asmx
Verify that your changes have taken effect. In my example, I changed the output from a simple integer value to "Here is your total: xx". Well worth the hours of work:
10. Quick info on taking screenshots in Monoppix (or any Knoppix)
Monoppix doesn't include Ksnapshot. I took these screenshots with xwd. I used the following command:
xwd | xwdtopnm | ppmtojpeg > /home/knoppix/filename.jpg