Problem getting subsonic web interface to work

I posted this in the subsonic forums and have not received any reply.
I had Subsonic running nicely on Debian, but I have now switched my server OS to Arch. I installed the package in the AUR (https://aur.archlinux.org/packages.php?ID=35954), which is based on the standalone version of subsonic, but I have not been able to connect to the web interface once the server is started.
The variables in subsonic.sh look like this:
SUBSONIC_HOME=/var/subsonic
SUBSONIC_HOST=127.0.0.1
SUBSONIC_PORT=4040
SUBSONIC_HTTPS_PORT=4041
SUBSONIC_CONTEXT_PATH=/
SUBSONIC_MAX_MEMORY=100
SUBSONIC_PIDFILE=/var/subsonic/subsonic.pid
SUBSONIC_DEFAULT_MUSIC_FOLDER=/var/subsonic/music
SUBSONIC_DEFAULT_PODCAST_FOLDER=/var/subsonic/podcasts
SUBSONIC_DEFAULT_PLAYLIST_FOLDER=/var/subsonic/playlists
I have what I believe are suitable permissions on all of the needed folders:
drwxr-xr-x 2 root root 4096 Jul 16 11:49 db
-rw-r--r-- 1 root root 3003 Jul 15 19:49 Getting Started.html
drwxr-xr-x 3 root root 4096 Jul 15 20:43 jetty
-rw-r--r-- 1 root root 35819 Jul 15 19:49 LICENSE.TXT
drwxr-xr-x 2 root root 4096 Jul 15 21:19 music
drwxr-xr-x 2 root root 4096 Jul 16 11:38 playlists
drwxr-xr-x 2 root root 4096 Jul 16 11:38 podcasts
-rw-r--r-- 1 root root 540 Jul 15 19:49 README.TXT
-rw-r--r-- 1 root root 846961 Jul 15 20:45 subsonic13.index
-rw-r--r-- 1 root root 10805794 Jul 15 19:49 subsonic-booter-jar-with-dependencies.jar
-rw-r--r-- 1 root root 688 Jul 16 11:54 subsonic.log
-rw-r--r-- 1 root root 5 Jul 16 11:48 subsonic.pid
-rw-r--r-- 1 root root 98 Jul 16 11:49 subsonic.properties
-rwxr-xr-x 1 root root 5067 Jul 16 11:40 subsonic.sh
-rw-r--r-- 1 root root 9403 Jul 16 11:49 subsonic_sh.log
-rw-r--r-- 1 root root 18871786 Jul 15 19:49 subsonic.war
drwxr-xr-x 2 root root 4096 Jul 15 20:44 transcode
When I run the subsonic.sh script, I get this:
Started Subsonic [PID 3231, /var/subsonic/subsonic_sh.log]
'ps aux' confirms it is running:
root 3231 22.4 2.6 237256 54236 pts/4 Sl 11:48 0:15 java -Xmx100m -Dsubsonic.home=/var/subsonic -Dsubsonic.host=127.0.0.1 -Dsubsonic.port=4040 -Dsubsonic.httpsPort=4041 -Dsubsonic.contextPath=/ -Dsubsonic.defaultMusicFolder=/var/subsonic/music -Dsubsonic.defaultPodcastFolder=/var/subsonic/podcasts -Dsubsonic.defaultPlaylistFolder=/var/subsonic/playlists -Djava.awt.headless=true -jar subsonic-booter-jar-with-dependencies.jar
But 'lsof -i' shows no ports are actually open for subsonic and when I try to go to the server on port 4040 in a browser, it won't load the page. I can't access the web interface either on the server itself or on my laptop. I have also tried the secure port with no joy.
I have added 'java: ALL' and 'subsonic: ALL' lines to hosts.allow. Not sure whether or not this is necessary.
/var/subsonic_sh.log: http://pastie.org/2237984
/var/subsonic.log:
[2011-07-17 17:12:17,504] INFO DaoHelper - Checking database schema.
[2011-07-17 17:12:19,213] INFO DaoHelper - Done checking database schema.
[2011-07-17 17:12:20,222] INFO SearchService - Automatic index creation scheduled to run every 1 day(s), starting at Mon Jul 18 03:00:00 PDT 2011
[2011-07-17 17:12:20,712] INFO PodcastService - Automatic Podcast update scheduled to run every 24 hour(s), starting at Sun Jul 17 17:17:20 PDT 2011
[2011-07-17 17:12:24,164] INFO NetworkService - Deleted port mapping for port 80
[2011-07-17 17:17:20,706] INFO PodcastService - Starting scheduled Podcast refresh.
[2011-07-17 17:17:20,709] INFO PodcastService - Completed scheduled Podcast refresh.
I don't see anything that looks like an error message in this.

What would help people to be able to suggestion useful solutions? Am I missing information?

Similar Messages

  • Problem getting RESTful web service reference working with header value

    Hi,
    I posted this on Apex Listener forum but since I am not sure problem is with my Application RESTful web service reference or a Listener issue, I am posting here as well:
    I am on Apex 4.2.2 and Listener 2.1 and the listener is on WEblogic.
    I succeeded to get a RESTful web service working in an application with no header to obtain a full set of data. The data set is very large, so I am now just trying to set up a web service to get a set of data based on a student ID.
    I followed the examples shown in the RESTful web service module of SQL Workshop and set up a handler of this type:
    https://ourweblogicserver/apex/bnr/ace/students/course_grades/{stid}
    The test for this handler succeeded both for JSON output and CSV output in the Workshop test environment.
    However, when I try it from a Web Service Reference that I created for my application following what looked like the same approach used on the example video, I get NO data back. If I put a 'stid' directly into a URL of a web browser and do the basic authentication I get the data!!
    This is what I have for the Web service reference:
    https://ourweblogicserver/apex/bnr/ace/students/course_grades/{stid}
    Basic auth set to Yes -- and this is working -- I am able to authenticate
    HTTP method Get
    output format Text
    no response Xpath
    no response namespace
    defaults for new record and parameter delimiter
    NO REST input parameters
    Output set for all the fields in the data set queried (same set of data as in my rest service which does not have any http header)
    REST HTTP Header : Name stid
    I there something I am missing. I am not sure how to troubleshoot this further.
    I also tried exactly following the example shown on the Oracle Video for RESTFul web services at
    http://www.youtube.com/watch?v=gkCvd6P8_OU
    and I can't get the 2nd example to work either-- where the header has the bind variable parameter.
    Pat

    I was able to resolve the problem -- in the latest version of the RESTful web service that I created, I had left out the creation of the Header Parameter bind variable. Once I did that everything works fine!! I was able to test in the application and got the record of an individual student.
    Thanks,
    PM

  • Problems getting ODBC SQL Interface to work for Essbase 11.1.1.3

    Hi folks.
    We're running Essbase 11.1.1.3 on Linux (32 bit) and I want to use the ODBC SQL Interface to load fact data.
    We have run the SQL Interface install .sh script successfully, then restarted the Essbase agent, and have modified the ODBC.ini file to use the Oracle Wire Protocol driver.
    I enter the SQL query in the rule Data Prep Editor in EAS (File | Open SQL) and when I hit "OK/Retrieve" I get the error "Failed to Establish Connection with SQL Database Server."
    The application log file says:
    ODBC Layer Error: [S1000] ==> [[DataDirect][ODBC Oracle Wire Protocol driver]TNS-12154: TNS:could not resolve the connect identifier specified]
    [Wed Oct  6 15:31:26 2010]Local/appx/Plan1/username/Info(1021014)
    ODBC Layer Error: Native Error code [0]
    [Wed Oct  6 15:31:26 2010]Local/appx/Plan1/username/Error(1021001)
    Failed to Establish Connection With SQL Database Server. See log for more information
    [Wed Oct  6 15:31:26 2010]Local/EXECDEV/Plan1/username/Warning(1080014)
    Transaction [ 0x6b0001( 0x4cacce8e.0xe4d2f ) ] aborted due to status [6].
    Any suggestions?
    Edited by: user12087276 on Oct 6, 2010 3:39 PM

    Have you followed the info here :- How to define a relational data source in (odbc.ini) V11 Essbase?
    You don't need to run Inst-SQL.sh
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • [12.1.1] Can't get web interface to work.

    Hello,
    This isn't a fresh install of EBS per se, but it isn't a production EBS system or anything like that. So it was originally installed in December or so, but we haven't really touched it since then. The only thing we use this server for is testing EBS functionality offered by our product. The point in telling you this is that I don't think the web interface ever worked, but since the application seems to be working fine, we never had a reason to fix it until now.
    Today I'm trying to schedule some concurrent programs in EBS. Basically, I'm just looking to find out a bit about the concurrent manager scheduling options and how schedules are stored in the DB. As far as I know the only way to do this (schedule a conc. program to run, say, once a day) is through the web interface. If there's another way, I would love to hear it because I don't particularly care that the web interface isn't working besides the fact that I want to schedule a test concurrent program.
    Note that I can't access the interface on the EBS box itself either.
    Here are my request details:
    GET http://oracleebs.advsyscon.com:8000/OA_HTML/AppsLogin HTTP/1.1
    Accept: text/html, application/xhtml+xml, */*
    Accept-Language: en-US
    User-Agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)
    Accept-Encoding: gzip, deflate
    Host: oracleebs.advsyscon.com:8000
    DNT: 1
    Connection: Keep-Alive
    Cookie: oracle.uix=0^^GMT-5:00^p; __utma=252711254.678514999.1359557956.1359557956.1359557956.1; __kti=1306523819047,http%3A%2F%2Fwww.advsyscon.com%2F,; __ktv=f42d-f27d-cd94-651813032e35c2e; __hstc=252711254.fd397c917966433ca3ad39f9002e7bb0.1359557960441.1359557960441.1359557960441.2; hubspotutk=fd397c917966433ca3ad39f9002e7bb0
    Here is the response I get:
    HTTP/1.1 500 Internal Server Error
    Date: Fri, 09 Aug 2013 14:49:57 GMT
    Server: Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server
    Content-Length: 304
    Connection: close
    Content-Type: text/html
    <HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server Error</H1><PRE>Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.</PRE></BODY></HTML>
    This causes IE to give me a message like "The website cannot display the page. Most likely causes: The website is under maintenance. The website has a programming error."
    "uname -a" on the EBS server:
    Linux OracleEbs.domain.com 2.6.18-238.el5 #1 SMP Sun Dec 19 14:22:44 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
    AKA, this is a RedHat 5 system.
    I tried looking at the error_log in Apache/Apache/logs, but it didn't seem to show anything (and it was from like, December 19).
    Any ideas as to how to troubleshoot or fix this?
    Thank you!

    Hi,
    I'm just looking to find out a bit about the concurrent manager scheduling options and how schedules are stored in the DB. As far as I know the only way to do this (schedule a conc. program to run, say, once a day) is through the web interface. If there's another way, I would love to hear it because I don't particularly care that the web interface isn't working besides the fact that I want to schedule a test concurrent program.
    Yes, you may schedule concurrent request from backend sql/plsql and this has been discussed in forum many a time, please refer:
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=concurrent+request+backend&rankBy=relevance&contentType=all&containerType=&container=&containerName=&userID=&numResults=15
    Also:
    https://forums.oracle.com/thread/2160246
    Hope this helps!
    Best Regards,

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • How can we get the web cam to work with sykpe or any out going calls

    can get the web cam to work with skype

    Hey there,
    What model laptop is this? Are you using the built-in webcam or is this a external web cam? Also what operating system are you using?
    Thanks!
    Sean
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Transmission web interface not working [solved]

    Hi, I found Transmission is very good app, but I can't get working web interface. If I go to "http://127.0.0.1:9091/", it redict me to "http://127.0.0.1:9091/transmission/web" and then nothing shows. I don't know where's the problem.
    Last edited by cinan (2008-10-01 13:23:41)

    The ArchLinux package does not come with the webinterface.
    I downloaded it from http://clutchbt.com/ and installed it in a folder that could be reached by the user that transmissiond runs as. I also had to modify the init script in /etc/rc.d/ so that transmissiond knows where to find the webinterface. I can't remember the option, but try to start transmissiond with --help.

  • Problem getting a wireless connection to work

    Well after some enormous help from ArchForum - i managed to get my new laptop's netcard running.
    Its a IBM X60S with the intel Chipset. but not I'm trying to get connection to my networks around me - But It will not work.
    Normally i have used the KDE WIFImanager to do this - But now its just blinks off on constantly - súddenly its gonbe and then its back - I have ONCE been able to connect to the network - But didn' t get an IP adress.
    So since is gonna to be my work computer - I would really like to get this working as quicly as possible but I do not know how - and cannot see the problem. So here I go. I using IPW3945 and added it to rc.conf Modules= IPW3945 - and daemons IPW3945d (But should this evt. be before or after network
    I didn' t have anything else speciel in the rc.conf and can scan and find my network - but not able to connect to it or anything ...
    lo="lo 127.0.0.1"
    eth0="dhcp"
    eth2="dhcp"
    INTERFACES=(lo eth0 eth2)
    But not what so ever normally I hvae and 128bWEP crypt on the network - BUT do an iwlist eth2 keys shows only 40 & 104bits?? Isn't it strange??
    eth2      2 key sizes : 40, 104bits
              4 keys available :
                    [1]: 9096-4A0E-3965-137A-CACB-DEC6-9D (104 bits)
                    [2]: off
                    [3]: off
                    [4]: off
              Current Transmit Key: [1]
              Security mode:open
    the funny thing in dmesg:
    ipw3945: Detected geography ABG (13 802.11bg channels, 23 802.11a channels)
    ieee80211_crypt: registered algorithm 'WEP'
    ADDRCONF(NETDEV_UP): eth2: link is not ready
    ipw3945: Detected geography ABG (13 802.11bg channels, 23 802.11a channels)
    ipw3945: Detected geography ABG (13 802.11bg channels, 23 802.11a channels)
    ipw3945: Microcode SW error detected.  Restarting.
    ipw3945: Error Reply type 0x0000003A cmd RX_ON_ASSOC (0x11) seq 0x040B ser 0x00000000
    ipw3945: Error sending LEDS_CMD: time out after 500ms.
    ipw3945: Can't stop Rx DMA.
    ADDRCONF(NETDEV_UP): eth2: link is not ready
    ipw3945: Detected geography ABG (13 802.11bg channels, 23 802.11a channels)
    ipw3945: Detected geography ABG (13 802.11bg channels, 23 802.11a channels)
    The funny part - i'm sitting with a IBM R51 rigth next to and all works fine here - and the signal is ultimativ and no problem getting an IPadress or anything.
    EDIT: I have now several times getting connected to the network - but not at any times been able to get an IPaddress - even though both machines have the same setup - and should get the IPaddress from the router. The old IBM gets it - but not the X60s.
    It seems like the asking for the DHCP - don't get on at all - In the routers log I cannot see if the card is asking for an IP - And should mean that it happend all the way.
    Hopefully someone can help me further on with this ??? So than I'm able to cone further with this machine

    Well -
    Is there difference between some off the networks ??
    I mean in my Router thereś 3 options:
    64 - 128 -256 Bits crypto
    But with IPW3945 there only 2 :
    40 - 104 Bits.
    So whats the difference and can you make something difference ? and is it possible to connect in other way to the accesspoints.
    Normally on each and every else IBM i have used IPW2200 and works just normally with kde WIFI manager.
    The only way i can connet to the accesspoint is without any WEP and with an static IP ???
    This cannot be the way!!!!

  • SX10 web interface not working

    Hello,
    SX10 web interface is not working, the sx10 is pingable and registered to CUCM but the web interface gui is not working, my current software is TC7.3.0.8cb420c.
    In the meantime I'm trying to get a newer software.
    Any ideas?

    Is web access enabled for the device in CUCM? If you go into the device in CUCM and search for "Web access" you should find the option under the phone configuration page.

  • Can't get support web site to work

    My screen just "broke" in that it only comes up white (when backlight is on). There is no black so, so no information can be seen/read. It is under warranty (11 months old), but when I try to don the online support for it and I put in the serial number, say yes to the big EULA, and then it asks me to login to .mac. I do so and then get the following error:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    How do I contact someone at apple to fix the WEB SITE so I can get this Nano fixed??????
    IPod Nano    

    Have you attempted using a different internet browser?
    To make sure you get it sent in you could just call AppleCare to see if they can setup the repair for you. Be sure to tell them you are having some issues getting the depot website to work.
    The AppleCare phone number is 1-800-APL-CARE (1-800-275-2273)

  • Cannot get Java Web plugin to work in Safari.

    I have been using the JAva web plugin for a while, and managed to get past the problem with the Oracle Java 7 plugin successfully, but today, the Java web plugin is not working for me at all, and I'm struggling to find out why.
    When I visit java.com and run their detection page, afer about a minute, it comes back with "We are unable to verify if Java is currently installed and enabled in your browser."
    I've followed the advice at http://support.apple.com/kb/HT5559 on how to re-enable the old Java 6 web plugin, I've tried reinstalling the Oracle plugin... but no matter what I do (restarting Safari, enabling disabling Java in Safari preferences, rebooting the Mac), I still cannot get it working in Safari.
    This is a massive problem as website myself and my 20,000 colleagues use to log in to work remotely depends on the Java web plugin.  Right now (as in this morning)... the only option I have is to use a different OS (i.e. Windows). 
    Longer term, I really want to get this working on OS X again - any advice on further troubleshooting?

    Apple has barred Java from running on Macs, leaving companies that rely on Java plug-ins out in the cold.
    Apple blocked Java 7 Update 11 by adding it to the banned list in XProtect.
    This is the second time in two weeks that Apple has blocked Oracle's code from running on Macs. This time Java is blocked through Apple's XProtect anti-malware feature.
    Java has come under fire as the means by which hackers have been able to gain control of computers. In April 2012 more than 600,000 Macs were reported to have been infected with a Flashback Trojan horse that was being installed on people's computers with the help of Java exploits. Then in August Macs were again at risk due to a flaw in Java, this time around, there was good news for Mac users: Thanks to changes Apple has made, most of us were safe from the threat.
    Unwilling to leave its customers open to potential threats Apple has apparently decided it's safer to block Java entirely.
    Macs running OS X Snow Leopard and beyond are affected.

  • Problems getting rt73 wireless dongles to work

    Wireless USB: Belkin F5D7050 Ver. 3000 (rt73 chipset)
    Wireless USB: D-Link DWL-G122 Rev. C1 (rt73 chipset)
    Router: Linksys WRT54G (B+G Channel 8 DHCP Enabled WPA TKIP)
    Kernel: 2.6.20-ARCH
    CPU: Athlon XP 2200+ 1.8ghz
    At the moment I have the Belkin device working fine under the latest ndiswrapper for a certain amount of time until websites will stop resolving after a while with the only way to fix it being to reboot or go downstairs and reset the router. I don't care too much which dongle I get working although I would prefer the Belkin since I already have that working in Windows. Obviously I'm only plugging them in one at a time. I've tried multiple combinations in my resolv.conf and followed numerous guides to make sure my network profiles and wpa_supplicant are set up right although I can post them for you to check. I couldn't find a working .sys file for the D-Link device under ndiswrapper so basically what I am trying to say is ndiswrapper is out of the question and need to get native drivers working.  They are both editions which have an rt73 chipset even though some devices with the same model use 2500. I looked it up and the Ubuntu wiki incidentally uses both these devices as an example so I know for sure that they should work with RT73_Linux_STA_Drv1.0.3.6 tar.
    I have followed the steps in the Arch Wiki guide carefully. http://wiki.archlinux.org/index.php/RT73_Wireless
    However when I cd to the module directory after making the required modifications and do a make as root I get errors which is disappointing as by all accounts I have read so far it should work. I get errors compiling the RT73_CVS_Daily package as well but I think that was something to do with incompatibility with SMP and the need for a kernel recompile. The Arch Wiki method seems my best bet still. Here is the error I am getting on compilation anyway:
    make -C /lib/modules/2.6.20-ARCH/build SUBDIRS=/home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module modules
    make[1]: Entering directory `/usr/src/linux-2.6.20-ARCH'
      CC [M]  /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.o
    In file included from ./include/asm/system.h:4,
                     from ./include/asm/processor.h:18,
                     from ./include/asm/thread_info.h:16,
                     from ./include/linux/thread_info.h:21,
                     from ./include/linux/preempt.h:9,
                     from ./include/linux/spinlock.h:49,
                     from ./include/linux/module.h:9,
                     from /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rt_config.h:63,
                     from /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c:40:
    ./include/linux/kernel.h:10:20: error: stdarg.h: No such file or directory
    In file included from ./include/asm/system.h:4,
                     from ./include/asm/processor.h:18,
                     from ./include/asm/thread_info.h:16,
                     from ./include/linux/thread_info.h:21,
                     from ./include/linux/preempt.h:9,
                     from ./include/linux/spinlock.h:49,
                     from ./include/linux/module.h:9,
                     from /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rt_config.h:63,
                     from /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c:40:
    ./include/linux/kernel.h:117: error: expected declaration specifiers or '...' before 'va_list'
    ./include/linux/kernel.h:121: error: expected declaration specifiers or '...' before 'va_list'
    ./include/linux/kernel.h:125: error: expected declaration specifiers or '...' before 'va_list'
    ./include/linux/kernel.h:132: error: expected declaration specifiers or '...' before 'va_list'
    ./include/linux/kernel.h:147: error: expected declaration specifiers or '...' before 'va_list'
    /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c: In function 'usb_rtusb_probe':
    /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c:2089: warning: unused variable 'device'
    /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c: At top level:
    /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.c:2218: fatal error: opening dependency file /home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/.rtmp_main.o.d: Permission denied
    compilation terminated.
    make[2]: *** [/home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module/rtmp_main.o] Error 1
    make[1]: *** [_module_/home/joe/unsorted/drivers/RT73_Linux_STA_Drv1.0.3.6/Module] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.20-ARCH'
    make: *** [all] Error 2
    What could this mean? Looking over it I've just spotted a permission denied in there even though I'm running it as root so now I'm wondering if there is some sort of resource conflict because ndiswrapper is still loaded in memory. I really don't understand why this wouldn't work. This is way above my skills so please help.
    Last edited by joewhite (2007-03-04 21:13:43)

    Hi,
    I also have a rt73 chip - edimax EW-7318UG.
    I used this package from aur :
    http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    and now I have the module. Maybe it will work for you as well.
    My problem seems to be setting up the interface. I can set it up to run manually - using ifconfig and iwconfig but it seems I can't load the network on startup. I keep getting this response form the startup network script :
    Error for wireless request "Set Mode" (8B06) :
    SET failed on device rausb0 ; Network is down.
    I have to run manually each time :
    [root@fort etc]# ifconfig rausb0 up
    [root@fort etc]# iwconfig rausb0 essid mikahome
    [root@fort etc]# dhcpcd rausb0
    Anyone knows if this can be automated?

  • Problems getting vCAC 6.2 to work correctly. Security related.

    Hi Everyone,
    I am setting up a quick n dirty VCAC 6.2 test lab and am hitting a problem that has been annoying me for a good few days and I hope someone can help. To give a bit of background I did the following to set up the infrastructure (above and beyond having a working vCenter 6 installation)
    Installed a SQL 2014 standalone box and IAAS box using Window 2012 R2
    Installed the authentication appliance.
    Installed the VRA appliance from OVF
    Installed the Orchestrator appliance
    All were installed from latest available on VMwares website. I then installed the pre req script to configure the IAAS pre reqs. Then installation went through ok (Although it took  a while ) The problem is when I come to login I keep getting errors about connection broken/resets.
    Looking in the IAAS event viewer I get the following error:
    An TLS 1.2 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    I understand that the issue is more or less related to the fact that the encryption type is not supported. So my question is.. What is the easy and straight forward to fix this ? Crypto functions are not my forte!
    Regards
    Stuart

    Hi,
    I also have a rt73 chip - edimax EW-7318UG.
    I used this package from aur :
    http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    and now I have the module. Maybe it will work for you as well.
    My problem seems to be setting up the interface. I can set it up to run manually - using ifconfig and iwconfig but it seems I can't load the network on startup. I keep getting this response form the startup network script :
    Error for wireless request "Set Mode" (8B06) :
    SET failed on device rausb0 ; Network is down.
    I have to run manually each time :
    [root@fort etc]# ifconfig rausb0 up
    [root@fort etc]# iwconfig rausb0 essid mikahome
    [root@fort etc]# dhcpcd rausb0
    Anyone knows if this can be automated?

  • I am havign huge problems getting itunes 11.1.4 working on my windows 7 laptop. I have run itunes for some years, and regularly updated it when prompted. I have followed many of the suggestions e.g. uninstalling reinstalling, etc

    I have spent hours trying to get itunes working on my laptop.
    The only functinoality I crave is to be able to get pictures off my iphone 5 (which has the latest ios installed.), as almost all other functinoality of itunes I find painful beyond belief. It has the worst ergonomics I think of any software I have ever used, which is bizarely at odds with the mobile decvices, which by and large work quite nicely (indeed, why I bought them!)
    My laptop runs windows 7. It has all the latest microsoft updates installed (I am religious about this: it always has had.)
    I have run itunes on this machine for some years, regularly updating when I am prompted to.
    A few days back i was prompted to update to 11.1.4
    It failed to install badly. whatever I try at some point during the install process the installer just hangs, or never terminates.
    All communication between computer and iphone functionality has been lost.
    Nothing eles on my machine is behaving oddly. slowly etc. it is only apple stuff that isn't working.
    I googled and found a lot of recurring themes on apple forums:
    So far I have tried:
    uninstalling / reinstalling. (hangs during installation).
    Restarting the machine between uninstall and reinstall.
    Searching and removing any directories/ contents related to apple, after the uninstall, prior to machine reboot.
    I have even used iobit uninstaller, as removing apple software as you know is almost impossible (ever tried disabbling the quicktime updater that runs at startup? it's like a virus !!)
    I have removed all apple software incl quicktime.
    I have tried the microsoft software installer fixit link often posted to.
    i have tried unpacking the apple installation file, using the latest version of winrar, to try installing one at a time.
    I have found the installation is very very very slow (it looks as though it hangs, but i leave it running in the background, after 15-20 minutes, the status starts advancing for example). so far I have managed to install the first few components up to applesoftware  update,msi, and they seem to need to be run multiple times.
    (this last one took about 40 minutes).
    I have been very careful to install / uninstall the software components int eh "prescribed" order.
    I have tried each step multiple times, rebooting the machine numerous times, cleaning temp folders (with ccleaner) etc.
    I ave tried installing when my virus checker AVG is disabled.
    (i have virus checked the machine with AVG and malware bytes, I have the latest microsft security essential updates installed.)
    I ahve tried stopping apple services (as suggested in one of the apple forum posts).
    As you can gather I'm seriously tearing my hair out.
    I presume there is some kind of generic bug in this installer: as a friend had exactly the same problem on sunday night, with a different machine, running windows 7, and a couple of her colleagues at work has had the self same problem over the weekend, though none of them seem to have gone to the lengths I have yet !
    I tried doing a system restore, but my machine seems to have lunched all previous system restore points, so I can't . Arrrrrgggg !
    Is an older version of itunes available so i can install that instead ?
    What should I do next ?
    Jonathan

    I have spent hours trying to get itunes working on my laptop.
    The only functinoality I crave is to be able to get pictures off my iphone 5 (which has the latest ios installed.), as almost all other functinoality of itunes I find painful beyond belief. It has the worst ergonomics I think of any software I have ever used, which is bizarely at odds with the mobile decvices, which by and large work quite nicely (indeed, why I bought them!)
    My laptop runs windows 7. It has all the latest microsoft updates installed (I am religious about this: it always has had.)
    I have run itunes on this machine for some years, regularly updating when I am prompted to.
    A few days back i was prompted to update to 11.1.4
    It failed to install badly. whatever I try at some point during the install process the installer just hangs, or never terminates.
    All communication between computer and iphone functionality has been lost.
    Nothing eles on my machine is behaving oddly. slowly etc. it is only apple stuff that isn't working.
    I googled and found a lot of recurring themes on apple forums:
    So far I have tried:
    uninstalling / reinstalling. (hangs during installation).
    Restarting the machine between uninstall and reinstall.
    Searching and removing any directories/ contents related to apple, after the uninstall, prior to machine reboot.
    I have even used iobit uninstaller, as removing apple software as you know is almost impossible (ever tried disabbling the quicktime updater that runs at startup? it's like a virus !!)
    I have removed all apple software incl quicktime.
    I have tried the microsoft software installer fixit link often posted to.
    i have tried unpacking the apple installation file, using the latest version of winrar, to try installing one at a time.
    I have found the installation is very very very slow (it looks as though it hangs, but i leave it running in the background, after 15-20 minutes, the status starts advancing for example). so far I have managed to install the first few components up to applesoftware  update,msi, and they seem to need to be run multiple times.
    (this last one took about 40 minutes).
    I have been very careful to install / uninstall the software components int eh "prescribed" order.
    I have tried each step multiple times, rebooting the machine numerous times, cleaning temp folders (with ccleaner) etc.
    I ave tried installing when my virus checker AVG is disabled.
    (i have virus checked the machine with AVG and malware bytes, I have the latest microsft security essential updates installed.)
    I ahve tried stopping apple services (as suggested in one of the apple forum posts).
    As you can gather I'm seriously tearing my hair out.
    I presume there is some kind of generic bug in this installer: as a friend had exactly the same problem on sunday night, with a different machine, running windows 7, and a couple of her colleagues at work has had the self same problem over the weekend, though none of them seem to have gone to the lengths I have yet !
    I tried doing a system restore, but my machine seems to have lunched all previous system restore points, so I can't . Arrrrrgggg !
    Is an older version of itunes available so i can install that instead ?
    What should I do next ?
    Jonathan

  • Problems getting Raw 6.1 to work on PSE8 on Mac

    Terrible problems and no idea wot to do next.
    Have downloaded Raw update 6.1 that has my cameras update (EOS 550D).  I've put the file as instructed into the Fileformats folder.  Can't open .CR2 files in PSE 8.  Despite following the instructions they don't load.
    Anyone have any ideas.  Getting well p****d off about it.  Have been trying to solve this for weeks and nothing I do works.

    Barbara
    Thx for your reply.  I'm sure I did remove the old one and replaced it as per their instructions. 
    The below is a copy from the plug in folder from System Info on PSE8
    "Camera Raw 6.1 (250), Copyright © 2010 Adobe Systems Incorporated - from the file “Camera Raw.plugin”"
    Despite that .CR2 files are still showing up as not recognised. 
    I will have to process raw files in DPP and then bring them into PSE 8 as JPEGs.  This is b****y annoying as it just adds to the workloads.  Not happy. The adobe support is rubbish.  I'm following their instructions and it just does not work.

Maybe you are looking for

  • A text box should appear based on combo box selection in a jsp page.

    Hi, I have this problem. I ahve an option in the combo box"other". If other is selected then a text box shud appear . Can any one post a quick answer for me. may be a sample of how to do it will help me a lot. Thank You, Sagar.

  • Are we able to Flip Text in Fireworks?

    Dear friends, Need a little help. Are we able to Flip Text in fireworks, or shall we use different platform? Like for example Have a Small Image in Background. Then have put Text on top of it .. like "WELCOME" and then after 1-2 seconds changes to "E

  • Updated iTunes yesterday and now cannot sync iPhone 5

    updated iTunes yesterday and now cannot sync iPhone 5

  • Creating classic reports

    Hi, I found that when creating classic report through the create application wizard (add new report page and choose report type as classic), the report is slightly different from the ones created through the normal create page wizard. The difference

  • Labview 2010 SP1 - How to install just the labVIEW and remote panel

    Hi all I am currently using a licensed version of LabVIEW 2010 SP1. It came up with 6 to 7 DVD's each of them containing around 5 GB of data. Installing all these stuffs eats up around 30 GB of ma C drive. My project just deals with 2 EPOS controller