Creating Archlinux custom CD from w/i WinXP

Hi all,
Sorry if this has already been answered in the forums, but could't find it.
I need to d/l all the current Archlinux base stuff plus KDE + misc stuff... and create a custom install CD through WinXP, is that possible?
Why is there not a Archlinux 0.7.2 ISO??? with all the new CD kernels, modules for boot ...etc.  Getting net access w/ the current ISO is hard especially when all you have is a WinXP box can't gensync or whatever.
p.s. SuSE 9.3 works fine... w/ net access dual boot 'n all... but that not installed any more :-(
Thanks In Advance for any help.

https://wiki.archlinux.org/index.php/In … ting_Linux ? it is the first result on the wiki for ``exisiting''

Similar Messages

  • To create a customer invoice from vendor invoice

    Hi i have a requirement to create customer invoices from vendor invoice. i would like to know if it is feasible??
    if it is possible is there any bapi or function module to transfer data from the vendor invoices to the customer invoice.
    regards
    prasannakumar

    hi,
    refer to this below link
    http://help.sap.com/saphelp_47x200/helpdata/en/5f/e411bb044411d2bf5d0000e8a7386f/frameset.htm
    -Reward If helpful
    -chaitanya

  • How to create a custom dialogbox from menuitem

    Hi everyone,
    I'm new to java swings and i'm creating a Menu application with a menu.
    I'm trying to open a dialog box with the menuitem. I tried JOptionPane and i got it and now i'm trying to create a customized dialog with JPanel. I tried a lot ...but i can't see anything in the Dialogbox.
    plz help me out.....
    Thank you ... here is my code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    public class Frame3 extends JPanel {
         static final String BOX_TITLE = "IP Selection Dialog";
              public static JFrame frame;
         public Frame3() {
              frame.addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e) {
                        String s1 = "Quit";
                        String s2 = "Cancel";
    Object[] options = {s1, s2};
    int n = JOptionPane.showOptionDialog(frame,
    "Do you really want to quit?",
    "Quit Confirmation",
    JOptionPane.YES_NO_OPTION,
    JOptionPane.QUESTION_MESSAGE,
    null,
    options,
    s1);
    if (n == JOptionPane.YES_OPTION) {
    System.exit(0);
    } else {
    return;
              frame.getContentPane().setLayout(new BorderLayout());
    JMenuBar menubar4 = new JMenuBar();
    final JMenu menu3 = new JMenu("File");
              menu3.setMnemonic('F');
         final JMenuItem menuItem1 = new JMenuItem("New Scan");
    menuItem1.setMnemonic(KeyEvent.VK_N);
    menuItem1.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));
    menu3.add(menuItem1);
    menubar4.add(menu3);
         menuItem1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
                   JPanel choicePanel = createSimpleDialogBox();
    System.out.println("passed createSimpleDialogBox");
    JLabel title = new JLabel("Click the \"Vote\" button", JLabel.CENTER);
    JLabel label = new JLabel("OK", JLabel.CENTER);
    label.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
    choicePanel.setBorder(BorderFactory.createEmptyBorder(20,20,5,20));
    add(title, BorderLayout.NORTH);
    add(label, BorderLayout.SOUTH);
    add(choicePanel, BorderLayout.CENTER);
    String simpleDialogDesc = "Menus";
         public JPanel createSimpleDialogBox() {
    JButton vbutton = null;
    final String defaultMessageCommand;
    final String yesNoCommand;
    JRadioButton radio1 = new JRadioButton("Hello");
    radio1.setActionCommand(defaultMessageCommand);
    JRadioButton radio2 = new JRadioButton("How ru");
    radio2.setActionCommand(yesNoCommand);
    radio1.setSelected(true);
    vbutton = new JButton("OK");
    public final static void main(String[] args) {
              frame = new JFrame("abcd");
              Frame3 frame1 = new Frame3();
              frame.getContentPane().add("South", frame1);          
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.pack();
              frame.setSize(1200,900);
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
    }

    Check out my StandardDialog class
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=678408
    you can fill in the content using setMainPane and synchronize on it by using the static showStandardDialog method
    I find it pretty useful

  • How can I create a custom shape from a TIFF file?

    I have a logo as a tiff file that I am trying to use as a watermark. I figured out how to insert it onto another picture through File > Place... however i then couldn't figure out how to change the colour of the watermark. Any pointers would be much appreciated!

    Which version of photoshop elements are you using?
    What color is the logo now?
    Can you post an example of the logo?

  • Help creating a custom tag from a scriplet

    I am trying to make a cusom tag to replace this peice of code:
    <TABLE >
    <% 
    out.println("<TABLE >\n" +
                    "<TR BGCOLOR=\"#FFDDAA\">\n" +
                    "  <TH>ID Number\n" +
                    "  <TH>Artist\n"
    Iterator it = pricePassed.getpricePassed().iterator();
    while( it.hasNext() ){
       MySite.VideoBean vids = (MySite.VideoBean) it.next();
       out.println( "<TR>\n" +
                   "<TD><Center><B>" + vids.getRecId() + "</TD>" +
                    "<TD><Center><B>" + vids.getArtist() + "</TD>"
    </TD></TR>\n" );
    %></TABLE>The following is no where near perfect i just want to post it so i can get opinions to see if i am going about it the right way:
    import java.io.*;
    import java.util.*;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    public class TableTag extends BodyTagSupport {
    private List passedIn;
    public void setItems(List workon) {
      passedIn = workon;
    public int doAfterBody() throws JspException {
      BodyContent body = getBodyContent();
      String body1 = body.getString();
       body.clearBody();
      List list = body1.length() >0 ? text2List(body1) : passedIn;
      if (list == null) return SKIP_BODY;
      try {
        JspWriter out = body.getEnclosingWriter();
        out.println("<TABLE BORDER=1 ALIGN=\"CENTER\">\n" +
                    "<TR BGCOLOR=\"#AADDFF\">\n" +
                    "  <TH>Artist\n" +     
    Iterator it = passedIn.setItems().iterator();
    while( it.hasNext() ){
       MySite.videoBean vids = (MySite.videoBean) it.next();
       out.println( "<TR BGCOLOR=\"#FFAD00\">\n" +
                    "<TD><Center><B>" + vids.getArtist() + "</TD>"
    </TD></TR>\n" );
      } catch (IOException ex) {
        throw new JspTagException(ex.getMessage());
      } // try
      return SKIP_BODY;
    }

    If you go to the page where it lists all the forums and scroll way, way, down you will find there's a JSP forum. That is really where you should post this kind of question.

  • Creating a Custom DataNavigator like BindingNavigator

    Hi All,
    I wan to create a custom BindingNavigator from dotNetbar ribbon control.
    Like wise in the property window we choosing a button as DeleteItem/ AddNewItem button, MoveNext button respectivaly for their operation of a .Net BindingNavigator.
    So I wan to use this way for my custom control How it could be possible to Bind a Datasource with my custom dataNavigator Control and by putting more button in that ribbon container setting its operation to the desired operation.
    Please Help me in this regards, Or if some one have a custom control with him copy it to me I will thankfull to you.

    Hello Afridi_ALAMDAR,
    >>I wan to create a custom BindingNavigator from dotNetbar ribbon control.
    This is beyond the scope of our support. I would suggest that you could post it to the dotNetbar ribbon control forum:
    http://www.devcomponents.com/support.aspx
    This forum is to discuss and ask questions about .NET Framework Base Classes.
    Thanks for your understanding.
    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.
    Click
    HERE to participate the survey.

  • Custom Step From Multiple Numeric Limit Test | Hiding Limit Tab

    Hi All,
    I am trying to create a Custom step from Multiple Numeric Limit Test. The custom step by itself poplulates the Limits value from the measurement. So I am planning on hiding the Limits Tab in the step settings. Can someone guide me on how to do this ?
    Thanks,
    Prasaanthan
    Solved!
    Go to Solution.

    Prasaanthan,
    if you do not need the Edit Substep at all, you can delete it from the substep list.
    Keep in mind that TS gains a lot by using very focused modules. So including a module which does two things (taking measurements, populating limits) might beckfire one day result in "difficult to manage" applications.
    hope this helps,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • A method to create completely customized photo book page templates from scratch in Lightroom 5

    I was able to successfully create completely customized Lightroom 5 page templates (including altering the number of, positions, and sizes of pictures) by making edits to the templatePages.lua file(s) in the Lightroom directory tree.  I have never heard of the LUA file format before, but it is ASCII and looks somewhat like XML, so it was fairly easy to decipher.  Here is a high-level description of how I did it.  This applies to Lightroom 5 on Windows 7.  If this doesn't make any sense to you, then don't try it - you're likely in over your head.  Although my description is brief and lacking in detail, it should enable someone who is capable of handling this to figure it out with a little of careful trial and error.  Do this at your own risk - if you screw-up your installation, catalog, or computer, it's your own fault.  It all worked great for me.
    First, open the "<lightroom 5 install directory>\Templates\Layout Templates" folder.  Then navigate to the template set that contains the template you would like to use as a starting point for the new template.  For example, "12x12-blurb\clean12x12".  Make a back-up copy of the templatePages.lua file in case you mess something up and want to revert.
    There will be a bunch of .jpg files in this directory that each contain a preview image of the layout that carries the same name as the .jpg file.  Find the one that you would like to use as a starting point.  Take note of the name of the file, which is probably something similar to "page_26_preview.jpg".   Duplicate the file and rename it to something unique, such as "dummy_preview.jpg".  It's just temporary, so it doesn't matter what name you pick, provided it is a legal file name with no spaces.
    Next, open the templatePages.lua file in a text editor.  I suggest using one that can automatically recognize and format ULA (such as Notepad++, which is open source and free to use).  Then search the file for the unique portion of the file name you took note of earlier, such as "page_26".  It will point you to a section in the LUA file that describes that particular template.  Carefully copy that entire section, including a balanced number of brackets (starting with the two brackets and commas before "children" and ending with the one bracket and comma after the "title" line.  Paste the copied text into the end of the file on a new line immediately following the bracket and comma after the "title" field for the last page template section (right near the end of the file).  Change the "previewName" field to the name of the preview file copy that you created ("dummy_preview.jpg" for me) and the "name" field to the name of the new template you're creating ("dummy" for me, since it is just temporary).  Next change at least one of the hex characters in the "pageID" field such that the new template will have a unique page identifier.
    Now you can make edits to the photo and text fields included in the new section, using other templates in the template file as examples.  "x" and "y" fields are coordinates (in pixels) for the bottom-left corner of the picture or text field, "height" and "width" are the width of the field in pixels.  The fields should be mostly self-explanatory, but make sure that the "photoindex" fields are filled-in starting from 1 to N, where N is the number of pictures in the template, with no duplicates or gaps.  They do not need to be in order.  Treat the "textIndex" fields similarly for text fields.  If you want to add an additional picture or text field, simply copy the section describing a picture or text field from another template and paste it, carefully, into the new template that you are creating.
    Once you are done, save the file (you may get interference from Windows UAC, in which case save the file elsewhere and the move it back to the correct directory).  Then open Lightroom.  Create a new photobook, and choose the new template for one of the pages, remembering that the preview image will look like the JPG that you copied.  Voila!  If you didn't screw anything up, you should see a page based on your new template.  Then right-click the page and select "Save as custom page", which will cause a fresh preview file to be created for your new template and your template to be copied to the "custom pages" section of the template menu.  The new section you added to the "templatePages.lua" and the "dummy" preview file can now be deleted, since they are no longer needed.  I save them so that I may simply overwrite them the next time I need to create a customized template.
    Enjoy, and please share any clarifications, corrections, or enhancements to my process.

    peter at knowhowpro wrote:
    DHWachs wrote:
    This post was great!  Thank you so much.  But I am hoping you know one more thing related to this.  In the "transform" section of the definition (where the x/y coordinates are set along with height and width) there is an option called "angle".  I was hoping that changing this value would allow me to offset the angle of the picture.  However, if I put any value there other than 0 the template becomes unusable.
    Do you happen to know what this option does?
    I haven't looked into the files, so this is just a guess based on how some graphic applications work. It's common to think of rotating a shape as pivoting around a center point, but It's possible that the file sets a value for the rotation point not at the center. In some graphics applications, you can set a shape's pivot at any corner or in the middle of any side, of the rectangle that contains the whole shape.
    So, your value may be rotating the shape around a pivot that moves the shape into some area that upsets the behavior of other shapes. Just a thought.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    Peter's point is a good one.  I would also assume that the "angle" property allows you to rotate an image, but I haven't tried it myself.  One thing to investigate - are there any page templates included in LR that have image placeholders that are at an angle (I don't recall any, off-hand)?  If so, looking at the associated .lua file could provide insight into how an angled image placeholder should be described.

  • How do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the onli

    how do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the online photoshop, and I really want to create my own customized url and post photos to my gallery and share them with the world, family, and friends, but i need help because i can't figure how to do any of this, would really appreciate feedback and assistance, thanks, - claire conlon

    To add to sig's reply, "calibrating" does not calibrate Lithiu-Ion batteries, it calibrates the charge reporting circuitry.  If you look at the effect of deep discharging Lithium-Ion batteries in the data from the independent test group, Battery University, you will see that doing so shortens the life of the battery significantly. It looks like an optimum balance between use and life is at a discharge level of 50%.

  • Can I create a custom XMP panel but using the exact same fields from standard XMP panels?

    Hi,
    I am new to XMP and not very technical, so please excuse me if this sounds like a stupid question!
    I have managed to create my own custom panels for Photoshop using the Generic Panel method with my own custom fields and they work fine. However what I need to do now is create a custom panel that uses the exact same fields from some of the standard panels. The reason being is that I have 4 fields that need to be integrated into another non-adobe system (Extensis Portfolio) that recognizes standard XMP fields, but at present these 4 fields are spread across different standard panels and it would be much easier for the user in Photoshop if they were all together on one panel.
    An example field is the "Additional Model Info" field that currently resides on the standard IPTC Extension panel. If I fill in a value in this field on a JPEG then open the the image in Extensis Portfolio, then the field is also filled in in a field called IPTC - Model Info, displaying a key of Iptc4xmpExt:AddlModelInfo.
    Is there a way I can take this standard field and use it on a custom panel, so that it can still be filled in in Photoshop and the value viewed in Extensis Portfolio? Sure I can create a custom panel and create a field called "Additional Model Info" but I can't figure out how to connect it to the corresponding field in Portfolio. I tried changing the  xmp_property name="Iptc4xmpExt:AddlModelInfo" but this just broke the panel.
    Is what I am trying to do possible and if so how and can it be done using the Generic Panel method?
    Many thanks!

    I am trying to do the same thing but with only the IPTC Keywords field. Searching everywhere but no luck.
    Thanks!

  • Issue in creating a custom data model from BP

    Hi Team
    We have a requirement to create a custom data model by copying data model BP. I have successfully created new data model ZP . I have copied the UI for searching from BP. Issue is when i search a business partner  ideally it should not display any entries because i have just created the data model, But it is taking entries from BP and getting displayed. Please let me know how to map data model to search UI. I dont see option USMD_MODEL here

    Hi Imran,
    actually that is not an issue but a designed feature. I'm afraid that you need to re-think your whole project. The explanations is rather simple:
    Data model BP in MDG is a so called Re-Use Area data modell. This means that active data (records that are currently not stored in a change request) are saved in existing SAP ERP data base tables like BUT000 for the business partner master data and LFA1 or KNA1 for Vendor or Customer master data.
    If you copy data model BP to ZP you still refer to the same active area. You will always find the same active objects - no matter which data model you are actually using for the user interface. The only difference wil occur for objects being currently processed in a change request. In that case a separation between BP and ZP is possible. But this won't help to solve your issue.
    From SAP side I can only recommend not to copy BP but to find a different way of integrating your project needs into BP.
    Best regards
    Michael

  • I am creating a web form from a template and I need to change a field. It is just a text field at the moment but I need to change it to a field that the customer can fill in. How do I do this?

    I am creating a web form from a template and I need to change a field. It is just a text field at the moment but I need to change it to a field that the customer can fill in. How do I do this?

    See this thread:
    http://answers.acrobatusers.com/Is-add-instructional-text-text-field-disappear-clicked-q19 5078.aspx

  • To Create Customer invoice from vendor invoices

    Hi i have a requirement to create customer invoices from vendor invoice. i would like to know if it is feasible??
    regards
    prasannakumar

    hi friend
    u can do this in THIRD PARTY SCENARIO
    from vendor invoice u can create  u r customer invoice
    the item category for that is TAS
    THANKS
    REWARD POINTS

  • Create Customer Master from Vendor Master

    Is there a program that allows for batch creation of customers from vendors so that you don't have to rekey all the information?
    Thanks,
    CM

    No, You may have to create a custom program to do that.

Maybe you are looking for

  • Problem about currency conversion

    HI, I have added one field KWERT from KONV to copa data source.Then value is coming in USD. I want currency conversion means i want value into EUR and INR . SO please tell me how to write code for currency conversion? Thanks Regards Devesh Babu

  • Best practice DISK Layout for E-business suite 11i or R12 in SAN enviornmen

    Hi, Does any one have any document on best practices on DISK Layout for E-business suite 11i or R12 in SAN enviornment? My thoughts are : Mount point 1 =Oracle Binary Mount point 2 =Data files Mount point 2 =Index files Mount point 2 =Archived logs P

  • Getting error in smartform : LOOP_BILL : "IM_T_VBRK" is neither specified.

    I'm preparing a smartform & In Form Interface, I have declared these values: IM_FS_KNA1     TYPE     KNA1 IM_T_VBRK     TYPE     VBRK IM_T_VBRP     TYPE     VBRP In Global Definitions: IM_T_KNA1     TYPE TABLE OF     KNA1 IM_FS_VBRK     TYPE     VBRK

  • Automatic import me

    How do I desacti've automatic import media?

  • Oracle patch upgrade after downgrade

    We patched Oracle from 11.2.0.2 to 11.2.0.3 successfully. Third party app had issue and blamed it on the patch, so I downgraded back to 11.2.0.2 successfully. Turns out the problem was not with Oracle, and I want to get back to 11.2.0.3. For the down