General :: IDE / GUI Package To Develop Software Utility?

Oct 4, 2009

Any useful IDE and GUI pkg that I can use under Linux to develop a software utility in C#? It would be good if the license for the GUI pkg allowed my code to be sold and not require it to be given away for free.

View 2 Replies


ADVERTISEMENT

Ubuntu Installation :: Cpuid Utility Is Not Compiled With U9.04 And Utility Is Not Available As Package With Synaptic?

Feb 5, 2010

cpuid utility is not compiled with U9.04 and the utility is not available as a package with synaptic -
other distributions have it available as rpm . url

Any way to run this utility in the Debian world?

View 2 Replies View Related

Red Hat :: How To Install RPM Package Without Using Utility

Feb 16, 2011

I know the subject of this sounds pretty stupid, but I was trying to follow some instructions to upgrade from CentOS 4.8 to CentOS 5.5 and somewhere along the line I messed up the rpm utility and now I get the following:

RPM: error while loading shared libraries: librpm-4.4.so: cannot open shared object file: No such file or directory

I need to install the rpm-libs package but my rpm utility doesn't work so I don't know what to do?

View 2 Replies View Related

General :: Want To Develop Own Distribution

May 6, 2010

Where would I begin if I want to develop my own distribution? I have the kernel 2.6 downloaded, so obviously I need that. Anyone have a decent site or book I can look at? I want to use KDE/Gnome, with a GUI installer. I know a bit of C/C++, and I'll need a good, (and cheap if possible) book to brush up.

View 5 Replies View Related

General :: Where To Store Application That I Develop?

Sep 6, 2011

I'm developing a server application for ubuntu server, clients will connect to in through socket connection. It's in beta stage and under heavy development. At the moment lots of people are using it and it is updated almost every day. So I seed to seriously consider security issues and in the same time don't restrict myself too much. Now I have two questions:

Where is the appropriate place to store its files? Application consists of executable, some config files and startup script. But I don't want to spread it accross the filesystem just store in single folder for convenience since app is under heavy development. My guess would be to create new dir under /var. Right now I store it in my home folder.
Do I need to create separate user for it? I start it up using init.d script via sudo -u me. I want to restrict its access to system for security purposes but in the same time I want to be able to update it through FTP and not run into access issues (user that uploads it is different from user that runs it, and it sometimes need write access to some files). How to do that?

View 1 Replies View Related

General :: Want To Develop Window Manager

Jan 25, 2010

OK, so i have been thinking of developing my own distro. After experimenting with LFS(Linux From Scratch), i now know even more Linux, but i could not find out to create a Distro. Now, i want to use an existing Linux Distro, modify source code, and develop my own Window Manager(like GNOME and stuff.. i HAVE googled it, but it was nothing good there.) I also know that Elive has a good window manager, but i want to modify it a little. Do you guys know a good way to start, or a good website with resources i can use?

View 11 Replies View Related

General :: KDevelop: Only To Develop GUI Applications?

Aug 12, 2011

Kernel 2.6.21.5, slackware 12.0 Kdevelop 3.3.91 writing a C program of a pretty good size and, when I am done compiling, I'll have to begin debugging. I know of dbg, but was thinking in one of those integrated development environments (IDEs). Looking into my HDD, I found a KDevelop package and began to see what it was about. The documentation (help) is copious and it seems I will never get to the point in the docs where I'll know if it serves my purpose. For I'm afraid it is intended to develop appls for KDE, when in reality, my appl runs in a text console. So that is the question. Is KDevelop mainly intended for developing GUI applications?

View 7 Replies View Related

General :: Develop Embedded In ARM9 Controller?

Nov 14, 2010

But started to develop Embedded linux in ARM9 controller.

View 12 Replies View Related

General :: Ubuntu 9.04 - Cannot Find Icon For Mono Develop

Nov 11, 2010

I have installed mono develop 2.4 from terminal successfully. But surprisingly I could not find any icon on my desktop to launch Mono Develop. How can I solve the above issue and how can I create a icon on desktop to launch Mono Develop.

View 1 Replies View Related

General :: Ubuntu Server Vs Desktop Edition / Which To Get For Develop Php App?

Nov 29, 2010

If I choose Ubuntu develop php app, which edition should I get, Ubuntu Server Edition or Ubuntu Desktop Edition?

View 3 Replies View Related

General :: Develop File Recovery Software Of Operating System

Mar 13, 2009

I want to develop file recovery software of linux operating system guide me how it will possible or how i should start.

View 2 Replies View Related

General :: Ip Tracer Utility ?

Mar 17, 2011

Anyone having any idea of any utility or code in linux which is able to trace the ip addressof the user who have just viewed my webpage.

View 1 Replies View Related

General :: Functions Of The Tar Utility?

Apr 30, 2010

What are the functions of the tar utility?

View 9 Replies View Related

Programming :: How To Develop Software?

Jun 26, 2009

Do you need to know C++ to develop software. I'm an advanced PC user. Is it pretty easy to pick up. What kind of capabilities can I tap into?

View 14 Replies View Related

Programming :: How To Develop Firmware?

