My first attempt to create livecd using Archiso

I just want to start by saying that I have searched the forum
I managed to create a archlinux liveiso consisting of  archlinux core Xorg and fluxbox following the archiso article in the wiki.
However I have one issue though when I run /arch/setup it only installs the base and base-devel packages not everything am I doing something wrong as I would like to install the whole contents of the cd.
any assistance will be appreciated.
Cheers

Hi Svenstaro I had a look at the wiki after you have updated it, that's how I found that the Grub part has been taken out here is my Makefile
#### Change these settings to modify how this ISO is built.
# The directory that you'll be using for the actual build process.
WORKDIR=work
# A list of packages to install, either space separated in a string or line separated in a file. Can include groups.
PACKAGES="$(shell cat packages.list syslinux)"
# The name of our ISO. Does not specify the architecture!
NAME=my-arch
# Version will be appended to the ISO.
VER=1.00
# Kernel version. You'll need this.
KVER=2.6.32-ARCH
# Architecture will also be appended to the ISO name.
ARCH?=$(shell uname -m)
# Current working directory
PWD:=$(shell pwd)
# This is going to be the full name the final iso/img will carry
FULLNAME="$(PWD)"/$(NAME)-$(VER)-$(ARCH)
# Default make instruction to build everything.
all: my-arch
# The following will first run the base-fs routine before creating the final iso image.
my-arch: base-fs
mkarchiso -p syslinux iso "$(WORKDIR)" "$(FULLNAME)".iso
# This is the main rule for make the working filesystem. It will run routines from left to right.
# Thus, root-image is called first and syslinux is called last.
base-fs: root-image boot-files initcpio overlay iso-mounts syslinux
# The root-image routine is always executed first.
# It only downloads and installs all packages into the $WORKDIR, giving you a basic system to use as a base.
root-image: "$(WORKDIR)"/root-image/.arch-chroot
"$(WORKDIR)"/root-image/.arch-chroot:
root-image:
mkarchiso -p $(PACKAGES) create "$(WORKDIR)"
# Rule for make /boot
boot-files: root-image
cp -r "$(WORKDIR)"/root-image/boot "$(WORKDIR)"/iso/
cp -r boot-files/* "$(WORKDIR)"/iso/boot/
# Rules for initcpio images
initcpio: "$(WORKDIR)"/iso/boot/archiso.img
"$(WORKDIR)"/iso/boot/archiso.img: mkinitcpio.conf "$(WORKDIR)"/root-image/.arch-chroot
mkdir -p "$(WORKDIR)"/iso/boot
mkinitcpio -c ./mkinitcpio.conf -b "$(WORKDIR)"/root-image -k $(KVER) -g $@
# See: Overlay
overlay:
mkdir -p "$(WORKDIR)"/overlay/etc/pacman.d
cp -r overlay "$(WORKDIR)"/
wget -O "$(WORKDIR)"/overlay/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/$(ARCH)/all/
sed -i "s/#Server/Server/g" "$(WORKDIR)"/overlay/etc/pacman.d/mirrorlist
# Rule to process isomounts file.
iso-mounts: "$(WORKDIR)"/isomounts
"$(WORKDIR)"/isomounts: isomounts root-image
sed "s|@ARCH@|$(ARCH)|g" isomounts > $@
# This routine is always executed just before generating the actual image.
syslinux: root-image
mkdir -p $(WORKDIR)/iso/boot/isolinux
cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/isolinux/
cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux/
# In case "make clean" is called, the following routine gets rid of all files created by this Makefile.
clean:
rm -rf "$(WORKDIR)" "$(FULLNAME)".img "$(FULLNAME)".iso
.PHONY: all my-arch
.PHONY: base-fs
.PHONY: root-image boot-files initcpio overlay iso-mounts
.PHONY: syslinux
.PHONY: clean
Last edited by sakrhass (2010-01-16 08:24:22)

Similar Messages

  • Attempting to Create Payment using CC&B XAI from CC&B Web Self Service

    We tested same from XAI Submission. There also it asks for authentication, used u=SYSUSER and p=sysuser00 (as configured in CC&B,it is default configuration) and it created payment event successfully in CC&B. Now we are trying to create payment event from CC&B Web Self Service, we are stuck in the authentication part, hopefully we will resolve it very soon. Manas Barua

    Hi Ruud,
    Thanks for replying, I'm using SOAP UI ver 4.0.0. for my trial.
    Now i'm able to run my script by adding <wsse:Security> in my script and authentification error response not appear any more.
    But i have another problem, when my script executed using SOAP UI it always makes the SOAP UI hang and if im execute using
    XAI submission it will successfull creating payment for the first time but for the next trial it will makes my browser hang.. :(
    Did my problem happened to your environment too? or is there any patch that i can use to resolve my problem?
    Thank you Ruud.
    Regards,
    Hadi Wijaya

  • First attempt at website build using Adobe muse

    Hi everyone, can I please have you opinions on my website that I created using Adobe Muse cc 2014.  The URL is: http://www.itech-computers.co.uk
    I'm a London, UK based electronics engineer offering IT services to London, UK public. Any tips or advise would be greatly appreciated.
    Thanks
    Faisal

    V1 Fusion wrote:
    > Pff spend the last 20 minutes searching for a valid UK
    phone number :p.
    It should take internationally formatted too (you gave me the
    regex)
    > How do you validate the serial after you submitted the
    first row.
    >
    > I searched your code, and I couldn't find one.
    When a duplicate serial number is detected, this is sent to
    the browser
    before the html:
    <script type="text/javascript">
    <!--
    var dupe = document.getElementById("textfieldDuplicate");
    dupe.style.display = "inline-block";
    dupe.style.color = '#CC3333';
    document.insertform.quantity.value = 1;
    document.insertform.description.value = 'Hoist';
    document.insertform.reason.value = 'Not working';
    document.insertform.invoice.value = 1111111111;
    document.insertform.salesorder.value = 1111111111;
    var serial = document.getElementById("serial");
    serial.style.background = '#FF9F9F';
    //-->
    </script>
    I had to do it like this to capture the form fields that were
    submitted.
    The code on the ASP page look's like this:
    <% If success = 0 AND Request.Form("quantity") <> ""
    Then %>
    <script type="text/javascript">
    <!--
    var dupe = document.getElementById("textfieldDuplicate");
    dupe.style.display = "inline-block";
    dupe.style.color = '#CC3333';
    document.insertform.quantity.value =
    <%=Request.Form("quantity")%>;
    document.insertform.description.value =
    '<%=Request.Form("description")%>';
    document.insertform.reason.value =
    '<%=Request.Form("reason")%>';
    document.insertform.invoice.value =
    <%=Request.Form("invoice")%>;
    document.insertform.salesorder.value =
    <%=Request.Form("salesorder")%>;
    var serial = document.getElementById("serial");
    serial.style.background = '#FF9F9F';
    //-->
    </script>
    <% End if %>
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Frame creation fails at first attempt but creates succcessfully later on

    hi
    i am trying to create frames from a movie using c#.I have converted javascript code to c#.But every time i attemp to create frames with a new movie,it fails to create frames in photoshop cs5.But it easily generates frames for the movie that have been used once in photoshop.I am unable to get any clue why it is working like this.plaese give some advice.

    Try to change the value of Failovertimeout to 1000.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Automatically Create Hyperlink Using Product Name in Document Text

    Hi,
    I've recently been told that all the product names in our PDF documents from here on out have to link to their product pages on our web site. This is a problem because any given document could contain dozens or a hundred references to products. Before I try my first attempt at creating an Indesign Script (on something that sounds kind of complicated for a novice like me) I was wondering if there any existing scripts out there that do something like the following:
    Find all instances in the text of product names beginning in AD and ending in either a number (digit) or the lowercase letter "x."
    Style those instances in a predefined URL character style (basically styling it in blue).
    Create a hyperlink to the product page using the product name found in the text. Taking the product name--AD4056, for instance--and creating a hyperlink by adding http://www.corpsite.com/ to the front of the URL and adding the product name to the end.
    So the end result, for example, would be that a product name like AD4056 would be set in the URL character style, and would have hyperlink added that, when in the exported PDF, would take you to the product page, http://www.corpsite.com/ad4056.
    It seems like it might be a relatively common problem, so I'm hoping that someone out there may have a resource already available. Oh, I'm on Indesign CS5 on a PC. Would prefer Javascript so our vendors could use it on a Mac, but PC-centric is OK too. If not, I'll get to crackin' on making it myself.
    Thanks in advance for any pointers!

    Here you are. As you see, it's quite complicated -- InDesign needs a destination URL, a virtual hyperlink, and an instance of this virtual hyperlink. All in all it took me a couple of tries before I got it right. (It didn't help your example URLs don't exist yet )
    d = app.activeDocument;
    url_style = d.characterStyles.item("URL style name");
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\<AD\\w+[\\dx]\\>";
    sourceList = d.findGrep();
    for (l=0; l<sourceList.length; l++)
         link = d.hyperlinkURLDestinations.add ( "http://www.corpsite.com/"+sourceList[l].contents);
         d.hyperlinks.add ( d.hyperlinkTextSources.add (sourceList[l]), link ).name = sourceList[l].contents+" ("+l+")";
         sourceList[l].appliedCharacterStyle = url_style;

  • Automatically Create Hyperlink Using Product Name in PDF text

    Hi,
    I've recently been told that all the product names in our PDF documents from here on out have to link to their component files (these are also PDF files) on our server (which is currently hosted locally). This is a problem because any given document is generated as a Solidworks Assembly engineering drawings. Before I try my first attempt at creating an Indesign Script (on something that sounds kind of complicated for a novice like me) I was wondering if there are any existing scripts out there that do something like the following:
    Find all instances in the text of product names beginning in 3 capital letters and ending in a number (digit)
    Create a hyperlink to the component parts files using the product name found in the text. Taking the product name--CAI623, for instance--and creating a hyperlink
    So the end result, for example, would be that a product name like CAI623 would become a hyperlink and would open the component part file like CAI623-1
    It seems like it might be a relatively common problem, so I'm hoping that someone out there may have a resource already available. Oh, I'm on Indesign CS5 on a PC. Would prefer Javascript so our vendors could use it on a Mac. If not, I'll get to crackin' on making it myself.
    Thanks in advance for any pointers!

    I wrote a few similar scripts. If you're interested, give me your e-mail via PM.
    Kas

  • 9.0.1 create database using dbca fails

    Solaris 8, 64-bit SPARC, 528mb RAM, 2 SCSI 9gig. Development box with no other users/processes running except Sendmail.
    Installed Oracle 9.0.1 on machine from CDs with no problems, Attempting to create database using Database Configuration Assistant.
    Creating 'general purpose' database using dbca with generally default parameters. Progress bar gets to 50% done, "creating & starting instance" is checked in progress window.
    CPU utilization goes to 100% and nothing happens for hours. Eventually have to cancel dbca. No control files or init.ora created, (pfile directory is empty) there are a bunch of oracle processes left running which have to be killed.
    I've tried this several times, moved stuff to different drives and/or filesystems, no luck. Have 5 gig available on /u01 where the database should install, and 8 gig available on /u02 where the .dbf's go.
    If I had any hair left, I'd pull it out. Any help would be greatly appreciated.
    Thanks in advance!

    I am getting this same problem: The DBCA gets to the point where it is installing the database and starting the instance (it says 51% of the way through), and then it just sits there doing nothing. I noticed when I installed Oracle (9.2.0) when it got to the point of the configuration assistants, there was mention of a listener not being able to start and the installer assuming it was already started (the listener that is). When the DBCA started right after, it stalled out at 51%.
    I aleady had the Sun JDK installed, but am assuming this is not the issue since the install got that far. Can someone please advise a course of action so that I can trouble shoot this? I am very very new to this side of Oracle. Any assistance is greatly appreciated and will be passed along to others in turn.
    Thanks,
    BillR

  • Why is my Apple ID being locked out every time I go to use it?  I haven't even attempted to log in for about 4 or 5 days, but today on my first attempt to do so, it said my account had been locked for security reasons.  This is the third time.

    I only sign in to iTunes' store about once a week or so.  But during each of my last 3 attempts (on different days, several days apart) on my first attempt to enter my password and hit submit, I am immediately told that my Apple account has been locked for security reasons and it wants to take me to a page to reset my 'forgotten' password.  I am using the CORRECT password.
    Perhaps someone else is trying to break into my account or is mis-entering theirs but my account should not be getting locked like this.  It is very frustrating to have to go through the reset password procedure each and every time I want to go into the store.  It seems to me that Apple really doesn't want me to buy any more apps from them as they keep refusing me entry into my own account, each and every time I have tried to use it, for the past few weeks.  I am not their best customer, but they aren't giving me much of a welcome invitation to become one, if I'm going to be treated like this.
    I just bought my iPhone 4 less than 2 months ago.  I paid extra money to upgrade early, just to get this phone because it was so highly recommended by everyone I spoke with in different stores (BestBuy and Verizon).  I even bought the 2 year upgrade to my Apple services in case I needed to ever call them, and so far I haven't had to, yet.  But I definitely will call them if this isn't straightened out.
    It looks like this other user could be tracked and an email could be sent to them from Apple to let them know what they are doing - trying to sign into the wrong account, and are locking somebody else out of their own account because of their error....and to remind them of their correct information or how to get it and to write it down or save it somewhere so they don't keep on doing this.
    I have seen literally DOZENS of other people in these discussions with exactly the same issue that I'm having so it is NOT an isolated incident, and it seems to be a growing problem as Apple's sales and user base continues to grow, so this problem is seriously needing to be addressed in some way, and soon, before they start losing new customers because of it.  If I was still within my original 14 day return period with this phone, I would definitely be returning it and buying an Android model because of how frustrating this is to me.  If my bank was doing this to me, I'd have already switched banks by now if they hadn't fixed it - just to give an example of how I feel about this.

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • First try at creating a Form/Using Javascripts

    Looking for constructive criticism. I am an instructor in the US Navy and I am forced to type out a boring routing sheet when submitting anything that needs approval from anyone other than myself. I finally decided to try my hand at Adobe Acroboat X Pro and this is the end result. Please feel free to criticise/help me build on this first attempt ever to write code. In my first attempt at using acrobat's Javascript editor I have discovered that it is a complete nightmare and not very userfriendly. I could write a string and save it only to find out that next time I went back to edit something it would tell me that I had a syntax in something that was a known good! Very aggrivating! Does anyone know if/where the limits of the java script are located? I was getting some problems while writing the strings at around line #40 so I would back it up to line #39, save it, then go back in and I could magicaly go past line 40. Anyone seen anything like this before?
    //-----------------Do not edit the XML tags--------------------
    //<Document-Level>
    //<ACRO_source>SetFieldValues</ACRO_source>
    //<ACRO_script>
    /*********** belongs to: Document-Level:SetFieldValues ***********/
    // Place all prepopulation data into a single data structure
    var Sheet = {
    "Graduation Certificates":{
    Enclosure: "Graduation Certificates, Class Roster",
    To1: "Commanding Officer",To2: "Executive Officer",To3: "Technical Director",To4: "Command Master Chief",To5: "Director of Training",To6: "Admin Officer",To7: "Department Head",To8: "Department LCPO",To9: "Division Officer",To10: "Division LCPO",To11: "Branch LCPO",To12: "LPO"},
    "24hr Special Liberty":{
    Enclosure: "Special Request Chit",
    To1: "Branch LCPO",To2: "LPO",To3: "",To4: "",To5: "",To6: "",To7: "",To8: "",To9: "",To10: "",To11: "",To12: ""},
    "48hr Special Liberty":{
    Enclosure: "Special Request Chit",
    To1: "Department LCPO",To2: "Division Officer",To3: "Division LCPO",To4: "Branch LCPO",To5: "LPO",To6: "",To7: "",To8: "",To9: "",To10: "",To11: "",To12: ""},
    "72hr Special Liberty":{
    Enclosure: "Special Request Chit",
    To1: "Department Head",To2: "Deparment LCPO",To3: "Division Officer",To4: "Division LCPO",To5: "Branch LCPO",To6: "LPO",To7: "",To8: "",To9: "",To10: "",To11: "",To12: ""}};
    function SetFieldValues(cSubject)
      this.getField("Enclosure1").value = Sheet[cSubject].Enclosure;
      this.getField("To 1").value = Sheet[cSubject].To1;
      this.getField("To 2").value = Sheet[cSubject].To2;
      this.getField("To 3").value = Sheet[cSubject].To3;
      this.getField("To 4").value = Sheet[cSubject].To4;
      this.getField("To 5").value = Sheet[cSubject].To5;
      this.getField("To 6").value = Sheet[cSubject].To6;
      this.getField("To 7").value = Sheet[cSubject].To7;
      this.getField("To 8").value = Sheet[cSubject].To8;
      this.getField("To 9").value = Sheet[cSubject].To9;
      this.getField("To 10").value = Sheet[cSubject].To10;
      this.getField("To 11").value = Sheet[cSubject].To11;
      this.getField("To 12").value = Sheet[cSubject].To12;
    //</ACRO_script>
    //</Document-Level>
    //<AcroForm>
    //<ACRO_source>Subject:Keystroke</ACRO_source>
    //<ACRO_script>
    /*********** belongs to: AcroForm:Subject:Keystroke ***********/
    if( event.willCommit )
       if(event.value == " ")
         this.resetForm(["Enclosure1","To 1","Legend 1"]);
       else
         SetFieldValues(event.value);
    //</ACRO_script>
    //</AcroForm>

    Unless you are really really good at editing JavaScript, I would not use the "Edit All Scripts", it is far to easy to make a mistake.
    It might be more helpful to have a copy of the form with JavaScirpts.
    It looks like you are trying to set a second or more drop down box using a data object.

  • HT3529 i just created my apple id and i tried to sign in on iMessage but it keeps saying that its already in use,however this is the first time that i'm using my apple id to sign in on any device,what the problem could be?

    I just created my apple id and i tried to sign in on imessage but it keeps saying that it is already in use however this is the first time that i'm using my apple id to sign in on any device,what the problem could be?

    You must create the account using an Apple device, a Mac (Lion or greater) or an IOS device (IOS5 or greater). Having done that you will be able to sign in from your Windows machine.
    FYI, iCal is an application that can display calendars from iCloud (and others) it is not a calendar itself, merely a calendar client. In Windows Outlook is the calendar client.

  • How we create workflow using sharepoint designer for first review the documnet than go for approve the document.

    Hi to all
    I have team site in site collection under this i have Shared Document library. Now i want to create the workflow for the shared Document library. How i will create workflow using sharepoint designer for first review the documnet than go for approve
    the document.

    Hi ,
    According to your description, my understanding is that you want to create a workflow which contains review and approval process.
    For implemening your requirement, you can create a workflow containing two steps. The first step is used to collect user information and set workflow variables, and the second step is used to verify whether the reviewer approve. If the reviewers complete
    approving, a pproval workflow is started. The whole workflow is like :
    More information, please refer to the links below:
    http://www.documentmanagementworkflowinfo.com/sharepoint-video-tutorials/create-document-review-workflow-sharepoint-designer-2007.htm
    http://office.microsoft.com/en-us/sharepoint-designer-help/watch-this-design-a-document-review-workflow-solution-HA010256417.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Can't create database using ASM (SOLVED)

    Hi all
    I'm trying to use ASM for the first time, on Oracle 10.2.0.1 on Solaris x64.
    I have installed the ASM instance into /opt/oracle/asm/10.2.0 and created disk groups. I have cssd running OK. I am able to start and stop the ASM instance without problems, and I can select from v$asm_diskgroup to confirm that disks are mounted OK.
    I have then installed Oracle EE separately into /opt/oracle/server/10.2.0. I first did a software only install, and now I am trying to create a DB.
    The problems come when I try to use this ASM instance to host a new database. I first tried to use DBCA to create a new database, but on database creation I got the following errors:
    ORA-00200: control file could not be created
    ORA-00202: control file: '+DBLIVE1'
    ORA-17502: ksfdcre:4 Failed to create file +DBLIVE1
    ORA-15001: diskgroup "DBLIVE1" does not exist or is not mounted
    ORA-15055: Message 15055 not found; No message file for product=RDBMS, facility=ORA
    ORA-01031: insufficient privileges
    I then told DBCA just to create the DB creation scripts, and I tried manually running these with SQL*Plus.
    When doing it with SQL*PLus, I initially got the same error as shown above. But then something changed (sorry, not sure what), and now the error I get is:
    CREATE DATABASE "NEONREL1"
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00349: failure obtaining block size for '+DBLIVE1'
    ORA-01031: insufficient privileges
    I've put some debug info below, showing me succesfully connecting to the ASM instance and then attempting to create the DB using the db creation scripts, showing the error at the end. You can see that the oracle OS user is able to connect fine to ASM, then I swithc ORACLE_SID and ORACLE_HOME to the EE install and try to create the DB, at which point it apparently can't connect to ASM any more.
    I've tried the DB creation many times, and in between attempts I completely empty $ORACLE_HOME/admin/<dbname> and delete the files related to the attempted install from $ORACLE_HOME/dbs/ . I've also stopping/starting ASM, rebooting, and I've done the install of ASM and EE a couple of times over in case I made any mistakes in my earlier attempts.
    Any help would be much appreciated!
    Tom
    ##### CHECKING ASM
    oracle@neonrcom-db1:~$ uname -a
    SunOS neonrcom-db1 5.10 Generic_127128-11 i86pc i386 i86pc
    # css is running
    oracle@neonrcom-db1:~$ ps -ef | grep css
    oracle 498 1 0 21:46:40 ? 0:01 /opt/oracle/asm/10.2.0/bin/ocssd.bin
    # listener is running in the ASM instance
    oracle@neonrcom-db1:~$ ps -ef | grep tnsl
    oracle 1332 1 0 21:49:59 ? 0:00 /opt/oracle/asm/10.2.0/bin/tnslsnr LISTENER -inherit
    # ASM is only entry in /var/opt/oracle/oratab
    oracle@neonrcom-db1:~$ grep -v "^#" /var/opt/oracle/oratab
    +ASM:/opt/oracle/asm/10.2.0:N
    # I can connect to ASM fine, and it has diskgroups mounted.
    oracle@neonrcom-db1:~$ export ORACLE_HOME=/opt/oracle/asm/10.2.0
    oracle@neonrcom-db1:~$ export ORACLE_SID='+ASM'
    oracle@neonrcom-db1:~$ sqlplus "sys as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jul 21 20:53:10 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> set line 150
    SQL> select name, block_size, state, type, total_mb, free_mb from v$asm_diskgroup;
    NAME BLOCK_SIZE STATE TYPE TOTAL_MB FREE_MB
    DBARCH1 4096 MOUNTED EXTERN 2096856 2096784
    DBLIVE1 4096 MOUNTED EXTERN 4193904 4193812
    #### Contents of init.ora for new DB
    db_create_file_dest=+DBLIVE1
    db_recovery_file_dest=+DBARCH1
    db_recovery_file_dest_size=2147483648
    ##### DB INSTALLATION ATTEMPT
    oracle@neonrcom-db1:~$ export ORACLE_HOME=/opt/oracle/server/10.2.0
    oracle@neonrcom-db1:~$ export ORACLE_SID='NEONREL1'
    oracle@neonrcom-db1:~$ export PATH=$ORACLE_HOME/bin:$PATH
    oracle@neonrcom-db1:~$ /opt/oracle/server/10.2.0/admin/NEONREL1/scripts/NEONREL1.sh
    You should Add this entry in the /var/opt/oracle/oratab: NEONREL1:/opt/oracle/server/10.2.0:Y
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jul 21 22:10:54 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    specify a password for sys as parameter 1
    Enter value for 1: xxx
    specify a password for system as parameter 2
    Enter value for 2: xxx
    specify a password for sysman as parameter 3
    Enter value for 3: xxx
    specify a password for dbsnmp as parameter 4
    Enter value for 4: xxx
    specify ASM SYS user password as parameter 6
    Enter value for 6: xxx
    Connected to an idle instance.
    SQL> spool /opt/oracle/server/10.2.0/admin/NEONREL1/scripts/CreateDB.log
    SQL> startup nomount pfile="/opt/oracle/server/10.2.0/admin/NEONREL1/scripts/init.ora";
    ORACLE instance started.
    Total System Global Area 1.9294E+10 bytes
    Fixed Size 2054976 bytes
    Variable Size 2264925376 bytes
    Database Buffers 1.7012E+10 bytes
    Redo Buffers 14721024 bytes
    SQL> CREATE DATABASE "NEONREL1"
    2 MAXINSTANCES 8
    3 MAXLOGHISTORY 1
    4 MAXLOGFILES 16
    5 MAXLOGMEMBERS 3
    6 MAXDATAFILES 100
    7 DATAFILE SIZE 300M AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    8 EXTENT MANAGEMENT LOCAL
    9 SYSAUX DATAFILE SIZE 120M AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    10 SMALLFILE DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE SIZE 20M AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    11 SMALLFILE UNDO TABLESPACE "UNDOTBS1" DATAFILE SIZE 200M AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    12 CHARACTER SET AL32UTF8
    13 NATIONAL CHARACTER SET UTF8
    14 LOGFILE GROUP 1 SIZE 51200K,
    15 GROUP 2 SIZE 51200K,
    16 GROUP 3 SIZE 51200K
    17 USER SYS IDENTIFIED BY "&&sysPassword" USER SYSTEM IDENTIFIED BY "&&systemPassword";
    CREATE DATABASE "NEONREL1"
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00349: failure obtaining block size for '+DBLIVE1'
    ORA-01031: insufficient privileges
    Message was edited by:
    tjobbins

    Update: I've worked out the difference between the two sets of errors I get.
    The basic error is this:
    ORA-00200: control file could not be created
    ORA-00202: control file: '+DBLIVE1'
    ORA-17502: ksfdcre:4 Failed to create file +DBLIVE1
    ORA-15001: diskgroup "DBLIVE1" does not exist or is not mounted
    ORA-15055: Message 15055 not found; No message file for product=RDBMS, facility=ORA
    ORA-01031: insufficient privileges
    However if my init.ora contains the line:
    control_files=/opt/oracle/server/10.2.0/dbs/cntrlNEONREL1.dbf
    then I instead get the second error:
    CREATE DATABASE "NEONREL1"
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00349: failure obtaining block size for '+DBLIVE1'
    ORA-01031: insufficient privileges
    So basically these must be the same error, just in the second case I'm not trying to put the control file on the ASM so it fails at a different point.
    But both errors must be because of the same cause, I suppose.

  • I have images in aperture and in my picture folder that I want to burn to DVD. I need them to be viewable on pc and possibly via a DVD player. My first attempt proved to work only mac. Can anyone help?

    Can anyone help me with burning DVD with images in Aperture and picture folder. I need the to be viewable on pc and DVD player if possible.
    My first attempt only works on mac.

    Eh la Pastenague! Je savais que tu était léthale pour l'homme mais ce sont pluôt les machines à pommes qui devraient te craindre. Merci! Solved. 
    For future reference.
    My TC is a 3rd gen.
    I actually had to reset to standard defaults not only once but twice. The first time I simply returned to my old profile but that only led to the same message error on the network settings (i.e. IP by default, cannot connect to the internet). Therefore the second time around I kept my profile as backup and re-created a new one plus a guest one.
    The airport utility then signaled to issues remaining:
    1) Internet access was cut - this I solved by simply reseting the cable modem
    2) There were no DNS Servers - I simply copied the ones I had from the previous setup and it worked
    I did have AppleCare....
    I'm online again and I hope for good.
    Thanks a lot
    PS. a small tip - I made captures of all my settings in Network settings, Airport Utility and Network utility using Grab in case of ... if anything it is just handy to get back settings that your are missing when setting up a new configuration

  • Exception only on the first attempt

    Hi Gurus,
                   When i click on a custom pop-up, i get a exception in the last page only on the first attempt.(CX_SY_IMPORT_MISMATCH_ERROR). i have debugged enough, but i am not able to figure out anything. What can be possibly the solution?
    Do Help!!
    Regards,
    JoSh

    Hi there,
    You could try creating sub-templates within your .rtf layout template. Create 2 sub-templates somewhere within yout .rtf and call them <?template:FirstPageFooter?> and <?template:OtherPagesFooter?>, or whatever names you want.
    In the first page MS Word footer, call FirstPageFooter (<?call:FirstPageFooter?>) then insert a page break even if you have no fields to display on page 2 and put <?call:OtherPagesFooter?> in the page 2 footer.
    Now I have done this in the header before, but not the footer. If this doesn't work the same in the footer you could always just call the sub-templates in the body at the end of page 1 and page2 and not use the MS Word Footer.
    Hope this helps
    -CC

  • Creating Certificate using Acrobat dll in C# program

    Hello,
    I need to create a certificate, basically .pfx file in C#. I used makecert tool to create the certificate first and then export it into .pfx file through command line. My attempt was successful. Then I used the .pfx file to encrypt a pdf using iTextSharp. The pdf is encrypted successfuly but when i try to open the pdf,  Acrobat/Reader shows a message "You do not have access rights to this encrypted document". I intalled the .pfx file but the problem still remains.
    Can anyone please guide me what am I doing wrong. I used the following code from command prompt to create a certificate and then export the certificate to a pxf file
    Create certificate - makecert -r -pe -n "CN=My CA" -ss CA -sr CurrentUser -a sha1 -sky signature -sv MyCA.pvk MyCA.cer
    Export to pfx - pvk2pfx -pvk MyCA.pvk -spc MyCA.cer -pfx MySPC.pfx -po <password>
    Is it possible to create a pfx file using acrobat dll in C#??
    Please help me, its urgent.
    Thanks in advance!

    No, there are no APIs for working with certificates from C#.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Tue, 13 Dec 2011 22:35:57 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Creating Certificate using Acrobat dll in C# program
    Re: Creating Certificate using Acrobat dll in C# program
    created by poortip87<http://forums.adobe.com/people/poortip87> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4083490#4083490

Maybe you are looking for

  • Linked Smart Object Layers

    This may be a very simple question (or not): As shown here, I have a Photoshop project that has many layers in it. All of the layers have pretty much the same pictures in it, but with minor differences. I'm trying to find a way to change the color of

  • Extracting time from date and adding it to another date.

    Dear All, The values of two fields in my table are as follows: n_date n_time 12/7/2007 1/1/1970 5:50:23 PM Both of these fields are of date data type. How can i add the time from n_time to n_date so that n_date will reflect a date with time added? Th

  • Track File Usage in Java

    Hi. Is it possible to track the number times a file is accessed/viewed in Java? I need this functionality to the new requirements for our project. Wherein the user will have an option to delete files that are less used/viewed. Any help will be greatl

  • SOA 11g in Production Mode

    Hi Everybody I am going to install SOA Suit 11g for a production mode, any helpfull tutorial or steps?? I googled the net, I didn't find , all are talking about development mode.. Any help please??

  • Is anyone else having problems publishing iweb?

    I can't seem to publish for the life of me. I keep getting: "Publish Error Publish failed due to a network error. Check your internet connection and try again." Yet the whole time I am connected. anyone know what the problem might be???? Thanks!