How to generate download links of packages through Pacman

Hello World
I have installed Arch base in virtual box before physical install. I have synchronized pacman database with pacman -Syy command. Now I want to install other stuff like x ,gnome, sound etc. Please tell me how to generate download link for any any package and all its dependencies to a text file with Pacman so that i can download it with wget on some other computer and then transfer it back to my system.
Thanks
Last edited by cadcrazy (2008-09-23 03:33:08)

man pacman wrote:-p, --print-uris
           Print out URIs for each package that will be installed, including
           any dependencies yet to be installed. These can be piped to a file
           and downloaded at a later time, using a program like wget.

Similar Messages

  • How can i download ESS business package?

    How can i download ESS business package?
    After sdn updated I cannot find where it is.

    Hi Postech,
    this answer is more elaborative
    Click on SDN Community on the top Navigation Panel
           In Detail Navigation you can see SAP Netweaver Capabilities --> User Productivity --> Portal and collaboration link, Click on it
           You can find Portal Content Portfolio,  Click on it.
           In new window you can find Business Packages
           We have three types of categories:
                1) Business Packages for Every User
                2) Business Packages for Managers.
                3) Business Packages for Specialist.
        When you click on any of Categories, you can find related to that categories of    Business Packages.
         Click on Download   then it will ask for Service Marketplace id and password
    Reward points if helpful
    Regards,
    Shailesh Nagar

  • How to make downloadable links in Adobe Muse

    I am new to website design and am trying to figure out how to make downloadable links for some PDF flyers, PSD templates I am creating.   Not sure if "downloadable links" is the correct term for what I'm trying to say but in a nutshell I am creating Business Flyer's in PDF form and Photoshop PSD template files that I would like to be able to have my users click a link that allows them to download them right to their desktop.  Any help would really be appreciated!

    Hi caybar10gaming,
    I had the same question as you and was searching online for how to add "downloadable links" as well so your not alone in that lol. Anyways, I found this video that explains how to do this. I hope this helps you, as it did me. Good Luck  
    http://tv.adobe.com/watch/muse-feature-tour/add-and-link-to-any-type-of-file/
    -Caitlin

  • How to display download link with get_blob or get_blob_file_src ?

    Hello there,
    I am struggling to display a download link in a SQL query report.
    Based on the requirement, I have to create a sql query report that the source contains a series of union select query.
    Example here
    WITH current_engagement AS (
    SELECT defendant_id, engagement_id, pn, ethnicity, date_joined_aodt_court, case_manager_name
    , participation_conditions, discharge_conditions
    FROM engagement
    WHERE defendant_id = :PXX_DEF
    AND date_joined IS NOT NULL
    AND ( date_terminated IS NULL OR to_date(date_joined,'DD/MM/YYYY') > to_date(sysdate,'DD/MM/YYYY'))
    AND active = 1 AND ROWNUM = 1
    ORDER BY defendant_id DESC
    SELECT def.first_name, def.middle_name, def.surname, to_char(def.pn) AS "PN", to_char(def.nhi_number) AS "NHI"
    ,ce.ethnicity, to_char(ce.date_joined) as "DATE_JOINED ", ce.case_manager_name, ce.participation_conditions, ce.discharge_conditions
    FROM defendant def INNER JOIN current_engagement ce
    ON def.def_id = ce.defendant_id
    UNION ALL
    select ' <b>2. Phase Number</b>' , '<b>Date Started</b>' , '<b>Date Finised</b>' , '<b>Notes</b>' , null
    ,null , null , null , null , null
    from dual
    UNION ALL
    SELECT TO_CHAR(NVL(ph.phase_number,'No Phase Found')), TO_CHAR(ph.date_started, 'DD/MM/YYYY'), TO_CHAR(ph.date_finished, 'DD/MM/YYYY'), ph.notes, null
    , null , null , null , null , null
    FROM phase_membership ph INNER JOIN current_engagement ce
    ON ph.mpm_eng_id = ce.engagement_id
    WHERE to_date(ph.date_started,'DD/MM/YYYY') <= TO_DATE(sysdate,'DD/MM/YYYY')
    AND ( ph.date_finished IS NULL
    OR TO_DATE(ph.date_finished, 'DD/MM/YYYY') >= TO_DATE(sysdate,'DD/MM/YYYY') )
    AND ph.active = 1
    UNION ALL
    --more selects
    -- then the last select is to list all related documents with download links
    select '<b>6. Document Date</b>' , '<b>Document Type</b>' , '<b>Description</b>' , '<b>Download</b>'
    , null ,null , null , null , null , null
    from dual
    UNION ALL
    SELECT TO_CHAR(doc.date_received), doc.document_type, doc.comments, TO_CHAR(dbms_lob.getlength(doc.UPLOADED_FILE))
    , null ,null , null , null , null , null
    FROM document doc INNER JOIN current_engagement ce
    ON doc.d_eng_id = ce.engagement_id
    WHERE doc.active = 1
    This report is generated fine.
    But the requirement also ask to display a download link. And because it is union selects, all following selects must be the same as the first select column data types.
    In this case, it has to be CHAR. Otherwise, it will generate error as below
    ORA-01790: expression must have same datatype as corresponding expression
    So I follow the GET_BLOB_FILE_SRC Function step from
    http://docs.oracle.com/cd/E14373_01/apirefs.32/e13369/apex_util.htm#AEAPI129
    I turn my last select into
    SELECT TO_CHAR(doc.date_received), doc.document_type, doc.comments,
    CASE WHEN NVL(dbms_lob.getlength(doc.UPLOADED_FILE),0) = 0
    THEN NULL
    ELSE
    'Download'
    END
    , null ,null , null , null , null , null
    FROM document doc INNER JOIN current_engagement ce
    ON doc.d_eng_id = ce.engagement_id
    WHERE doc.active = 1
    Which the result inside the hreg is
    http://app_address_here/f?p=208:48:1303335952329758:::::
    while if I use Interactive report the link is
    http://app_address_here/apex_util.get_blob?s=1303335952329758&a=208&c=66645817090447568&p=48&k1=12&k2=&ck=A18D20D407435BD649EA3399EC27BC00&rt=CR
    and it works well.
    I do a research and know that get_blob_file_source link to the source of the column / field name located in the first parameter.
    So I had put the UPLOADED_FILE column, DOCUMENT table in the source of the column PN.
    But it still does not show anything that close to the correct one that is generated by interactive report.
    If anyone has any ideas, please help. If I need to manually write using get_blob , please give me an example.
    I urgently need to do this report.
    The version of APEX we use is Application Express 4.0.2.00.07
    And I cannot ask for an upgrade to 4.2 till the end of next year.
    Please help.
    Thanks a lot in advance.
    Ann.

    Hi Ann,
    Here you can see and download the example :
    http://apex.oracle.com/pls/apex/f?p=63066:1
    Please let me know if you need access the work space.
    Hint, Please read the FAQ section. had you put your thread in a better format, you would have gotten a quicker response :)
    Regards,
    Fateh

  • How can I download Creative Cloud Packager without a cc account?

    We have a volume license for software such as captivate and others that can be packaged with the creative cloud packager, but do not actually have a create cloud account.
    From what I can find it says to login to the licensing portal and we should be able to download it.  I am unable to find any link or download to the packager.  I am able to download our volume licenses and software installs but not the packager.

    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

  • XML Forms: how to create download link

    Hi,
    can anybody tell me, how i can create a download link to a document rid
    in an XML form?
    I can create a link which will open the referenced document, but "right klick
    link | save target as..." will produce an error, since the link is a javascript call.
    Thanks for any help,
    bye,
    Markus Steinberg

    Hi Markus Steinberg,
         i need to create the Download attachement Option In XML Form..
         U got the solution for that above thread..
         If so please tell me how to create? and then how to create multiple Link ?
    Regards
    Thillai J

  • Sharepoint 2013 - How to add "download link" to a column

    Hi there.
    We have download library with video files. We would like to add a column with a hyperlink of files in other words: DOWNLOAD LINKS.
    What would be the easiest way to achieve that?
    with best regards,
    bostjanc

    Hi Bostjan,
    you can create a workflow that, on item create, sets your download link column with this value:
    http://<your site collection url>/_layouts/download.aspx?SourceUrl=<your file url>
    hope this helps.
    Fabio

  • How to put Download Links on a Jsp Page?

    Hi,
    I am a student and I am working as an intern. This is my question:
    My boss wants me to put some download links(pdf and flash files) on to a jsp page. when a user clicks on the link, all the user info (i.e. name, filename, download time etc) should be stored in a database and then a pop up should appear asking user where you want to download the file.
    I have done most of the part but there is a problem. when a user "left click" on the link then it opens the PDF file in the browser. but if the user "right click and select save target as" then it brings up the box. My boss dont need the user to VIEW the file by left clicking it. I mean on both clicks a pop-up box should appear.
    one more thing to note is that, the PDF are not on the same server. I mean they do not have the same context path.
    Here is what I am doing:
    on the link page:
    sample
    on the other page (which stores information):
    // ... this is downloadfile.jsp
    response.setContentType("application/force-download");               
    String filename = request.getParameter("file");          
    String path = "http://www.domain.com/pdf/" + filename;
    bean.addDownloadDetails(session.getAttribute("email").toString(), filename, request.getRemoteAddr());  // save info in database
    response.sendRedirect(path);
    // ...any ideas or help is appreciated.
    Thanks.

    Straight to the question in the topic title: just use <a> links. But you already found that out. In the future please invent clear topic title covering the actual problem :)
    I have done most of the part but there is a problem. when a user "left click" on the link then it opens the PDF file in the browser. but if the user "right click and select save target as" then it brings up the box. My boss dont need the user to VIEW the file by left clicking it. I mean on both clicks a pop-up box should appear.Change the content disposition to "attachment" instead of "inline".
    one more thing to note is that, the PDF are not on the same server. I mean they do not have the same context path.
    Here is what I am doing:
    // ... this is downloadfile.jsp
    response.setContentType("application/force-download");               
    String filename = request.getParameter("file");          
    String path = "http://www.domain.com/pdf/" + filename;
    bean.addDownloadDetails(session.getAttribute("email").toString(), filename, request.getRemoteAddr());  // save info in database
    response.sendRedirect(path);
    // ...any ideas or help is appreciated.
    Thanks.Better obtain its InputStream by java.net.URLConnection and write it to the OutputStream of the HttpServletResponse. A redirect would create a brand new request, hereby dropping the current request and the response (so setting the content type makes really no sense).
    You can find some pointers in this FileServlet example: [http://balusc.blogspot.com/2007/07/fileservlet.html].

  • How to uninstall/delete software not installed through Pacman.

    I tried to search for an answer, with limited success. I have installed some stuff from external sources using various installers. In particular, I installed some stuff from Humble Bundle which, if I recall correctly, used this automated installer called Nixstaller, which I thought would register the packages in Pacman. And when I look at the website, it says that if it fails to register the software in the package manager, it will generate an uninstall script. I installed e.g. Torchlight in /usr/local/games, but there is no uninstall script to be found there, or in the generated folder in /home. Neither does it seem to be registered in Pacman. So how do I get rid of it? Is there a way to uninstall it, or would I have to remove everything manually? If I have to remove it manually, how do I know where everything is located? I assume the installation isn't necessarily limited to the /usr/local/games folder I picked and /home, so how would I go about getting rid of it all?
    Last edited by Jrgen (2012-12-19 19:57:23)

    Not to my knowledge.  You can ask pacman to show you ALL files not owned by a package and then begin to manually delete ones you feel do not belong.  Note that you should NOT just blindly start removing these!
    Here is ~/bin/pacman-disowned that I got from here; can't remember who authored it.
    #!/bin/sh
    tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$
    db=$tmp/db
    fs=$tmp/fs
    mkdir "$tmp"
    trap 'rm -rf "$tmp"' EXIT
    pacman -Qlq | sort -u > "$db"
    find /bin /etc /lib /sbin /usr \
    ! -name lost+found \
    \( -type d -printf '%p/\n' -o -print \) | sort > "$fs"
    comm -23 "$fs" "$db"|less
    Last edited by graysky (2012-12-19 20:14:49)

  • How to place download link on jsp page to download files eg. Download PDF

    Hi,
    I have made an appliaction in struts 2 which creates PDF,its working fine now i want to place a link on my jsp page from where i can click and download that PDF file which i have created and store on my local location. Also i want to to know can i place links on my jsp page to download other type of files if i want to give link on my page to download Images or songs how can i do that,
    Help plzzzzzzzzzzzz

    IF You are using jsf then simply <h:outputLink value="file:///D:/Me/Image000.jpg"/>. This generates HTML <a> tag and value attribute replacing with <a> tag's href attribute.If you are using other technologies try to find which tag generates HTML <a> tag.
    I think You also can simply place HTML <a> tag wherever You want

  • How can I download Adobe CC Package for Windows version 1.1?

    Hi
    I'm the user administrator of Adobe CC for teams in a spanish company. The problem that we found is we can't download the 1.1 version of the Adobe CC Package, just because in the spanish website it's only available the 1.0.
    I have this link: http://helpx.adobe.com/creative-cloud/packager.html but it always downloads the 1.0 spanish version.
    Thank you in advance for your help.

    At the bottom of the http://helpx.adobe.com/creative-cloud/packager.html page is a Choose your region option. Does switching to the United States help?

  • How to create downloadable links?

    I am trying to learn to use Adobe Creative Suite 3.  I have used Dreamweaver 3 to create a website hosting some lectures in flv format.
    I would like my viewers to be able to download the videos.
    Would be grateful if someone can tell me how to do it?
    My site is http://www.bereanbibleexpositions.org.  Other constructive suggestions are welcome as I am a newbie.
    Thank you very much.
    Nickyee

    Hi Murray ACP,
    Thanks for the comments
    Focusing on the screwdriver rather than the carpentry is a bad idea.  With Dreamweaver, you would be much better off leaving the CD in the box while learning HTML and CSS.  Without knowledge of those two, 'learning Dreamweaver' will be frustrating and tedious.
    I did learn a little of HTML and CSS.  Learning was easy.  But with a memory like a sieve, I forgot almost as soon a I learned.  So I just focus on what I need to get the job done.
    Since you have stated you are using Creative suite 3, I am also assuming that you are also using DW CS3 rather than DW3 (vintage ~1999).
    Yes, you are right.
    Hans pretty much has you covered here.
    Yes, almost.  Now, my flv files are sorted out.  Only the MP3 files refuse to be downloaded.

  • How to generate report in pdf format through a JSP page

    I require to generate my report from my JSP page into a PDF format . How can i do it?

    Use a Java API which can create PDF files based on some collection of plain vanilla Java objects (List, String, Number, etc).
    Google can find them all. Just feed it with something like "Java PDF API" or so. A commonly used one is iText.
    That said, when talking about this in JSP context, ensure that you do NOT write raw Java code in JSP files using scriptlets. Raw Java code belongs in Java classes. In such case you need a Servlet. In JSP just use taglibs and EL to interact with backend Java code and data. Scriptlets are discouraged since over a decade.

  • Urgent: How to create db link in OWB through wizard ? Where is that wizard

    Hi,
    I am facing problem in finding database link creation wizard in OWB.
    Connectors are created. How to use them in creating database link and where is the option to create the database link in OWB?
    Thank you in advance.
    Regards,
    Amit.

    Ola Amit,
    You can create database links within the ORACLE Modules you define.
    Expand Databases/Oracle and right click on one of the modules.
    You will see four tabs. The third will allow you to select or define database links
    Select one of the already existing links or create a new one by selecting the Create DB Link button...
    This is for the OWB version 10.1.x
    Regards,
    Moscowic

  • How can I download Japanese language package for Mac SOX 10.2.5?

    I received a PDF in Japanese, but my acrobat reader cannot read it. It gives me a message that I need a Japanese language package which is not available for this version. What should I do?

    You should be running OS 10.2.8 (the final build for Jaguar - download it from Apple.com/support), and check Apple.com to see if there are some international language updates as well - you may have to install those from your original OS 10.2 Disc. If you have those, you should be able to open a Japanese PDF in Preview (the built in PDF viewer in OS X).

Maybe you are looking for