Cloud based IDE for OS Development

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
cycl0ne
Posts: 22
Joined: Tue Sep 02, 2008 11:17 am

Cloud based IDE for OS Development

Post by cycl0ne »

The cloudbased IDEs are jumping out from every side (cloud9, codeio,...) and I like the approach.

Now my question: Anybody tried to code with them OS things and with whom? Or does anybody know of an Web IDE which one could install on an own server to accomplish our tasks?

It would be wonderful to be sitting anywhere and code on a project without to install everything local (qemu, crosscompiler, ....)

Brgds
C.
User avatar
SoLDMG
Member
Member
Posts: 96
Joined: Wed Jul 23, 2014 8:00 am
Location: The Netherlands
Contact:

Re: Cloud based IDE for OS Development

Post by SoLDMG »

If you can't find it, write it yourself. Then find something that does just that, and realize you just wasted your time. XD

Codiad maybe? Or for a Raspi WebIDE?
My post is up there, not down here.
cycl0ne
Posts: 22
Joined: Tue Sep 02, 2008 11:17 am

Re: Cloud based IDE for OS Development

Post by cycl0ne »

SoLDMG wrote:Codiad maybe? Or for a Raspi WebIDE?
Codiad I installed and looks good, some things missing (better terminal, perhaps a window (canvas) for qemu output) and what is also missing: github integration ;-) Perhaps too much wishes..

But yes, one could also use this for raspberry pi development, just a switch to Qemu-arm and a cross compiler for arm code.
embryo

Re: Cloud based IDE for OS Development

Post by embryo »

cycl0ne wrote:Or does anybody know of an Web IDE which one could install on an own server to accomplish our tasks?
It is called Windows. It's remote desktop allows us to write any imaginable OS. I suppose the Linux world has something similar (if you prefer such environment).
seuti
Member
Member
Posts: 74
Joined: Tue Aug 19, 2014 1:20 pm

Re: Cloud based IDE for OS Development

Post by seuti »

embryo wrote:
cycl0ne wrote:Or does anybody know of an Web IDE which one could install on an own server to accomplish our tasks?
It is called Windows. It's remote desktop allows us to write any imaginable OS. I suppose the Linux world has something similar (if you prefer such environment).
You can get VNC servers for Linux and Windows (unsure about Mac as I've never had one)
mallard
Member
Member
Posts: 280
Joined: Tue May 13, 2014 3:02 am
Location: Private, UK

Re: Cloud based IDE for OS Development

Post by mallard »

seuti wrote: You can get VNC servers for Linux and Windows (unsure about Mac as I've never had one)
Macs actually have a VNC server built-in... (At least they used to.)

Besides, you can do OS development over an SSH connection if you were so included, QEMU even has the "-curses" switch so it'll display in a console.

Also, you can get an RDP server for Linux too. I use one regularly. It's faster than VNC and can manage sessions properly.
Image
cycl0ne
Posts: 22
Joined: Tue Sep 02, 2008 11:17 am

Re: Cloud based IDE for OS Development

Post by cycl0ne »

I have this configuration at the moment:

Windows 7 - 64bit PC
- Notepad++
- Teamviewer
- VirtualBox
- Linux installed
- Qemu
- CrossCompiler

With Teamviewer I connect and code and debug etc....

The problem I have, we are more than one people coding on this, and everyone needs to have the same config to code.... So yes, this is an option, already in use ;-)

--but back to topic --
I found now VC86 which is kindof bochs/qemu runnning in Javascript in your browser :-)

So now i have a machine with apache, which runs:
- Codiad as IDE
- Cross Compiler gcc

Now I only need to create a plugin which handles the compile/make and a plugin to start the VC86 with the bin file. And you have the perfect online OS Development machine ;-)
Post Reply