Report Server Error REP-1:

Hi,
I am trying to run a oracle report from an oracle form. The very first time when I try to run the report, I get a peculiar error, the report server just says: Error REP-1: . Nothing specific. From the second time onwards its working perfect. Not sure what's going on here. Any insight appreciated.
Thanks.

You did not mention your OS and Forms/Reports version, anyhow, you should take a look at the following metalink notes:
112124.1 - REP-0001 'Unable to Find Reports Builder Message File' using Report Server
105048.1 - REP-0001 Running a Report on the Web
832689.1 - Distributing A Report With Attached Static File Fails With REP-0001: Unable to find the Report Builder Message File
Edited by: Rodolfo Ferrari on Jul 17, 2009 10:51 PM

Similar Messages

  • Error from explorer (Report Server Error)

    Report Server Error Report 10g
    REP-51002: Bind server myservername failed
    Message was edited by:
    Dipo Ogundele
    Message was edited by:
    Dipo Ogundele

    this means either the reports server is already running or some issue with the reports server configuration.
    Are you able to start a new reports server?
    Check this link and try using list of reports server fmx to see all the reports servers in your network.
    http://www.alexyscorp.com/products.htm
    Rajesh Alex

  • No current report server error

    Using Report Builder 3.0,  I get no current report server error and when I run the report I get no data. Does anyone know how I can remedy this problem?
    sukai

    Hi sukai,
    Based on your description, it seems that you have not connect report server when you run a report in Report Builder. In this scenario, I suggest that you should click the Connect option with “No current report server” in the lower-left corner.
    If you have access to the machine where SSRS is installed, you can open up the Reporting Services Configuration Manager. Then you can see the Report Server Web Service URLs in the Web Service URL tab. Another option is directly type the following URL in
    the popup window:
    http://<machine name>/ReportServer_<SQL Server instance name>
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Creating Dynamic Report - facing error REP-498

    Hi guys,
    Facing problem Creating Dynamic Reports.
    Error : REP-498: Number of columns selected by the query is incompatible with report definition.
    Could you please show me where do i have to changed my query to get rid of this error message?
    Thanking you in advance.
    --dynamic query
    select a.yr_no
    &columname_1
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    &wherecl_1
    &groupby_1
    union
    select a.yr_no
    &columname_2
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    &wherecl_2
    &groupby_2
    &orderby
    ------after parameter form function
    FUNCTION afterpform
    RETURN BOOLEAN
    IS
    BEGIN
    IF :report_type = 'C' -- C represent Carrier Report
    THEN
    :columname_1 := ',a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount ';
    :wherecl_1 := ' where e.reportgroupid = c.reportgroupid '
    ||' and e.reportgroupid NOT IN (180,188,191,203,206,227,228, '
    ||' 229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)'
    ||' and e.reportgroupclassid = '|| :p_reportgroupid
    ||' and a.planid = c.planid '
    ||' and a.yr_no = '||:p_year
    ||' and a.qtr_no <= '|| :p_quarter
    ||' and rtrim(a.servicecatid) = rtrim(b.servicecatid) ' ;
    :groupby_1 := ' group by a.yr_no,a.qtr_no,b.rptservicecatid ';
    :columname_2 := ', a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount';
    :wherecl_2 := ' where e.reportgroupid = c.reportgroupid '
    ||' and e.reportgroupid NOT IN (180,188,191,203,206,227,228, '
    ||' 229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)'
    ||' and e.reportgroupclassid = '|| :p_reportgroupid
    ||' and a.planid = c.planid '
    ||' and a.yr_no = '||:p_year||' - 1 '
    ||' and a.qtr_no >= '||:p_quarter
    ||' and rtrim(a.servicecatid) = rtrim(b.servicecatid) ';
    :groupby_2 :=' group by a.yr_no,a.qtr_no,b.rptservicecatid ';
    :orderby :=' order by yr_no, qtr_no, rptservicecatid ' ;
    ELSIF :report_type = 'Q'
    THEN -- Q represent Quarter Report
    -- second condition will be here for 'Q'
    ELSIF :report_type = 'A'
    THEN -- A represent Annual Report
    --third condition will be here  for 'A'
    ELSE
    :tablename := '';
    :wherecl := '';
    END IF;
    RETURN (TRUE);
    END;
    ----final query for report type 'C' should looks like this and WHICH IS WORKING FINE FROM SQL*PLUS.
    select a.yr_no
    ,a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    where e.reportgroupid = c.reportgroupid
    and e.reportgroupid NOT IN (180,188,191,203,206,227,228,
    229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)
    and e.reportgroupclassid = :p_reportgroupid
    and a.planid = c.planid
    and a.yr_no = :p_year
    and a.qtr_no <= :p_quarter
    and rtrim(a.servicecatid) = rtrim(b.servicecatid)
    group by a.yr_no,a.qtr_no,b.rptservicecatid
    union
    select a.yr_no
    , a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    where e.reportgroupid = c.reportgroupid
    and e.reportgroupid NOT IN (180,188,191,203,206,227,228,
    229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)
    and e.reportgroupclassid = :p_reportgroupid
    and a.planid = c.planid
    and a.yr_no = :p_year - 1
    and a.qtr_no >= :p_quarter
    and rtrim(a.servicecatid) = rtrim(b.servicecatid)
    group by a.yr_no,a.qtr_no,b.rptservicecatid
    order by yr_no, qtr_no, rptservicecatid ;

    The problem is with initial values of your lexical parameters. They should be so that even before obtaining their desired values in the trigger, they would create syntactically correct SQL returning as many columns and of appropriate types, as you expect the final SQL to produce. You can not manipulate the number and types of columns using lexical parameters, just the real mapping to the table columns. The number, the type, and the order of selected columns should be defined by initial values of lexical parameters.

  • Display the report server error in the application

    i have got an error while running the report from the application , the status of the report was "TERMINATED_WITH_ERROR" which come from the "REPORT_OBJECT_STATUS" built in function ,
    when i go to the application server to the failed jobs i got :
    Terminated with error: REP-1401: ??? ??? ???? ?? PL/SQL: 'cf_1formula'.
    ORA-01403: ?? ??? ?????? ??? ??? ??????
    the problem is i wan to display to the end user this error ORA-01403
    not only "TERMINATED_WITH_ERROR" .....
    please help me
    thanks

    Give a button in your web page with 'Check status' which on hitting, make an ajax call, to query the status table, and show the status in that page.
    Hope this helps

  • Report Server: Error initializing printer

    Oracle Report Server 6.0 for Windows NT doesn't work. When I try to call any report I get next error message:
    Error message returned from Reports server:
    REP-3002: Error initializing printer.
    Please make sure a printer is installed.
    The printer is installed on Windows NT server and is default. Where is the error? My URL example:
    http://mccrash.eagle.ru/ows-bin/rwcgi60.exe?report=test.rdf+userid=scott/tiger+server=reportsserver+desformat=html+destype=cache
    Next URLs work successufully:
    http://mccrash.eagle.ru/ows-bin/rwcgi60.exe/help
    http://mccrash.eagle.ru/ows-bin/rwcgi60.exe/showenv
    http://mccrash.eagle.ru/ows-bin/rwcgi60.exe/showmap
    What ideas?
    null

    Fyi -- in Reports 6i a printer is no longer mandatory. eg if you're only doing web publishing, you don't need to setup a printer and give the Reports server access to it (of course, if you're trying to print from Reports - you need a printer! ;-).
    To answer your question, make sure the USER that is running the Reports server as an NT service has access to a printer. If it's the SYSTEM account (goto Control Panel -> Services and double click on the Oracle Reports Server xxxxx entry (where xxxxx is the name of the server) and look at the user account that is running the server. If it's the SYSTEM account, it doesn't have access to a printer, so change it to a user (either local or domain user) that does have printer access.
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • Report server error 11gR2

    Hello,
    Im have problems to start my report server which installed in windos 2008 R1.
    After installation works fine.
    Heres the log file of the console log of my report server
    12/04/18 17:54:18 Start process
    OpmnIntegrator: Register Ping callback.
    Apr 18, 2012 5:55:49 PM oracle.ons.CallBackSubscriber handleNotification
    INFO: OpmnIntegrator registration succeeded.
    Apr 18, 2012 5:55:49 PM oracle.as.management.opmn.integrator.OpmnIntegrator start
    INFO: Start the thread for component rptsvr_application_frminst to send periodic PROC_READY
    Apr 18, 2012 5:55:50 PM oracle.ons.CallBackSubscriber handleNotification
    INFO: dmsPublisher registration succeeded.
    OpmnIntegrator: Shutdown ...
    Stop process
    12/08/02 14:57:17 Start process
    Aug 2, 2012 2:57:18 PM oracle.security.jps.internal.credstore.ssp.CsfWalletManager openWallet
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    There's no way i can start the report server.
    Any Help?
    Thank you.

    Thank you for your reply.
    The report server now its working but i have prolem when im calling it from forms.
    REP-52251: The output of job ID 12 requested on Sat Aug 04 13:11:55 AST 2012 cannot be retrieved.<P>REP-56033: Job 12 does not exist.
    Im using the port 8888 both forms&reports ohs1 i think this is the http server
    Forms is ok.
    Both forms & reports SSO was default to no after installation. Never installed another application just WLS_FORMS & WLS_REPORTS.
    here's my code in when button pressed trigger.
    declare
    v_rep VARCHAR2(100);
    v_report_server VARCHAR2 (100) := 'RptSvr_APPLICATION_FrmInst';
    v_report_name VARCHAR2(100);
    v_format VARCHAR2(12) := 'PDF'; -- PDF or SPREADSHEET
    --v_format VARCHAR2(12) := 'SPREADSHEET';
    --v_format VARCHAR2(12) := 'htmlcss';
    repid REPORT_OBJECT;
    rep_status VARCHAR2(100);
    v_ip varchar2(100) := 'application:8888';
    begin
    v_report_name := 'report1';
    go_block(:global.p_cur_block);
    repid := find_report_object('report5');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_report_server);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,v_report_name);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT, v_format);
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_1='||:SP_USERCODE);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('http://'||v_ip||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?','_blank');
    ELSE
    message('Error when running report - '||rep_status);
    END IF;
    END;
    I dont know how to indent the code... hope you can understand it.
    This code works in 10g.

  • In-Process Report Server error

    Hi,
    I use Oracle Database 10g and Oracle Developer 10g (Forms and Reports)
    In Windows 2000 SP4 platform.
    I am having difficulties with the OracleAS Reports Service page.
    http://localhost:8889/reports/rwservlet
    It showed OracleAS Reports Services - Servlet Command Help
    Next, I tried to navigate to the following URL
    http://localhost:8889/reports/rwservlet/showjobs
    Suddenly another window message popup showing an error
    The window's title is : javaw.exe - Entry Point Not Found
    The procedure entry point kguuseg could not be located in the dynamic link library oraclient10.dll
    with only one button "Ok" to click
    After I clicked the button, the following error appear in the web browser
    REP-52266: The in-process Reports Server rep_<computer_name> failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    The same error happens to all commands listed in the Servlet Command Help page.
    I also noticed that inside the OC4J command prompt which is running, the following error listed
    Not able to load oracle.reports.util.EnvironmentGlobal class
    Using oracle.reports.util.Environment class
    REP-56105: Engine rwEng-0 died with error:
    Is there anybody who has the same problem?
    Is there any solution for this problem?
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • Reports Server Error 10g R2

    I am facing the following error in Oracle Reports 10 R2 , When I Open he Report file through Forms then
    this error is occuring;
    1)   The procedure entry point psoasyn could not be located in the dynamic link library orapls10.dll
    2) Rep-52266: The in-process Reports server rep_ACC2 failed to start.org.omg.CORBA.OBJECY_NOT_EXIST: vmcid: SUN minor code:204 completed: No
    please help me how to solve this problem.
    thanks

    My Problem is Solved (Alhamdulilah)
    I got help from the below link and the Bold text is usefull for me.
    OraFAQ Forum: Reports &amp;amp; Discoverer &amp;raquo; problem_with_report_server_after_configuring_OS_environment_varia…
    This is the same problem as your previous topic: you have to change the environment (ORACLE_HOME, PATH) to match with the tool you want to use.
    You can choose the current environment using OUI (Oracle Universal Installer, see Startup > All programs > Oracle xxx > Oracle Installion Products > Universal Installer. Then, in OUI, choose Installed Products > Environment tab and choose the Home of the tool you want to use.
    Regards
    Michel
    I change Enviorment Variables position up and down database down and developer up.
    Thanks

  • Report server problem - REP-110

    Hi,
    I am running a report server 10g on AIX 5.3.
    While executing the URL,
    http://192.168.107.205:7786/reports/rwservlet/showjobs
    I am getting an error like,
    Error
    Terminated with error: <br>REP-110: Unable to open file 'rep1'. REP-1070: Error while opening or saving a document. REP-0110: Unable to open file 'rep1'.
    What will be the problem. Please help me to solve this.
    Regards,
    Mathew

    Not sure if this helps but have you checked if there is a file called "rep 1" and what rights are set for that file?

  • Crystal Report server error

    I'm new to posting here, so please bear with me!  I have installed, in this order, crystal report server XI R2 .Net server 2005 (used as a viewer for reports in our web application), Crystal report server XI (BO), Crystal Report XI, BO XI SP4 on Windows Server 2003 R2 running as a VM.  When I first install crystal report server XI R2 .Net server 2005, open our web app and run Crystal reports, they run just fine.  After installing BO XI, Crystal Reports XI and BO SP4, I get an error:
    Server Error in '/ImageWorks' Application.
    Not enough memory for operation.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Not enough memory for operation.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [COMException (0x80041004): Not enough memory for operation.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +87
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +279
    [Exception: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +341
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +964
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename) +73
       roi_AdminReportViewer.Page_Load(Object sender, EventArgs e) +83
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +47
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
    Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
    I have loaded this same configuration on similar servers over the past 2 years with no issue.  Can anyone help me?  Doesn't look like the memory is being touched on the server, it's an IIS server with 1.5 GB RAM.

    Hi Elaine,
    So everything worked fine until you installed CRXI and BO R2 SP4?  Let me know if the order of installation I have below is correct:
    1.  crystal report server XI R2 .Net server 2005
    2.  Crystal report server XI (BO)
    3.  Crystal Report XI
    4.  BO XI SP4 
    I know the .net viewer is usually set up in the Crystal Reports Server installation.  I'm unsure as to why you have it listed separately.
    Also which version of BO (Crystal Reports Server) are you installing (R1,R2,R3)?   Could you clearly outline your first 2 installation steps?

  • Unable to print a report- Server Error

    I have a java/CR XI (sp3) web application which will display reporters but will not print them. When attempting to print the Crystal report viewer page shows the print dialog page with a choice of printers. When I select a printer and press print. I get a "Server Error" message box that says "An error occured on the server. Printing will be stopped. Would you like to view the error information?" When I say "yes" I get a blank page "PrintControlError.html". There is also a background window that says "Retrieving page 1".
    Edited by: Allen Oliver on Sep 2, 2008 9:11 AM

    That suggest a communication issue between the ActiveX Print Control and the server.
    The ActiveX Print Control posts back to the generating page for each page that it prints out.
    If you use [Fiddler|http://www.fiddlertool.com/] (.NET based) or [Charles|http://www.charlesproxy.com/] (Java based) on the client browser machine, are you able to see any error messages in the page 1 request?
    ActiveX controls usually hide interesting error messages.
    Sincerely,
    Ted Ueda

  • Report server error 1075

    I have installed 9iAS v 10222 enterprise edition on p4 machine.
    9iAS installed ok.
    but the report server installed by default with name
    Rep60_machine_name
    but application are using different name for the report server
    so I uninstalled the default report server by using the command
    rwmts60 -uninstall Rep60_machine_name.
    Now I installed the report server with the desired name using command
    rwmts60 -install newname -tcpip
    set the system account from services.
    and start the new report server. But the error occurs while starting the report server.
    the error message is
    error 1075 occured: The dependency service either does not exist or have been marked for deletion
    pls help
    Thanks in advance
    Regards
    Yogesh Kumar

    Hi,
    this is the Oracle Forms forum, you might have more luck in the Reports forum here Reports
    However, I guess you installed the reports server as a service under windows, right? Check the DependOnService registry key value under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<reports server key>
    Uninstall the reports server using rwserver -uninstall <server_name> and reinstall it using rwserver -install <server_name> [batch=yes/no] [autostart=yes/no] with valid parameters.
    HTH
    Gerald.

  • Web Intelligence Report Server - Error: Failed to run rexec. Error number

    Hello,
    I post a message in this forum :
    "When i want to start "Web Intelligence Report Server" with CMC, i've got this error :
    Web Intelligence Report Server: Echec du démarrage/de l'arrêt du service sur l'ordinateur distant : Error: Failed to run rexec. Error number: %12.
    Any idea ?"
    I've do this command :
    bouser@v-bo-1 bobje$ ./ccm.sh -restart ras
    bouser@v-bo-1 bobje$
    but i have always the same error "Error: Failed to run rexec. Error number: %12".
    Thanks

    Please try to avoid posting duplicate forum posts.
    This command :
    bouser@v-bo-1 bobje$ ./ccm.sh -restart ras
    Restarts RAS server and has nothing to so with WebIntelligence.
    To be able to Start/Stop servers from CMC, you have to have rexec running on your Unix box.
    Google rexec for more information on what it does and ask your Unix admin to enable it.

  • Report server error

    Hi all,
        I have designed a report and deployed it in report server. The report worked fine in SSRS but it is showing error in report server. The error is given below,please help me
    An
    error has occurred during report processing. (rsProcessingAborted)
    Query
    execution failed for dataset 'LA_Unapproved_JV'. (rsErrorExecutingCommand)
    SQL0104:
    Token ( was not valid. Valid tokens: FOR SKIP WITH FETCH ORDER UNION EXCEPT
    OPTIMIZE. Cause . . . . . : A syntax error was detected at token (. Token ( is
    not a valid token. A partial list of valid tokens is FOR SKIP WITH FETCH ORDER
    UNION EXCEPT OPTIMIZE. This list assumes that the statement is correct up to the
    token. The error may be earlier in the statement, but the syntax of the
    statement appears to be valid up to this point. Recovery . . . : Do one or more
    of the following and try the request again: -- Verify the SQL statement in the
    area of the token (. Correct the statement. The error could be a missing comma
    or quotation mark, it could be a misspelled word, or it could be related to the
    order of clauses. -- If the error token is <END-OF-STATEMENT>, correct the
    SQL statement because it does not end with a valid
    clause.

    According to the error message, there is error next to (, the syntax for openquery is OPENQUERY ( linked_server ,'query' ). I used the following query in dateset and it works fine:
    select * from openquery(servername,'select * from servername.testdb.dbo.t1') where name <>''
    please try to use servername instead of "10.1.6.164".
    In addition, make sure the part
    SUD_MIS.dbo.LADate_2_Datetime(trandate) is correct.

Maybe you are looking for

  • Xorg 1.5rc6 screws up urxvt in xmonad

    I have the testing repository enabled and i have an nVidia card so i upgraded my xorg-server, but when I restarted X and opened up an instance of urxvt it came out all funny, it isn't tiled and it doesn't get focus, but i can type in it. Does anyone

  • How to sort data in descending order when user clicks on the column heading

    Hi I have a report called "Top customers", which shows the top customers for a specific product line. It displays the customer name and one column with the total amount spent in the period for each product line. By default, the leftmost product line

  • Portal in ABAP+Java Add-in WAS

    <b>Hi There,</b> I'm evaluating a possibility of a implementation of SAP EP 6.0 SP 11 in an WAS 6.40 ABAP+Java Add-in some peoples have spoken for me that still have problems with this implementation. Do you can help me with your experiences!? <i>Reg

  • Mac and Windows 8 - sharing dropbox files on 2 partitions

    I have a macbook pro with 128gb harddisk in 2partitions,68 each. I have  20 GB dropbox and due to my limited space, I want to place the dropboxfiles on the Mac share and acces it from Windows8 share (bootcamp). I do not get access to the Mac share fr

  • Arch is mounting / as read-only post-install

    Okay, so I have no idea what I'm missing (I've done several Arch installs.) Machine is i686, no unusual hardware, and it's had Arch installed on it in the past. I run through the configuration, partitions, packages, etc., and when I reboot, Arch moun