Ubuntu :: Compile And Install A Minecraft Mapper With The Program "make"?

Nov 19, 2010

Today, I was trying to compile and install a minecraft mapper with the program "make". I navigated to the directory in terminal and ran make. It found the make file and begins to work, then spits an error and stops. To be specific, this was the error:

Code:
cats4gold@computer:~/Downloads/cartograph-linux$ make
make -C src/
make[1]: Entering directory `/home/cats4gold/Downloads/cartograph-linux/src'
g++ -c -pipe -O2 -Wall main.cpp -o main.o
In file included from main.cpp:16:

[Code]...

View 9 Replies


ADVERTISEMENT

General :: Error: /home/davide/.minecraft/bin/minecraft.jar Is Not Supported Archive

Aug 20, 2011

When I open the minecraft.jar file with p7zip on Linux, I can't delete the META-INF folder.

This is the error:

Error: /home/davide/.minecraft/bin/minecraft.jar is not supported archive

System error: Operation not permitted

View 1 Replies View Related

Fedora :: Compile A Program To Make It Capable To Use >4GB Memory On 32-bit Fedora?

Apr 11, 2011

The whole code is written in C, C++, and Fortran. Is it possible to make it to use more than 4GB memory. Now it is always crashed when it reaches 3GB memory. If it is possible, how to set up the compiling options (or configure flags)? We can use gcc, g++, ...or intel compilers our OS: Fedora 12 x32

[code]....

View 2 Replies View Related

Ubuntu :: Make A Script That Specifies How Much Ram To Launch Minecraft Server

Dec 25, 2010

I want to make a script that specifies how much ram to launch minecraft server with, so far I have:Code:read $ra
java -Xmx$raM -Xms$raM -jar minecraft_server.jar noguibut I knowthat that won't work because there is the M at the end of the variable $ra, is there a way I could make this work? I believe that the M at the end is required to specify the measurement unit.

View 1 Replies View Related

Slackware :: Cannot Install PAL Like All Successful, And The Program To Compile?

Apr 15, 2010

I do not even know where to begin, and what logs / errors show: I am completely confused in the variables, etc.I can not install PAL Like all successful, and the program to compile, but I can not verify this.I tried premake and one Engine ODE - then I get an error segmentation, when you start paldemo.If I use cmake, then get this:

Code:
...
[ 46%] Built target libpal

[code]....

View 1 Replies View Related

General :: MAKE BZIMAGE Doesn't Work When Compile And Install New Kernel?

Jul 19, 2010

whenever i'm in the process of compiling and installing a new kernel in ubuntu lucid lynx i get an error message when i get to the make bzimage part is there some sort of program that i needed to install first or is there an alternative to doing this.

View 8 Replies View Related

CentOS 5 :: Install HW RAID Partitions As /dev/md Instead Of /dev/mapper/isw?

Feb 4, 2010

I am trying to setup a H/W RAID-1 matrix but I am unsuccessful. I am trying to get partitions installed as /dev/md0, /dev/md1 but it keeps going for /dev/mapper/isw...The reason is that I have R1Soft backup and it needs to hook the partitions as seen in /proc/partitions from /dev not /dev/mapper/isw. I have tried to boot the installation with various options but nothing!

View 16 Replies View Related

Fedora Installation :: 14 - Install Program Make An Addition To The Existing GRUB Configuration?

Mar 7, 2011

I've just got another sata HDD and thought lets put in a nice install of Fedora 14 having tried out the live CD over the weekend. Right my system is configured thus

[Code]...

will Fedora 14's install program make an addition to the existing GRUB configuration or will it do something different Yes I have searched.... and looked at the installation documents....

View 14 Replies View Related

OpenSUSE Install :: Good Program To Make Disk Images To Reset System

Aug 20, 2010

I have a lot of RAR files and ISO. Is there a program like Winrar which could open them in Linux? Cause now it only opens zip files . Also I would like to know what the best package manager is (I mean the easiest -used to use the Software Manager in Mint 9 Xfce).At last I would like to know if there is a good program to make disk images to reset the system.

View 9 Replies View Related

Ubuntu :: Can't Compile A C Program

Jan 4, 2010

I can't compile a C program form terminal using gcc by Code Blocks 8.02 is able to do so.

Code:
#include<stdio.h>
int main(void)
{
printf("Hello World

[Code]....

View 9 Replies View Related

Ubuntu :: Compile A C Program For Mac?

Apr 20, 2011

im writing from ubuntu i have made a c program and im wondering how can i compile it for being able to run on mac

View 2 Replies View Related

Ubuntu :: Can't Compile The Program?

Jul 18, 2011

I followed the steps from the this website [URL]..but after I run: sudo make I got this output:

[Code]...

View 2 Replies View Related

Ubuntu :: How To Compile And Execute IDL Program

Jan 24, 2010

Following is the IDL program found on the internet but i dont know how to compile and execute (even dont know can it be done under linux).

Code:

View 9 Replies View Related

Ubuntu :: Compile A Program That Uses SFML With G++

Jul 21, 2011

when I try to compile a program that uses SFML with g++, this appears:

Code:
/usr/local/include/SFML/Window/OpenGL.hpp:47:23: fatal error: GL/gl.h: No such file or directory

View 2 Replies View Related

General :: Make A Script To Open A Program Then Operate Within That Program?

May 7, 2010

I am new to linux and am trying out script writing. I am using shell. How can I make a script to open a program then operate within that program?

View 5 Replies View Related

Ubuntu :: Compile Parallel C Program With MPI Codes?

Jun 20, 2011

I have a simple testing program like this:

/*The Parallel Hello World Program*/
#include <stdio.h>
#include <mpi.h>

[code]...

My program is, I can't compile this program using gcc, and I can't find something like pgcc in ubuntu. How should I compile this program? After compiling, what should I do to run this program? Can I use something like mpirun to run it? I want to try to use both cores of my computer to run it and make it shows Node 1 also besides Node0.

View 3 Replies View Related

Fedora :: Compile 32-bit Program On A 64-bit OS

Jan 20, 2010

I am trying to compile a very simple 32-bit program on my 64-bit fedora 12 install, but it won't let me.

I get this error.

I tested it on the school server (64 bit Red Hat Server), and it compiled flawlessly without any warnings. I think I am missing some libraries, but don't know which.

View 4 Replies View Related

OpenSUSE :: Can't Compile A Program

Jun 20, 2011

I was using my college's unix server (ubuntu presumably) to compile programs in the laboratory. Now, i have installed Opensuse 11.4 with gnome3. I have installed the Developers pattern, and almost all the packages that looked relevant (which came up when i searched for libgc , gcc, and all). Now, i cant compile a program:

Code:
/*program to test file I/O and getch/putch functionaliny in gcc*/
#include<stdio.h>
int main()
{ FILE *fi;
char ch;

[Code]....

View 1 Replies View Related

Programming :: Use G++ To Compile QT Program?

Dec 26, 2010

My Fedora 14 have installed gcc-4.5.1-4.fc14.x86_64,qt-4.7.1-5.fc14.x86_64,
I don't know how to use g++ to compile QT program.
Do I need to set PATH or something else?

View 5 Replies View Related

Fedora :: Unable To Compile The C Program?

Dec 9, 2010

from the commend line i went to compile the c program by giving the commend "gcc first.c -o first" but the commend line showing gcc is not found. iam using fedora 13 what can i do to compile the program . the program i used to compile is below

#include<stdio.h>
main()
{
printf("hello word
");
}

View 1 Replies View Related

Programming :: Compile A Program With Gtkmozembed?

Apr 21, 2010

i am not able to compile my test program which uses gtkmozembed.As i am very new to this, i dont know which are the packages to be installed and how to compile

[Code]...

View 1 Replies View Related

Software :: Steps To Compile A Ns2 Program?

Mar 16, 2011

What are the steps to compile a ns2 program?

View 2 Replies View Related

Software :: Cross Compile GTK Program To Arm

Jul 25, 2010

I want to cross compile gtk program from linux to arm. I am using ubuntu10.04. How can I cross compile it for arm. I have tried this but this is my output:
root@habesh-laptop:~/habesh/gtk# /root/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -o trail1 base1.c 'pkg-config --cflags --libs gtk+-2.0'
cc1: warning: include location "/usr/include/gtk-2.0" is unsafe for cross-compilation
cc1: warning: include location "/usr/include/atk-1.0" is unsafe for cross-compilation
cc1: warning: include location "/usr/include/cairo" is unsafe for cross-compilation .....

View 4 Replies View Related

Programming :: How To Compile Program For Windows

Feb 10, 2010

I have a c program and its related libraries for Linux. But, I need a EXE file to run in windows.

please let me know how to compile the program for windows

View 8 Replies View Related

Ubuntu Installation :: Compile A Program (powertab Tools) From Source?

Apr 6, 2010

I am new to Linux, and I just tried to compile a program (powertab tools) from source. I'm having som problems doing that. The "./configure" command works fine, but when I run "make", it gives an error:

Code:
seppe@Thuis:~$ cd ptabtools-0.5.0
seppe@Thuis:~/ptabtools-0.5.0$ ./configure
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no

[Code]...

View 1 Replies View Related

Ubuntu :: Compile The Cpp File By Make?

Feb 3, 2011

how to compile the cpp file by make?

make -w file -> does not work!
make -f file -> does not work!

View 4 Replies View Related

Fedora :: Unable To Compile C Program In Eclipse 13

Jun 20, 2010

since last days I am trying to run a simple c / cpp program using eclipse in my newly installed fedora 13, but every time it says either "program file not specified" or "binary error"

View 10 Replies View Related

SUSE :: Compile A Unix Program In Opensuse?

Mar 14, 2009

I have used a new header file named curses.h in my program.when i try to compile my program it shows me the following error "No such path or directory".What may be the problem?A part of the program is shown below

#include<unistd.h>
#include<stdlib.h>
#include<curses.h>

[code]...

View 2 Replies View Related

General :: Compile C++ Program Using Open Terminal?

May 13, 2010

I had wrote a program in the vi editor using the command vi [filename.cc] in open terminal and now i need to compile n run it

View 3 Replies View Related

Programming :: C++ Compiler(G++) Comes Up With Error When Try To Compile A Program Using Qt

May 26, 2010

I am using the C++ compiler G++ to compile my programs on Linux Mint 8 - Gnome.

I recently installed QT and when I tried to compile a simple "Hello World!" program it gave me this error:

Quote:

This is the code in HelloWorldQt.cpp:

Code:

I have tried using GTK instead but I get a similar error.

View 7 Replies View Related







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