Find the answer to your Linux question:
Results 1 to 6 of 6
I am having trouble getting a certain program to work. It's called Magic Set Editor, and it has a linux version. It seems to install fine, but when I press ...
  1. #1
    Just Joined!
    Join Date
    May 2009
    Posts
    5

    Need help installing a program

    I am having trouble getting a certain program to work. It's called Magic Set Editor, and it has a linux version. It seems to install fine, but when I press the link to run the program it always says there is no file type associated with this program. Here is the site to download it:

    magicseteditor.sourceforge.net/download

    I've tried the full and reduced versions, and I tried building it from source, which I have no idea how to do. I am using Fedora 10. Also, I've gone to their linux guy and he tried to help, but has never used Fedora, and so nothing he said worked. Can anyone help me figure this out?

  2. #2
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,144
    Hello!
    I was looking at their website, did you see this ?
    If you are having trouble running the install script for MSE, please delete lines 20-26 of the install script (the two if blocks).
    You might also try running it from the command line, if that fails it will usually give you an error that will lead you somewhere.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  3. #3
    Just Joined!
    Join Date
    May 2009
    Posts
    5

    ...

    I tried all of that. It doesn't install with the 'if' statements. It installs to 'usr/local/share/magicseteditor' and all of the icons have X's at the top right. Furthermore, when I try to run the program in terminal it prints this:

    ./magicseteditor: error while loading shared libraries: libwx_gtk2u_richtext-2.8.so.0: cannot open shared object file: No such file or directory

    ..and I can't seem to find that particular package. This has been a very frustrating--what turned out to be a--project.

  4. #4
    Just Joined!
    Join Date
    May 2009
    Posts
    2
    go to rpmfind.net seach for libwx_gtk2u_richtext-2.8.so.0

    download and install rpm

  5. #5
    Just Joined!
    Join Date
    May 2009
    Posts
    5

    Pulling out hair

    I found the package and installed it. Now it says it needs:

    libhunspell-1.2.so.0

    I went to the same place the dependency resolution failed, and these are the details:

    libhunspell-1.2.so.0()(64bit) is needed by package hunspell-devel-1.2.7-5.fc10.x86_64
    libhunspell-1.2.so.0()(64bit) is needed by package 1:openoffice.org-core-3.0.1-15.4.fc10.x86_64
    libhunspell-1.2.so.0()(64bit) is needed by package 1:enchant-1.4.2-4.fc10.x86_64

    I went to another place and tried to download the same package ( hunspell-1.2.8-4.fc11.i586.rpm) and it told me there is a local file conflict between packages, and these were the details:

    Test Transaction Errors: file /usr/lib/libhunspell-1.2.so.0.0.0 from install of libhunspell-1.2.8-1mamba.i586 conflicts with file from package hunspell-1.2.7-5.fc10.i386

    I also installed it from fedora's package installer. In essence, hunspell is asking for the same lib file that websites say its package includes.

  6. #6
    Just Joined!
    Join Date
    May 2009
    Posts
    1

    Bluetooth question:

    Hi there,

    I am fairly new to the linux environment and this forum so wasnt sure where to post this but have some questions in regards to installing a bluetooth application. I am currently running Fedora 10. The application I am trying to compile is called bluesnarfer. Once I have it installed I am interested in the Linux to mobile protocol.

    First I navigate to the file location as root user (All files present):

    HTML Code:
    [root@###-###-###-###-## bluesnarfer]# dir
    include  Makefile  README  src
    [root@###-###-###-###-## bluesnarfer]#
    Then I run the install command as included with the package:

    HTML Code:
    [root@###-###-###-###-## bluesnarfer]# gcc -Iinclude -W -g3 -lbluetooth src/bluesnarfer.c -o bluesnarfer
    And this happens:

    s
    HTML Code:
    rc/bluesnarfer.c:29:33: error: bluetooth/bluetooth.h: No such file or directory
    src/bluesnarfer.c:30:27: error: bluetooth/hci.h: No such file or directory
    src/bluesnarfer.c:31:31: error: bluetooth/hci_lib.h: No such file or directory
    src/bluesnarfer.c:32:30: error: bluetooth/rfcomm.h: No such file or directory
    src/bluesnarfer.c: In function ‘parse_rw’:
    src/bluesnarfer.c:39: warning: incompatible implicit declaration of built-in function ‘strchr’
    src/bluesnarfer.c: In function ‘bluesnarfer’:
    src/bluesnarfer.c:146: error: ‘HCI_UP’ undeclared (first use in this function)
    src/bluesnarfer.c:146: error: (Each undeclared identifier is reported only once
    src/bluesnarfer.c:146: error: for each function it appears in.)
    src/bluesnarfer.c:152: error: ‘BTPROTO_RFCOMM’ undeclared (first use in this function)
    src/bluesnarfer.c: In function ‘bt_get_remote_name’:
    src/bluesnarfer.c:190: error: storage size of ‘cr’ isn’t known
    src/bluesnarfer.c:193: error: ‘bdaddr_t’ undeclared (first use in this function)
    src/bluesnarfer.c:193: error: expected ‘;’ before ‘bdaddr’
    src/bluesnarfer.c:201: error: ‘bdaddr’ undeclared (first use in this function)
    src/bluesnarfer.c:203: warning: incompatible implicit declaration of built-in function ‘memcpy’
    src/bluesnarfer.c:204: error: ‘ACL_LINK’ undeclared (first use in this function)
    src/bluesnarfer.c:206: error: ‘HCIGETCONNINFO’ undeclared (first use in this function)
    src/bluesnarfer.c:208: error: ‘HCI_DM1’ undeclared (first use in this function)
    src/bluesnarfer.c:208: error: ‘HCI_DH1’ undeclared (first use in this function)
    src/bluesnarfer.c:223: error: ‘HCI_OE_USER_ENDED_CONNECTION’ undeclared (first use in this function)
    src/bluesnarfer.c: In function ‘rfcomm_read’:
    src/bluesnarfer.c:251: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c: In function ‘bt_rfcomm’:
    src/bluesnarfer.c:265: error: storage size of ‘req’ isn’t known
    src/bluesnarfer.c:267: error: ‘bdaddr_t’ undeclared (first use in this function)
    src/bluesnarfer.c:267: error: expected ‘;’ before ‘bdaddr’
    src/bluesnarfer.c:276: error: ‘bdaddr’ undeclared (first use in this function)
    src/bluesnarfer.c:278: warning: incompatible implicit declaration of built-in function ‘memset’
    src/bluesnarfer.c:284: warning: incompatible implicit declaration of built-in function ‘memcpy’
    src/bluesnarfer.c:284: error: ‘BDADDR_ANY’ undeclared (first use in this function)
    src/bluesnarfer.c:287: error: ‘RFCOMMCREATEDEV’ undeclared (first use in this function)
    src/bluesnarfer.c: In function ‘custom_cmd’:
    src/bluesnarfer.c:382: warning: incompatible implicit declaration of built-in function ‘strstr’
    src/bluesnarfer.c:390: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c: In function ‘bt_rfcomm_rel’:
    src/bluesnarfer.c:411: error: storage size of ‘req’ isn’t known
    src/bluesnarfer.c:413: warning: incompatible implicit declaration of built-in function ‘memset’
    src/bluesnarfer.c:416: error: ‘RFCOMMRELEASEDEV’ undeclared (first use in this function)
    src/bluesnarfer.c: In function ‘rw_cmd’:
    src/bluesnarfer.c:434: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c:442: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c:455: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c: In function ‘parse’:
    src/bluesnarfer.c:500: warning: incompatible implicit declaration of built-in function ‘memset’
    src/bluesnarfer.c:503: warning: incompatible implicit declaration of built-in function ‘strchr’
    src/bluesnarfer.c:506: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c: In function ‘search_cmd’:
    src/bluesnarfer.c:550: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c: In function ‘list_cmd’:
    src/bluesnarfer.c:600: warning: incompatible implicit declaration of built-in function ‘strlen’
    src/bluesnarfer.c:614: warning: incompatible implicit declaration of built-in function ‘strchr’
    src/bluesnarfer.c:622: warning: incompatible implicit declaration of built-in function ‘strstr’
    src/bluesnarfer.c: In function ‘info_cmd’:
    src/bluesnarfer.c:643: warning: incompatible implicit declaration of built-in function ‘strlen’
    
    From my understanding (though limited) is that the bluetooth header files can not be located such as the bluetooth.h etc and therefore will not compile. Now I have the entire bluetooth framework installed on my system including:

    Linux Bluetooth protocol stack (BlueZ)
    - GCC compiler
    - D-Bus library
    - GLib library
    - USB library (optional)
    - Lexical Analyzer (flex)
    - YACC (yacc, bison, byacc) - (bison)
    - BlueZ-libs

    and therefore fail to understand why the application does not launch. From other information I could gather is that it could be due to a path variable in the GCC...???

    Would love if someone could shed some light on this and help me get this up and running!

    Look forward to some responses

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...