First time installation question...

when doing the installation of FC Studio can i choose to install the media type files (soundtrack pro content, livetype media, motion content) on a secondary internal HD?
i use a 74gb Raptor as my boot drive and really don't want to install 30gb on it for FC Studio. i will if i have to but.....

i guess i jumped the gun, all i had to read was the bottom of the "before you install" txt file....
i can install the media on a seperate drive

Similar Messages

  • URGENT!!! ORA-01041 during first time installation on Win2000

    During first time installation on Windows 2000 (Pentium IV 1.8Ghz,256Mb RAM)the error ORA-01041 is raised.
    Any ideas????

    ORA-01041 internal error. hostdef extension doesn't exist
    Cause: Pointer to HSTDEF extension in HSTDEF is null.
    Action: Contact Oracle Support Services.
    Joel Pèrez

  • Setting up a cluster for the first time: newbie questions

    Any help appreciated with this situation:
              I'm trying to set up a cluster for the first time and running into
              issues (no big surprise). I'll outline my situation and pose questions
              as they arise. If/when I get things to work I'll post a step-by-step
              summary of what it took to get a simple cluster going.
              Here's what I have:
              machines:
              1 Windows 2000 machines with WL 6.1
              2 RedHat Linux machines with WL 6.1
              All machines are on the same Home LAN, can see each other, etc.
              IP addresses are:
              Windows box: 192.168.1.100
              Linux box 1: 192.168.1.102
              Linux box 2: 192.168.1.103
              servers:
              I've set up the Windows machine as my admin server, and set up
              a managed server on each Linux machine. I created a cluster that consists
              of the 2 Linux machines and deployed the web app and EJB to the cluster.
              The Windows machine is acting as a Proxy using ClusterServlet.
              The web application has been set as the Default Web Application on the
              two Linux machines. All 3 machines are listening on ports 80/443. I also
              set up session memory replication through the console.
              Application:
              I have an application that I package as an EAR file. I'm using it as a
              "reference" application designed to mimic a real world app as much as possible.
              The EAR file contains a web application that uses Struts. It also consists
              of a single Stateless Session Bean. The WAR file and EJB Jar are all
              packaged up into the EAR file. I've been able to run this application just
              fine on a single managed server on all 3 machines.
              The web application works fine, and it can invoke the EJB. I can also
              invoke the EJB from Java stand-alone clients. Struts works great. All is
              well with the world. Now I'm trying to "cluster-ize" this app using
              the environment described above and encountering issues.
              I've read the docs and followed the instructions according to the
              "Weblogic Bible" book. I can bring up all 3 servers and the Linux
              managed servers connect to the cluster just fine. I can also
              see the Struts messages in their logs which normally happens and tells me
              the webapp is initialized properly. The console tells me that the managed
              servers are running. I get no error messages starting up any of the serves.
              Here are the problems I am encountering.
              When I try to access the Web Application (through a browser on the
              Windows machine using http://localhost) I get the following error message:
              <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
              x,admin) found no context for "/". This request does not match the context path
              for any installed web applications and there is no default web application confi
              gured.>
              Also, when I try to invoke the EJB through a stand-alone Java client,
              I get a JNDI lookup error on the EJB's home interface.
              Questions:
              Question1: I noticed when setting up the machines that console lets you
              define a "Machine" or a "Unix Machine". What's the difference? Should I
              define the Linux machines as Unix machines or machines, and what are the
              consequences of either choice?
              Question2:
              I'm not totally clear on how my web.xml should look to set up Struts,
              the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
              Here is what I had before I tried to cluster and which works fine:
              <filter>
              <filter-name>MainFilter</filter-name>
              <filter-class>com.refapp.servlets.MainFilter</filter-class>
              <init-param>
              <param-name>myAttribute</param-name>
              <param-value>Foo</param-value>
              </init-param>
              </filter>
              <filter-mapping>
              <filter-name>MainFilter</filter-name>
              <url-pattern>/*</url-pattern>
              </filter-mapping
              <!-- Struts ActionServlet Configuration -->
              <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              <init-param>
              <param-name>application</param-name>
              <param-value>refappstruts</param-value>
              </init-param>
              <init-param>
              <param-name>config</param-name>
              <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <init-param>
              <param-name>debug</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>mapping</param-name>
              <param-value>org.apache.struts.action.RequestActionMapping</param-value>
              </init-param>
              <load-on-startup>2</load-on-startup>
              </servlet>
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <welcome-file-list>
              <welcome-file>index.do</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>index.html</welcome-file>
              </welcome-file-list>
              (I have set up a "dummy" 0-length file called index.do that triggers
              Struts to go into its ActionServlet when first accessing the web site).
              Here is how I added ClusterServlet to web.xml:
              servlet>
              <servlet-name>ClusterServlet</servlet-name>
              <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
              <load-on-startup>0</load-on-startup>
              <init-param>
              <param-name>defaultServers</param-name>
              <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
              </init-param>
              <init-param>
              <param-name>DebugConfigInfo</param-name>
              <param-value>ON</param-value>
              </init-param>
              </servlet>
              <servlet-mapping>
              <servlet-name>InitServlet</servlet-name>
              <url-pattern>/servlet/InitServlet</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>/</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.html</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.jsp</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              Clearly there is a problem with the Default Web application not being
              seen/mapped properly. Any chances my URL mappings for the filter servlet,
              Struts, and ClusterServlet are stepping on each other?
              With respect to the EJB, here is what my weblogic-ejb-jar looks like:
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>Hello</ejb-name>
              <stateless-session-descriptor>
              <pool>
                   <max-beans-in-free-pool>100</max-beans-in-free-pool>
              </pool>
              <stateless-clustering>
              <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
              <stateless-bean-load-algorithm>
              round-robin
              </stateless-bean-load-algorithm>
              <stateless-bean-methods-are-idempotent>
              true
              </stateless-bean-methods-are-idempotent>
              </stateless-clustering>
              </stateless-session-descriptor>
              <jndi-name>Hello.Home</jndi-name>
              </weblogic-enterprise-bean>
              I run this through ejbc and package everything up into the EAR file.
              However, I get a JNDI lookup failure when I try to access the Bean from
              a standalone Java client running on the Windows machine.
              Here is the jndi.properties file that I am using:
              java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
              java.naming.provider.url=t3://localhost:80
              Any ideas what I'm doing wrong here? I can post config.xml also if needed.
              Thanks in advance!
              

    Let me try to answer :)....
              A1> No need to name diff machines by default weblogic
              considers the servers are physically located in diff boxes.
              The names are used to differtiate the mang servers which are in
              multihomed
              Some things to chk
              1> Did u targeted the ear file Target as cluster.
              2> Can u see on the Admin console that both the man servers
              are participated in the cluster( u can see by clicking the monitoring
              tab on the Cluster node).
              3>Is the URL:PORT for the default web app correct?
              the reason: is I dont see the port# on the link u mentioned
              4> probably ur ejb might not been deployed on the target thats the
              reason u cant access thru java client. If u correct the targets that
              will probably fix it.
              Hope this helps
              Please post the result
              Thanks
              Sudhir
              [email protected] (Chris) wrote in message news:<[email protected]>...
              > Any help appreciated with this situation:
              > I'm trying to set up a cluster for the first time and running into
              > issues (no big surprise). I'll outline my situation and pose questions
              > as they arise. If/when I get things to work I'll post a step-by-step
              > summary of what it took to get a simple cluster going.
              > Here's what I have:
              >
              > machines:
              > 1 Windows 2000 machines with WL 6.1
              > 2 RedHat Linux machines with WL 6.1
              > All machines are on the same Home LAN, can see each other, etc.
              > IP addresses are:
              > Windows box: 192.168.1.100
              > Linux box 1: 192.168.1.102
              > Linux box 2: 192.168.1.103
              >
              > servers:
              > I've set up the Windows machine as my admin server, and set up
              > a managed server on each Linux machine. I created a cluster that consists
              > of the 2 Linux machines and deployed the web app and EJB to the cluster.
              > The Windows machine is acting as a Proxy using ClusterServlet.
              > The web application has been set as the Default Web Application on the
              > two Linux machines. All 3 machines are listening on ports 80/443. I also
              > set up session memory replication through the console.
              >
              > Application:
              > I have an application that I package as an EAR file. I'm using it as a
              > "reference" application designed to mimic a real world app as much as possible.
              > The EAR file contains a web application that uses Struts. It also consists
              > of a single Stateless Session Bean. The WAR file and EJB Jar are all
              > packaged up into the EAR file. I've been able to run this application just
              > fine on a single managed server on all 3 machines.
              > The web application works fine, and it can invoke the EJB. I can also
              > invoke the EJB from Java stand-alone clients. Struts works great. All is
              > well with the world. Now I'm trying to "cluster-ize" this app using
              > the environment described above and encountering issues.
              >
              > I've read the docs and followed the instructions according to the
              > "Weblogic Bible" book. I can bring up all 3 servers and the Linux
              > managed servers connect to the cluster just fine. I can also
              > see the Struts messages in their logs which normally happens and tells me
              > the webapp is initialized properly. The console tells me that the managed
              > servers are running. I get no error messages starting up any of the serves.
              >
              > Here are the problems I am encountering.
              >
              > When I try to access the Web Application (through a browser on the
              > Windows machine using http://localhost) I get the following error message:
              >
              > <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
              > x,admin) found no context for "/". This request does not match the context path
              > for any installed web applications and there is no default web application confi
              > gured.>
              >
              > Also, when I try to invoke the EJB through a stand-alone Java client,
              > I get a JNDI lookup error on the EJB's home interface.
              >
              > Questions:
              > Question1: I noticed when setting up the machines that console lets you
              > define a "Machine" or a "Unix Machine". What's the difference? Should I
              > define the Linux machines as Unix machines or machines, and what are the
              > consequences of either choice?
              >
              > Question2:
              > I'm not totally clear on how my web.xml should look to set up Struts,
              > the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
              > Here is what I had before I tried to cluster and which works fine:
              >
              > <filter>
              > <filter-name>MainFilter</filter-name>
              > <filter-class>com.refapp.servlets.MainFilter</filter-class>
              > <init-param>
              > <param-name>myAttribute</param-name>
              > <param-value>Foo</param-value>
              > </init-param>
              > </filter>
              >
              > <filter-mapping>
              > <filter-name>MainFilter</filter-name>
              > <url-pattern>/*</url-pattern>
              > </filter-mapping
              >
              >
              > <!-- Struts ActionServlet Configuration -->
              > <servlet>
              > <servlet-name>action</servlet-name>
              > <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              >
              > <init-param>
              > <param-name>application</param-name>
              > <param-value>refappstruts</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>config</param-name>
              > <param-value>/WEB-INF/struts-config.xml</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>debug</param-name>
              > <param-value>2</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>mapping</param-name>
              > <param-value>org.apache.struts.action.RequestActionMapping</param-value>
              > </init-param>
              > <load-on-startup>2</load-on-startup>
              > </servlet>
              >
              > <servlet-mapping>
              > <servlet-name>action</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              > <welcome-file-list>
              > <welcome-file>index.do</welcome-file>
              > <welcome-file>index.jsp</welcome-file>
              > <welcome-file>index.html</welcome-file>
              > </welcome-file-list>
              >
              > (I have set up a "dummy" 0-length file called index.do that triggers
              > Struts to go into its ActionServlet when first accessing the web site).
              >
              > Here is how I added ClusterServlet to web.xml:
              >
              > servlet>
              > <servlet-name>ClusterServlet</servlet-name>
              > <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
              > <load-on-startup>0</load-on-startup>
              > <init-param>
              > <param-name>defaultServers</param-name>
              > <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
              > </init-param>
              > <init-param>
              > <param-name>DebugConfigInfo</param-name>
              > <param-value>ON</param-value>
              > </init-param>
              > </servlet>
              >
              > <servlet-mapping>
              > <servlet-name>InitServlet</servlet-name>
              > <url-pattern>/servlet/InitServlet</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>action</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>/</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.html</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.jsp</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              >
              > Clearly there is a problem with the Default Web application not being
              > seen/mapped properly. Any chances my URL mappings for the filter servlet,
              > Struts, and ClusterServlet are stepping on each other?
              >
              > With respect to the EJB, here is what my weblogic-ejb-jar looks like:
              >
              > <weblogic-ejb-jar>
              > <weblogic-enterprise-bean>
              > <ejb-name>Hello</ejb-name>
              > <stateless-session-descriptor>
              > <pool>
              >      <max-beans-in-free-pool>100</max-beans-in-free-pool>
              > </pool>
              > <stateless-clustering>
              > <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
              > <stateless-bean-load-algorithm>
              > round-robin
              > </stateless-bean-load-algorithm>
              > <stateless-bean-methods-are-idempotent>
              > true
              > </stateless-bean-methods-are-idempotent>
              > </stateless-clustering>
              > </stateless-session-descriptor>
              > <jndi-name>Hello.Home</jndi-name>
              > </weblogic-enterprise-bean>
              >
              > I run this through ejbc and package everything up into the EAR file.
              > However, I get a JNDI lookup failure when I try to access the Bean from
              > a standalone Java client running on the Windows machine.
              > Here is the jndi.properties file that I am using:
              >
              > java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
              > java.naming.provider.url=t3://localhost:80
              >
              > Any ideas what I'm doing wrong here? I can post config.xml also if needed.
              >
              > Thanks in advance!
              

  • First time user questions (managing library, file size defaults, cropping,)

    I'm on my first Mac, which I am enjoying and am also using iPhoto '08 for the first time which is a great tool. It has really increased my efficiency in editing a lot of photos at one time. However, the ease of use makes a couple custom things I want to do difficult. I'd appreciate any feedback;
    1) I often want to get at my files for upload or transfer to another machine. When I access Photos with my Finder I can only see "Iphoto Library" (or something like that) which does not show the individual files. Very annoying. I have found that i can browse to one of the menus and select "Open Library" and then I can see all the files.
    How can I make it default to this expanded setting? When I am uploading pictures via a web application, for instance, the file open tool does not usually give me the option to Open the library. By Default, I would like the library to always be expanded so I do not have to run iPhoto or select "open" to view the files.
    Basically, I just want easy manual control of my files in Finder and other applications.
    2) Where do I set the jpg size of an edited file? My camera will output 10MB files and after a simple straighten or crop, iPhoto will save them to 1MB files.
    Ignoring the debate on file size, is there a way to control the jpg compression so I can stay as close to what came out of the camera as possible?
    3) I crop all my photos to 5x7. If I do that once, it comes up the next time. However, once I straighten the photo and then choose crop, it always comes up with some other odd size by default (the largest rectangle that can be fit in the new photos size).
    While I know this may be useful for some people, it is time consuming when going through hundreds of photos to constantly have to choose "5x7" from the drop down list. Is there a way to make this the default?
    I'm sure I'll have some more questions, but thus far, I've been real happy with iPhoto.
    4) The next task will be sharing this Mac Pictures folder on my Wireless network so my XP PC can access it. I'm open to any tips on that one as well....
    Thanks!

    toddjb
    Welcome to the Apple Discussions.
    There are three ways (at least) to get files from the iPhoto Window.
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services.
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    The format of the iPhoto library is this way because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. If you're willing to risk database corruption, you can restore the older functionality simply by right clicking on the iPhoto Library and choosing 'Show Package Contents'. Then simply make an alias to the folders you require and put that alias on the desktop or where ever you want it. Be aware though, that this is a hack and not supported by Apple.
    Basically, I just want easy manual control of my files in Finder and other applications.
    What's above is what's on offer. Remember, iPhoto is NOT a file organiser, it's a photo organiser. If you want to organise files, then use a file organiser.
    Where do I set the jpg size of an edited file
    You don't. Though losing 9MB off a 10MB files is excessive. Where are you getting these file sizes.
    I crop all my photos to 5x7. If I do that once, it comes up the next time. However, once I straighten the photo and then choose crop, it always comes up with some other odd size by default (the largest rectangle that can be fit in the new photos size).
    Straightening also involves cropping. Best to straighten first, then crop.
    The next task will be sharing this Mac Pictures folder on my Wireless network so my XP PC can access it.
    If you use the hack detailed above be very careful, it's easy to corrupt the iPhoto Library, and making changes to the iPhoto Package File via the Finder or another app is the most popular way to go about it.
    Regards
    TD

  • First time build questions

    I am quite a way through my first build - quite time consuming but a good learning curve. I have a few questions which I hope you could help me with.
    MSI MS-7030 nForce 3 K8N Neo Platinum
    AMD 64bit 3000
    Corsair (VS1GBKIT400) 1024MB (2 x 512MB Matched Pair), DDR400 / PC3200 non-ECC, Unbuffered, CL2.5
    Sapphire 9600XT 256mb
    LG 1710 B 17"LCD Monitor (DVI)
    Aopen cd-rw 32 x 12 x 48
    DVD Player Lite-on 16 x 48
    Mitsumi 7-in-1 Floppy Drive / Media Drive
    Windows 2000 Pro or Windows 2000 Server
    Microsoft PS2 Internet Keyboard
    Microsoft Optical mouse
    Tablet Wacom Graphire 2
    Wireless ADSL Router (wired to desktop) D-Link DSL 604
    Bios - The basic building tips mentions going into bios before loading Windows. Have not changed much in my bios except boot order. My Seagate Sata 160gb was detected fine as was everything else except a cd drive where the cable had pulled out on the MOB.
    Should I change other settings in the bios before installing Windows or later. And if so which are the key settings to change and how do I work out what to change them to? (I am a bit green on bios) I looked at the link breaking through the bios barrier but other than reading every single item... Not sure where to start.
    I also flashed the bios to the latest version - should I have done this? Or waited till later?
    Windows I am using quite old versions of Windows 2000 Professional and Windows 2000 Server. In both cases including before flashing the bios the setup of devices phase seems to freeze, the blue bar does not move. If I reboot setup quickly moves to where it left off, moves a bit further then freezes again. If I repeat reboot about 4 or 5 times I eventually get Windows working OK.
    But the last time I did this I installed Windows 2000 Server over the top of Windows 2000 Pro. Not sure this was a good idea as the MSI drivers won't load. The install program opens and does not seem to do anything.
    I am inclined to format the os area of the drive and install Windows again. One of my colleagues suggested that using Windows XP Professional might resolve the problem of Windows 2000 appearing to hang when installing.
    Reference material I have read a couple of Build Your Own books before starting this build but found they were a bit light on detail and out of date. There is a lot of helpful information on the Interet but I think I could do with something which would improve my knowledge. Would the latest edition of Upgrading and Repairing PCs  by Scott Mueller be a good choice? How well does it cover bios for example which I understand only superficially or would I be better (poorer financially) buying individual books on different subjects e.g. "Breaking through the Bios barrier" by Adrian Wong.
    I don't plan to build PC's on a regular basis but would like to understand more than I do at present.

    Thanks for all the replies.
    I will take the advice on bios and leave well alone at this stage.
    Will reformat tonight and install Windows XP and see how it goes.
    Couple of immediate questions. On my current PC I have 4 different boots but only really use one. My current PC has Windows 2000 Pro with 2gb, 20 gb for apps and the balance of the 80 gb drive for data. Also an 8gb drive which I hardly ever use.
    Current plan on my new PC is to initially use the 160gb SATA as 20 gb combined partition for OS and apps and the balance for data. Or are there really benefits for keeping the operating system separate from apps? Using Partititon Magic fast to set up although currently it is only seeing 132 GB although the bios is correctly reporting 160GB. Presumably this is something I need to adjust in Windows once fully installed.
    My 80gb drive has IBM ontrack overlay software. I managed to transfer everything to the new drive using PcAnywhere via the router. Which was great as the first time I have got two machines to talk to each other via the ADSL Router. (This was a great relief as I could not PcAnywhere to work via a serial cable!)
    My inital intention was to use the 80GB as the OS / Apps drive but based on the other problems I have had, now decided to build and use the system based on a single 160 SATA drive first then when I am sure it is stable go to plan B with using the 80GB IDE drive as the Windows and Apps drive. I then need to reformat the 80GB drive as it currently has IBM Ontrack overlay software because my previous PC bios could not see 80GB otherwise. Considering at that stage installing Windows 64 bit beta on the 160GB drive.
    I don't think I need Raid at this stage although I have a little bit of experience as my SQL Server has two Raid drives (0?) plus a hot swop drive stored in our fire proof safe.
    I use AVG free antivirus and have the latest version ready to install.
    Regarding firewall - confused as to what is required. Was under the impression that my ADSL Router has a hardware firewall. Also the motherboard has a firewall as well doesn't it? Do I also need a software firewall? There is a free one recommended on the AVG (Grisoft site)
    By the way. I was a bit apprehensive when doing the build and took hours over it being very careful to read and follow the steps in motherboard, CPU and case (Antec Sonata) manuals step by step - a very slow process. All the cables in the case looked very intimidating at first.
    The whole thing is extremely straightforward and towards the end everything became very logical. All the parts I used seem extremely well designed and easy to use. The only part where I had doubts was pushing down the plastic lever on the AMD retail heat sink. I wondered whether I had understood it correctly and whether it was going to snap.

  • Error running Java after first time installation on shared server

    Hello, I have just installed jre1.6.0_21 for the first time in my home folder on a shared Linux server. I am logged onto the server, so I am acting as the localhost. I get the following error when running java -version:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    I am a newbie to Java. Would appreciate any advice.

    You are using OA?
    Post in this forum: OA Framework
    Timo

  • Firefox unable to connect after brand new first time installation, IE can load fine, I have followed all directions for firefox can not connect but other programs can, and it did not solve the problem

    I have downloaded Firefox for the First time, Firefox can not connect to any website (Unable to COnnect), but IE can. I have followed all the directions on the page for firefox can not load when other programs can (Firefox connection settings,IPv6,DNS Prefetching, firewall settings)
    == This happened ==
    Every time Firefox opened
    == I downloaded it for the 1st time ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MSN Optimized;US)

    http://support.mozilla.com/en-US/kb/Firewalls
    http://support.mozilla.com/en-US/kb/Cannot+connect+after+upgrading+Firefox
    http://support.mozilla.com/en-US/kb/Error+loading+web+sites
    http://kb.mozillazine.org/Error_loading_websites

  • No connection! First time Installation of HomeHUB.

    On the 8/11/2010 I had BT broadband installed for the first time, it is also the first time ever that there has been a phoneline inside my flat, i waited till midnight for the activation and its still not working the broadband light on my Homehub is a pale blue colour were as the power and wireless light are fully blue. Im not sure what the problem is but i think that the broadband has still not been activated yet does anyboby know whats going on and what to do about it?

    Hi Sideswipe and welcome
    Mmm, a few things:
    I'll assume it's a BT Home Hub V2.0 (black)
    If the light is blue then it's connected (not sure why it's pale though)
    It's when the light is off (No broadband signal), steady orange (Wired connection to broadband is OK, connecting to Internet service) or flashing orange (Connecting to broadband) that there could be a problem.
    Also found this on a BT help section
    Broadband light is blue but I can't connect to the Internet
    Your Hub is connected to broadband, but there may be a problem with your computer and/or its connection to the Hub.
    Restart your Hub by pressing and releasing the Restart button at the side of the Hub.
    Restart your computer.
    Run BT Broadband Desktop Help. - IF you ran the frisbee (CD).
    If you're using an Ethernet cable: check this cable between your Hub and computer is inserted correctly.
    If you're using wireless: check that your computer's wireless adapter is fitted and/or turned on. Some laptop computers have a small switch - please refer to your computer manual if you need help.
    -+-No longer a forum member-+-

  • Making a purchase for the first time, security questions are different to what I've set up?

    Hello,
    My friend has recently gifted me a $10 for my app store. After redeeming it, it says I have $10.00 Credit, which I assume is a good thing. Now, with this money he has sent me, I am trying to buy a Gem Pack in the game 'Clash Of Clans', this costs $9.99.
    I click purchase and it tells me "Insufficient Remaining Store Credit" where it also says "Tap Continue to Sign In". After typing my password in, I am led to the account billing settings where I've got the 'none' option selected as I have not put any credit card details which shouldn't be a problem as I'm trying to buy with the money my friend has given me.
    I click the 'done' button where it then tells me "confirmation required" where I then click 'buy', but then it comes up with "Verification Required".
    Putting in my password once again, it asks me for security questions. Here lies the problem. It usually asks me one question I know, and another that I haven't put in before. Usually "What's your dream job?" comes which I've put the answer to as this is a question I know. But, after it usually asks me either "What was your first pet's name?" which is a question I haven't put before.
    I've tried going to appleid.apple.com and changing and resetting my security questions multiple times, even to match the questions that are asked and it gives me the same result.
    "You've typed one or more security questions answers wrong".
    Please help, this is getting on my nerves. If this persists, I'm afraid I won't be buying from iTunes much.
    Cheers,
    Jack.

    After resetting your questions you've tried logging out (tap on your id in Settings > iTunes & App Store) and back into your account on your iPad to see if they then tie up ?
    If they don't, and resetting them yourself doesn't make any difference, then you could try contacting Support and see if they can help with what's going on.
    Normally when needing to contact support to get the questions reset you need to contact Support in your country : http://support.apple.com/kb/HT5699
    You could try the same contact method for your problem - or you could try contacting iTunes Support via this page, but as it's related to security questions they might just point you to the above : http://www.apple.com/support/itunes/contact/ , click on Contact iTunes Store Support on the right-hand side of the page
    For the $9.99 purchase and your $10 credit, if you are in the US then you need to add on your state's sales tax to an item's listed price

  • First Time User Questions

    Hi all,
    I'm new to ipod and have a few questions i haven't been able to find answers to elswhere.
    Firstly, when i sync photos to my ipod i'm left with a ipod photo cache file of nearly 10GB(!). Can i delete this? Is there away of getting photos onto my ipod without this? It takes up way too much space.
    Secondly, why can't i see any alum art. I selected view album art in the ipod options menu within itunes? Is album art compatible with imported cd's? I can see it in Real Player and Windows Media Player so i know its there.
    Finally, how come when itunes converts videos to my ipod they convert with no sound?
    Many thanks in advance for your help

    I've already deleted the iphoto cache as it slowed my computer down way too much.
    If i unsync my photos i think i should be able to manually update specific folders to add pictures to my ipod without losing existing images. Which begs the question why does itunes/ipod create a cache folder thats ten times the size of the images you're uploading? Seems an awful lot of information to simply automatically update photos onto the ipod.

  • Olmost done whit my first arch installation,questions XFCE4*SOLVED*

    hi all, well yeah first post,  i been reading and reading, and i have been able to sucefull install arch, and XFCE4
    whit the goddies, multimedia, office stuff, configure Xorg getting 3D acceleration , getting wpa_supplicant working etc etc
    olmost everything done,  but since im a n00b, i have 3 questions:
    *****ALL QUESTIONS SOLVED****
    **SOLVED**
    1) how do i make to boot into xfce4 automactly? (example: xubunti, u get to the xfce4 enviroment to login and etc)
    I did some reading, and i had to change the init 3, to 5 in /etc/inittab , and then add something like xdm to the DAEMON in rc.conf which didnt work :s
    So far i have edited in /home/.xinitrc , and add "exec startxfce4", so then typing startx i get xfce4, but.. ¿how can make the system to boot directly into XFCE4, and then to allow the login i want etc?
    EDIT: I made it to work, reading a arch wiki in french lol (http://wiki.archlinux.fr/howto:environn … :xfce-slim), using slim, now i get directly into XFCE4
    **SOLVED** thanks to paul2lv
    2) Reggarding the time, is worng :S , i did changed the local time to my zone (America/Santiago) but the clock dosnt shows the right time, i selected localtime, how can i change it?? : s (tried UTC aswell, no luck)
    **SOLVED** thanks to hacosta
    3) last question (for this post ) i was trying to install Transmission,  and when i made ./configure, it returned that i dont have GTK+ installed, but it IS :S it was installed tru pacman, so i made a "whereis gtk" wich returned= /etc/gtk /usr/include/gtk,  so i tried  ./configure --whit-gtk=/usr/include/gtk, but i got the same result, i tried whit ./configure --whit-gtk=/usr/include/, whit  /etc ,  no luck, like i said im a  total n00b : s
    **SOLVED** thanks to dw
    other question, about pacman, lets say i install VLC, so pacman need to download X packages, when i make pacman -R vlc, only removes VLC package??, if so, how do i uninstall those packages that were needed by VLC ??
    well the first question is like the one im dying to understand how to do it, i did research in google, but or i didnt find,  or i didnt understood :S
    thanks for all the help : )
    Last edited by AlmaMater (2007-03-01 14:01:25)

    hacosta wrote:ok about transmission, there is a package in the community repo,
    to get a login manager use one of the two methods, (just add gdm to your DAEMONS array in rc.conf) and make sure it is installed
    regarding the time, i
    thanks m8, i made the login manager to work reading more the wiki and using slim (pacman -S slim) and configuring, so thanks
    ok i will enable the community repo and see how it goes
    EDIT: works now, thanks m8
    cheers
    2 questions left to answer..
    Last edited by AlmaMater (2007-02-28 04:17:33)

  • Error message on first time installation of iTunes 10.2.2

    Trying to install iTunes 10.2.2. on a laptop that has never has iTunes. I get error message: "There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact you support personnel or package vendor". It goes on to install QuickTime and iTunes but neither will run as their .exe files seem to be missing. Have tried uninstalling and re-installing (4 times), running as administrator, disabling anti-virus and firewalls but no success. Any further offers? Thank you.

    You can try the following:
    1. Use the Control panel > software uninstall > to remove Quicktime, Bonjour, Apple Software Update, Apple Mobile Device Support, and iTunes if they are there.
    2. Search on the internet for the MS Installer Cleanup Utility (it's supposed to be discontinued but you can still down load it elsewhere - msicuu.exe - and install it.
    3. Run the Cleanup utility as an administrator and look in the list of programs to see if any of the above programs are still listed. If so, uninstall them with the utility. (Be careful! Don't select all the programs in the list you get - that deletes all installed programs. Only do the Apple ones listed above)
    4. Open cmd.exe as an administrator. Type "netsh winsock reset" and press enter.
    5. Reboot
    6. Download a fresh copy of iTunes 10.5 from www.itunes.com and install.
    7. If all this works, you can uninstall the Install Cleanup Utility if you like.
    Hope it works.

  • First Time installation of Flipshare software-unable to run without an error message.

    Got a Flip video camera for christmas.  No battery life out of the box.  When I plugged it in to the USB port it loaded the software so it appears in my applications folder but will not run a set up without an error message.

    jcm21 wrote:
    CCC put up a message that there was a Physical Problem  "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16"
    You should not keep those files for long, and probably shouldn't back them up (if you need them at all -- since you do regular backups, I'm doubtful just how worthwhile that feature is).
    "Unable to complete backup. An error occurred while copying files to the backup volume".
    One of Apple's maddeningly incomplete messages. Most likely, there's a problem with a file (quite possibly the one CCC didn't like).  See #C3 in Time Machine - Troubleshooting for details and instructions on finding and fixing it.
    If you continue running the Directory Protection app, be sure to exclude your Time Machine drive from it (as it will just take up lots of room, and won't help repair your backups if there's a problem);  and exclude the folders it creates from being backed-up by Time Machine (as they'll create large backups, and you probably can't use the backed-up folders anyway), per #10 in Time Machine - Frequently Asked Questions.

  • Cannot override codebase to use local files for first time installation.

    I have an application that is installed via a JNLP link. The application is about 200MB and we use a web start so that each time the application starts it checks for updates in the configuration and downloads them if necessary.
    I have a requirement to provide an offline installation on CD as some of our users have very slow connection speeds and it's taking over an hour to download the binaries.
    I am trying to do the install using the command line javaws -import -codebase <linktolocaldir> <linktojnlp>
    I need to use the jnlp on the sever so that the configuration files are checked and downloaded each time it starts.
    However the local codebase is never used - the dialog always says that it is downloading from the server, I can only get it to install from the local drive if I change the path directly in the JNLP (which is no good as I need to keep this path pointing to the server)
    Is there any other way to override the codebase for the initial installation?
    Any help much appreciated.

    Here are the guides I've used to do mine:
    How to use the Java Web Start CD-Install feature ? http://download.oracle.com/javase/1.5.0/docs/guide/javaws/developersguide/cdinstall.03.06.html
    Distributing a Java Web Start Application via CD-ROM http://blogs.oracle.com/CoreJavaTechTips/entry/distributing_a_java_web_start
    Distributing a Java Web Start Application via CD-ROM (same as above) http://www.java.net/pub/a/today/2008/07/10/distributing-web-start-via-cd-rom.html

  • First time user question

    hi
    in order to use this : is this a stand alone or i should have
    somthing on my server in order to use it? (i.e special extention)
    sorry if the question is dumb
    tx

    Contribute is a stand-alone desktop product. You need the
    ability to connect to your web server via FTP, over a network or
    locally.

Maybe you are looking for

  • Time Machine not backing up anymore

    I'm using TimeMachine for my wireless internet as well as for backing up my hard drive. The internet works fine. The issue that I am having is that Time Machine is no longer backing up my hard drive. The last backup was in November. Up until that tim

  • Version 6 will not open in Windows 7 on 32 bit PC

    I can operate Blackberry Desktop software version 5 without any difficulty but all attempts to install version 6 result in failure. Version 6 will not even open to run. Using a recent high spec PC running windows 7 pro and M'soft Office Outlook 2007.

  • Import utilities - Error IMP-00017

    Hi ! Anybody knows how i can fix this problem: IMP-00017: following statement failed with ORACLE error 3113: "CREATE INDEX "RC0101111" ON "RC010111" ("RC_FILIAL" , "RC_MAT" , "RC_PD" , " ""RC_CC" , "RC_SEMANA" , "RC_SEQ" , "R_E_C_N_O_" ) PCTFREE 10 I

  • Vendor - Control - Type of Busines

    Hi, How to take 'Type of Busines' field available in Vendor master Control data (SAP T.Code: MK03) to BI? Is there any datasource available? Thanks in advance!!

  • IDoc type "DELVRY03" for INBOUND delivery confirmation and Outbound Deliver

    Hi , We have a requirement where we have to send Inbound delivery confirmation as well as outbound delivery notification to our same customer. (3PL case) We have a EDI partner who is receiving our messages and transforming them before sending it to c