Nov 27, 2010

I would like to know what should I do to be able to develop firmware for a system.I have been a hobbyist kernel programmer and as an interest I have written device drivers.Now I would like to jump to firmware development.

View 2 Replies View Related

Programming :: How To Develop Kernel?

Oct 23, 2010

I just started taking OS implementation class, and you might wonder why im not asking this from my professor, well I have but he said its too soon.I want to know that if someone were to develop a new kernel , where would they start ?If you could just let me know where to start I would appreciate it very much.

View 2 Replies View Related

General :: Incremental Searching With The `less` Utility?

Feb 26, 2010

Does less have an incremental search?

I'm on xubuntu.

View 2 Replies View Related

General :: X Equivalent Of 'screen' Utility?

Jun 2, 2011

Under unix/linux, there is this extremely useful program screen: it's for bash, text-only, and I can detach a session, log out (the session is still running though), log in later (even from a different computer) and resume the session exactly as I left it. My question is, is there an equivalent to screen for X? So what I want to do is: work remotely with ssh -X in an X-session on a remote linux machine, log out, then later log in from a different computer again with ssh -X and then re-attach the X-session; practically resuming work from the moment when I logged out before. Is this possible?

View 4 Replies View Related

General :: Grabbing RE From String - Any Utility?

May 20, 2010

What's the best command to use to grab just a regular expression from some text input? I've got is some input is in the form:

<uninteresting><start-marker><good stuff><end-marker><uninteresting>

I can construct a RE to match <start-marker>.*<end-marker>, but is there a utility that would return *just* the <good stuff> I'm interested in? I realise that the alternative is something along the lines of:

Code:
cat <input-file> | awk -F'start-marker' 'print ${2}' | awk -F'end-marker' 'print ${1}'
but it would be better if I could do it all in one go.

View 5 Replies View Related

General :: Utility Available For Copy One HDD To Two More Simultaneously?

Feb 6, 2010

I want to copy data from one source drive to three or more destination drive simultaneously. I tried with dd command. But it copy entire Hard disk. Its take long time to copy entire disk. i need the utility or software to copy one source to multi destination simultaneously and fast manner

View 3 Replies View Related

General :: Utility For Locking Folders?

Aug 4, 2010

Please suggest an utility for locking folders.I am using CentOS-5.4 (64-bit).

View 4 Replies View Related

Ubuntu :: How To Develop C++ Application Program

Jan 2, 2011

i was working in microsoft visual c++ but i have a plan to move Linux, So i installed ubuntu then how to program c++ application in ubuntu

View 1 Replies View Related

Ubuntu :: Develop Applications Like Calibre

Feb 17, 2011

I'm quite in acquaintance wit C,C++,Java etc. And have been using Ubuntu for quite a long time. how develop applications, Applications like calibre, Etc. I've also installed Eclipse, completely ignorant of it utilisation.

View 2 Replies View Related

General :: Utility For Different Wine Installation For Different Programs?

Aug 26, 2010

I seem to recall that there is a utility that sets up and manages completely different Wine installations for different programs. People use it primarily for games, so that the necessary tweaks and config options that work well for one game do not interfere with another.

I can't remember the name of it, though, and no amount of searching has reminded me.

View 2 Replies View Related

General :: Used The Disk Utility To Edit The Partitions ?

Jan 11, 2011

I was on Ubuntu 10.04 I used the Disk Utility to edit the partitions.

Here is the table it's showing:

Here I deleted 79 GB patition from FAT32 to NTFS and deleted 50 GB space that was ext4 partition where SUSE was residing the bootloader was of SUSE that was working using the same utility.

After that with a live cd of ubuntu I tried to recover the grub but there was no device.map file. Later I found the partition table absent.

The utility shows above table but Gparted shows only 500GB free space without any partition. Please help can't loose all the data.

I can access the partitions in live environment I can't even install a fresh OS because It also shows 500GB unallocated space.

View 3 Replies View Related

General :: Software Or Utility To Catalog A Directory?

Jun 27, 2010

I am using ubuntu 8.04 with GNOME. In windows xp I had 'virtual volumes view' which would create catalog of partition in graphical way & searchable for file or folder. In catalog we can see file size. I want to find alternative in ubuntu.

View 1 Replies View Related

General :: Utility To Read DIMM VPD Data?

Sep 9, 2010

Do we know of any utility that would read DIMM VPD data in the system? DIMMs on PCIe Card

View 3 Replies View Related

Ubuntu :: GTK Designer In Mono Develop Not Working?

May 5, 2010

I installed Mono Develop on Ubuntu 10.04 X86 . What I found when I tried to design a GUI using the GTK designer is that the tool box which houses GUI widgets does not appear. Is there any fix or solution to this?

View 1 Replies View Related

Ubuntu One :: Develop A Native KDE Kubuntu Client?

May 3, 2011

Is there any plan to develop a native KDE (K)ubuntu one client?

View 4 Replies View Related

Software :: Install Mono Develop On Puppy

Jul 28, 2009

There isn't a package for puppy linux and I have no idea how to install it.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved