Jump to content

aze

Members
  • Posts

    355
  • Joined

  • Last visited

Everything posted by aze

  1. Hi all! I installed Aria download manager but I can start it. in the console I type "aria [enter]" but it don't start. :(
  2. aze

    mozilla localized

    Hi all! Guys, I have downloaded a localized language for mozilla and I set it. But when I start mozilla it opens a window different I specteded. I'd like to attach the screenshot here but I can't find the field to this purpose. Thanks in advance!
  3. aze

    .rpm @ endeavour

    Hi all! How is the command line to run rpm packages? I mean the full path were's the application ty!
  4. Thank you! I installed ddd! Now rest I know how to use it.
  5. aze

    gimp print

    Ho do I do that? I'd like to install the latest driver.
  6. Hi guys! I downloaded DDD and tried to install it. './configure' runs ok but when I do 'make' it generate an error: In file included from logplayer.C:46: /usr/include/c++/3.2/backward/fstream.h:38: using declaration `streampos' introduced ambiguous type `streampos' make[1]: *** [logplayer.o] Error 1 make[1]: Leaving directory `/home/leandro/ddd-3.3.1/ddd' make: *** [all-recursive] Error 1 How could I fix that? Thank you in advance!
  7. aze

    gimp print

    Hi all! I'm trying to install the grimp print driver on mdk9. I do './configure' then 'make' but i can't do 'make install' because when I do make it generate an error: In file included from curve.c:28: gimp-print-internal.h:46:19: color.h: No such file or directory make[2]: *** [curve.lo] Error 1 make[2]: Leaving directory `/home/leandro/gimp-print-4.3.7/src/main' make[1]: *** [install-recursive] Error 1 make[1]: Leaving directory `/home/leandro/gimp-print-4.3.7/src' make: *** [install-recursive] Error 1 thank you in advance for any help!
  8. Hi all! There's a way to to open various mozilla windows? Everytime I try to open new mozilla windows it ask for a new profile if another instance of mozilla is already open. I know If I press ctrl+N in navigator it will open another window. But it is unconfortable and sometimes there's just a downloading window active (not the browser) so I need to wait the download finishes to can open navigate. It really boring me! :x Someone here know a trick to disable the new profile dialog and just open the navigator? Thank you guys!
  9. DDD is a commandline compiler? Or you mean gcc -g?
  10. I'm just a C beginner. I could make a verification for the file existence. But I'm just testing... I asked for because I have no trouble when using borland compiler on windows. By the way, you guys know a good debugger? I mean C debugger, not asm debugger.
  11. not comercial. no dependencies. #include <stdio.h> #include <string.h> FILE *arq; char hst[59000][100]; int qt_hst = 0; struct classe { char name[50]; int start; int end; } tipo[500]; void open() { char cor; int a = 0, b = 0, c = 0, d = 0, e = 0; arq = fopen("test","r"); cor = getc(arq); while (cor!=EOF) { if (cor == 'n') qt_hst++; cor = getc(arq); } qt_hst++; printf("Total lines: %dnn", qt_hst); fseek(arq, 0, SEEK_SET); /* drop all valid entries to memmory*/ cor = '0'; a=0; /* count blank/comments lines */ for (b; b < qt_hst-a; b++) { fgets( hst[b], 99, arq ); if (!strstr(hst[b],"#") ) { cor = '0'; if ( strchr(hst[b], 't') ) strcpy(hst[b], strchr(hst[b], 't')+1); else { if ( strchr(hst[b], ' ') ) { c = d = 0; for (c; c < strlen(hst[b]); c++) if (hst[b][c] == ' ') d++; strcpy(hst[b], strchr(hst[b], ' ')+d); } else { b--; a++; } } } else { //printf("%c",7); if (cor != '1') { printf("%d - %s",e, hst[b]); if (tipo[e].start) { //printf("%s",tipo[e].start); tipo[e].end = b-1; e++; tipo[e].start = b; } else tipo[e].start = b; strcpy( tipo[e].name, hst[b] ); cor = '1'; } b--; a++; } } qt_hst = b; if (tipo[0].start) tipo[e].end = qt_hst-1; fclose(arq); } void repeat() { int a, b, c; unsigned char tam[59000]; a = b = c = 0; printf("ntScanning for duplicated entries...nn"); for (a; a<qt_hst;a++) tam[a]=strlen(hst[a]); for (a=0; a < qt_hst; a++) { for (b = a+1; b < qt_hst; b++) { if (tam[a] == tam[b]) { if ( memcmp(hst[a], hst[b], tam[a]) == 0) { printf("%d : %dn",a+1,b+1); printf("%s%sn",hst[a],hst[b]); c++; } } } } printf("nnt%d repeated entries found.n",c); } void main() { char i; st: system("clear"); open(); repeat(); } How do I ask for a keypress in ANSI default? i=getch(); /* works in windows but not in linux */ Thank you!
  12. Hi! Everytime I compile a .c program using gcc and run a.out it return: "Segmentation fault" and stop the program. What's wrong? Thank you in advance!
  13. aze

    Batch file

    Thank you! :D
  14. aze

    Batch file

    Well I trying to make an simple link to execute a program as SU I simply created a text file: su /usr/bin/endeavour2 but when I run it the program don't start. What I'm doing wrong?
  15. Thank you guys! I couldn't install gfilerunner but endeavour installed successful!
  16. Hi all! Happy new year! I'm trying to install a file manager at gnome (gfilerunner.sourceforge.net) but when I type ./configure (as suggested readme) it generate an error: checking for a BSD compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for mawk... no checking for gawk... gawk checking whether make sets ${MAKE}... yes checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for executable suffix... checking for object suffix... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking dependency style of gcc... (cached) gcc3 checking for gcc option to accept ANSI C... none needed checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for gnome-config... no checking for gnomeConf.sh file in /usr/local/lib... not found configure: error: Could not find the gnomeConf.sh file that is generated by gnome-libs install How do I fix that? Thank you!
  17. i using the latest nvidia driver for linux the program added some lines to /etc/X11/XF86Config-4 file. If you couldn't run it but you're using nvidia driver try that Section "Device" Identifier "device1" VendorName "nVidia Corporation" BoardName "NVIDIA GeForce2 DDR (generic)" Driver "nvidia" Option "DPMS" Option "NvAGP" "3" Option "CursorShadow" "1" <---- Option "DigitalVibrance" "255" <---- EndSection
  18. aze

    java @ mozilla

    Hi all! Have Mozilla support for java? If so, how do I install it? If not, what linux browser suport it? Thank you! Happy new year!
  19. aze

    file manager

    Hi! Do you know some good file manager? The ones wich come with the desktops are not so user friendly to me. Besides some desktops don't have an own file manager (fluxbox, windowmaker). TY!
×
×
  • Create New...