How to build x86_64 archiso on 32 bit machine?

Ohay guyse,
It's me again
Anyways, sorry for wasting your time (those who cared to read, facepalm and reply [in that order] to my previous questions and rant).
But now I face a dilemma:
I need to make a new custom archiso.
Archiso does not work on i686 - x32, only x64
I only have one x64, which is archbang.
I can't get support here because of that. I understand.
The guys at archbang send me back here.
So how should I post my questions? And where? Should I ask directly the maintainer of archiso?
Note:
-installing a new archlinux x64 is not an option right now. (though I'll do it as soon as I can make myself an x64 archiso to work with)
-previously archiso worked on this x64 archbang, until I updated the system (Syyu)
Thanks in advance.
Cheers!
Last edited by jasonwryan (2013-04-07 20:57:25)

Xyne wrote:
I expect that it is possible to build the iso on x86_64. I really doubt that the devs require two different systems just to build it. I don't think the packages are compiled when building the iso, only installed, which can be done on any architecture.
Post specific error messages if you want help.
The script itself includes the x64 limitation:
if [[ ${arch} != x86_64 ]]; then
echo "This script needs to be run on x86_64"
_usage 1
fi
Either way I can live with the x64 limitation, but the problem right now is when I try to resume the build:
[root@archbang livecd]# ./build.sh -v
patching file work/i686/root-image/usr/bin/pacman-key
Hunk #1 succeeded at 447 (offset 71 lines).
Hunk #2 FAILED at 403.
1 out of 2 hunks FAILED -- saving rejects to file work/i686/root-image/usr/bin/pacman-key.rej
[root@archbang livecd]# pacman -Q archiso
archiso 6-1
#notice that this is the older version (reinstalled from cache), therefore it might be that a dependency was updated (probably pacman)
I'm guessing its a problem with the packages being signed properly with pacman...
jasonwryan wrote:
I've updated your thread title for you; when someone asks, please do it yourself in future
https://wiki.archlinux.org/index.php/Fo … ow_to_Post
Not an Arch discussion, moving to Installation
Sorry, the discussion derailed (not sure why), sorry and thanks.
drcouzelis wrote:It's kind of off topic but, may I ask why you are using archiso instead of doing a regular installation? (I apologize if you already mentioned why)
Mainly because I want everything to be ready beforehand. I might have to install #arch on 10 computers, and I can't spend an evening writing commands, waiting the downloads to finish and to customize. With archiso I can have the system 80% ready, with no further download needed.

Similar Messages

  • How to build Perfctr 32-bit libray on 64-bit AMD machine

    Dear all,
    I have downloaded perfctrl library (used by "collect" tool) as this is required by collect tool for getting performance data from underline system.
    from http://user.it.uu.se/~mikpe/linux/perfctr/2.6/perfctr-2.6.34.tar.gz
    OS
    Linux MyMachine 2.6.18-92.el5.src-PAPI #1 SMP Tue Jan 27 10:57:40 CET 2009 x86_64 x86_64 x86_64 GNU/Linux
    Architecture
    AMD 64 bits (Family 10h) or x86_64
    I am using Java version
    $ java -version
    java version "1.6.0_10"
    Java(TM) SE Runtime Environment (build 1.6.0_10-b33)
    Java HotSpot(TM) Server VM (build 11.0-b15, mixed mode)
    My question is that when i install using defaults, perfctr user library installs 64-bit of libray version that can be used with 64-bit JVM
    but i need to use or get performance data using "collect" tool and 32-bit JVM, for that i think i need 32-bit version of "perfctr" library
    So i want to know can any body kindly tell me how to build 32-bit "perfctl" library on my system.
    Many Thanks

    You are correct - you will need to build a 32-bit perfctr user library to profile 32-bit applications.
    The analyzer team has only built this library on 32-bit systems (and copied the library to the 64-bit systems). Some users have built the 32-bit version on 64-bit system, but we don't know the specific changes they made to the perctr build. I'm sorry I couldn't be more help at this time.

  • How to build with 64-bit NI-CAN 2.7.2?

    I have an application that using the latest NI-CAN that I want to compile for 64-bit Windows. The NI-CAN page says that it supports x64 systems, but that doesn't seem to be the case.
    NI-CAN installs to the x86 program files folder. When I look in \program files (x86)\National Instruments\NI-CAN\MS Visual C as well, I only see a single .lib file. Is this a 32-bit only library or would I this file to link for building both 32 and 64-bit applications?
    Thanks.

    I feel your pain, but XNet is far superior to NI-CAN and you've had almost 6 years to adopt it.  And NI-CAN hasn't seen a new release in over a year and a half.  I wouldn't be surprised if NI-CAN dosn't get any more significant updates.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How to build a array with high sampling rates 1K

    Hi All:
    Now I am trying to develop a project with CRio.
    But I am not sure how to build a array with high sampling rates signal, like >1K. (Sigle-point data)
    Before, I would like to use "Build Arrary" and "Shift Register" to build a arrary, but I found it is not working for high sampling rates.
    Is there anyother good way to build a data arrary for high sampling rates??
    Thanks
    Attachments:
    Building_Array_high_rates.JPG ‏120 KB

    Can't give a sample of the FPGA right now but here is a sample bit of RT code I recently used. I am acquiring data at 51,200 samples every second. I put the data in a FIFO on the FPGA side, then I read from that FIFO on the RT side and insert the data into a pre-initialized array using "Replace Array subset" NOT "Insert into array". I keep a count of the data I have read/inserted, and once I am at 51,200 samples, I know I have 1 full second of data. At this point, I add it to a queue which sends it to another loop to be processed. Also, I don't use the new index terminal in my subVI because I know I am always adding 6400 elements so I can just multiply my counter by 6400, but if you use the method described further down below , you will want to use the "new index" to return a value because you may not always read the same number of elements using that method.
    The reason I use a timeout of 0 and a wait until next ms multiple is because if you use a timeout wired to the FIFO read node, it spins a loop in the background that polls for data, which rails your processor. Depending on what type of acquisition you are doing, you can also use the method of reading 0 elements, then using the "elements remaining" variable, to wire up another node as is shown below. This was not an option for me because of my programs architecture and needing chunks of 1 second data. Had I used this method it would have overcomplicated things if I read more elements then I had available in my 51,200 buffer.
    Let me knwo if you have more qeustions
    CLA, LabVIEW Versions 2010-2013
    Attachments:
    RT.PNG ‏36 KB
    FIFO read.PNG ‏4 KB

  • A look at the latest build of Windows XP 64-bit Edition

    Quote
    Today at GamePC, we're taking a look at the latest build of Windows XP 64-bit Edition, along with performance testing with AMD's Opteron and Intel's "Nocona" Xeon CPU's to see how the OS is shaping up. We're also comparing performance between today's Windows XP w/ SP2 (32-bit) against the upcoming Windows XP Professional X64 Edition release.
    http://www.gamepc.com/labs/view_content.asp?id=xp641218&page=1&cookie%5Ftest=1

    hello,
    i think i am having the same problem as you, but how do you tell if it is 64-bit?  sorry kind of n00bish i guess :S  thanks.

  • HOW to build ruby 1.8.6 package (p287) ???

    Currently distro offers latest ruby version ruby-1.8.7_p72-3
    Some my projects is not compatible with v1.8.7  so I need v1.8.6.
    I have tried to build custom package ( just modify official PKGBUILD file from extra/ruby ABS)
    But it has issue with openssl:
    compiling openssl
    make[1]: Entering directory `/home/wireless/aur/extra/ruby/src/ruby-1.8.6-p287/ext/openssl'
    gcc -I. -I../.. -I../../. -I../.././ext/openssl -DRUBY_EXTCONF_H=\"extconf.h\" -D_FILE_OFFSET_BITS=64 -fPIC -march=i686 -mtune=generic -O2 -pipe -fPIC -c ossl_x509name.c
    In file included from ossl.h:197,
    from ossl_x509name.c:11:
    openssl_missing.h:123: error: conflicting types for 'BN_rand_range'
    /usr/lib/gcc/i686-pc-linux-gnu/4.3.3/include-fixed/openssl/bn.h:420: error: previous declaration of 'BN_rand_range' was here
    openssl_missing.h:124: error: conflicting types for 'BN_pseudo_rand_range'
    /usr/lib/gcc/i686-pc-linux-gnu/4.3.3/include-fixed/openssl/bn.h:421: error: previous declaration of 'BN_pseudo_rand_range' was here
    ossl_x509name.c: In function 'ossl_x509name_initialize':
    ossl_x509name.c:135: warning: passing argument 2 of 'd2i_X509_NAME' from incompatible pointer type
    make[1]: *** [ossl_x509name.o] Error 1
    make[1]: Leaving directory `/home/wireless/aur/extra/ruby/src/ruby-1.8.6-p287/ext/openssl'
    make: *** [all] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    Damn...
    HOW TO BUILD IT?

    ==> Leaving fakeroot environment.
    ==> Finished making: ruby 1.8.6_p287-1 i686 (Sat Mar 21 13:40:10 EET 2009)
    SOLVED with such PKGBUILD:
    # $Id: PKGBUILD 26958 2009-02-14 23:32:24Z jgc $
    # Maintainer: dorphell <[email protected]>
    # Contributors: John Proctor <[email protected]>
    # Jeramy Rutley <[email protected]>
    pkgname=ruby
    pkgver=1.8.6_p287
    _pkgver=1.8.6-p287
    pkgrel=1
    pkgdesc="An object-oriented language for quick and easy programming"
    arch=(i686 x86_64)
    license=('custom')
    url="http://www.ruby-lang.org/en/"
    depends=('gdbm>=1.8.3' 'db>=4.7.25' 'openssl>=0.9.8j' 'zlib>=1.2.3.3' 'readline>=5.2.013')
    makedepends=('tk>=8.5')
    source=(ftp://ftp.ruby-lang.org/pub/ruby/1.8/${pkgname}-${_pkgver}.tar.bz2)
    options=('!emptydirs' 'force')
    md5sums=('80b5f3db12531d36e6c81fac6d05dda9')
    build() {
    cd "${srcdir}/${pkgname}-${_pkgver}"
    ./configure --prefix=/usr --enable-shared --enable-pthread || return 1
    # Fix for conflict with openssl
    sed -i'' -e "123,124s/.*//" ext/openssl/openssl_missing.h
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    #generate the ri docs
    make -j1 DESTDIR="${pkgdir}" install-doc || return 1
    install -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    Thx anyone

  • How to confirm Linux distribution is 32 bit or 64 bit ?

    I installed vm ware work station 6.5 on my laptop. Afterr that i install redhat 5.5 on this vm workstation.
    Now i am not sure that this Linux distribution is 32 bit or 64 bit.
    PLease tell me how i can confirm that .
    PLease reply

    Herb is right, but let me elaborate, the command returns quite a lot of information.
    Here is a typical 32-bit system:
    $ uname -a
    Linux localhost.localdomain 2.6.18-238.5.1.0.1.el5 #1 SMP Tue Mar 1 20:34:56 EST 2011 i686 i686 i386 GNU/LinuxHere is a typical 64-bit system:
    $ uname -a
    Linux localhost.localdomain 2.6.35.11-83.fc14.x86_64 #1 SMP Mon Feb 7 07:06:44 UTC 2011 x86_64 x86_64 x86_64 GNU/LinuxIt is also possible to run a 32-bit kernel on a 64-bit machine, but I don't have one of those handy.

  • How to install driver on a 64 bit system to access a networked printer connected to a 32 bit pc?

    Did a clean install of 64 bit Windows 7 and tried to connect to Deskjet printer connected to a 32 bit Windows 7 system on home network. Said to install from Windows installation DVD but no such animal on DVD. HP error only talked about USB connection and said nothing about network. Hookup worked fine when everything was 32 bit.
    This question was solved.
    View Solution.

    Sorry, that wasn't clear at all. I would use the 64 bit machine to go on the internet and download the latest 64 bit driver for the printer. Just run the setup on the 64 bit machine and I believe it will give you the option to search for a shared printer.  You must use the 64 bit version of the printer driver on the 64 bit machine.  The driver is just telling the 64 bit machine how to communicate with the printer no matter where it is.
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may click on the white star in the "Kudos" button for any helpful post to give that person a quick thanks. These feedback tools help keep our community active, so you receive better answers faster.

  • How to build a Oracle style Web site

    Dear All,
    (Not sure whether this question should be this sub-site or not.)
    My question is how to build a Oracle style Web site, what technology should be use.
    Example Site: [http://www.orapub.net/ebs/index.htm|http://www.orapub.net/ebs/index.htm]
    This web site style is like Oracle Enterprise Manager.
    Thanks a lot
    Pan

    You can use Oracle Webcenter or just Oracle ADF to build a Oracle Enterprise Manager kind of Website.
    See details here -
    http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/ria_application/developriaapplication_long.htm
    http://www.youtube.com/watch?v=iE2zTNhlvy8

  • How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000

    Post Author: ltkin
    CA Forum: WebIntelligence Reporting
    Hi,
    How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000 ?
    Regards,

    Hi ltkin,
    Unfortunately, it is not possible in Xir2 to create Webi reports from stored procedures.
    Webi reports can only be created from Universe. So in Business Objects XIR3 we can create a special universe that enables Web Intelligence user's to access stored procedures residing in the database. This is the only way that Web Intelligence user's can access stored procedures.
    Please let me know if the above information helps.
    Regards,
    Pavan

  • I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have manged to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the pr

    I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have managed to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the projects, what I would like is a piece of text  or icon that when you roll over it and then click a separate window pops up with additional information in, once finished reading the info you can then click to close the box, any advice on how to do this?

    The best way to do what you're asking is with the Composition widget. Start with the Tooltip preset, which, by default shows the info on rollover. You can change the option to show on click, which is what you're after. You can also add the close button or have the info disappear on rollout.
    David

  • How to build the  FM data I_header and I_orgdata

    hi all,
    I’m working on the conversion program for AVL using the following function modules
    BBP_PD_AVL_GETLIST
    BBP_PD_AVL_CREATE
    BBP_PD_AVL_UPDATE
    BBP_PD_AVL_SAVE
    In the function module BBP_PD_AVL_CREATE , how to build the FM data  I_HEADER and I_ORGDATA.
    I'm giving 3 input in Export parameter in BBP_PD_AVL_GETLIST  and E_pdlist should contain data .
    but e_pdlist is not getting data...any suggestion..
    after execution it was showing  "Buffer table is not up to date"
    with regards,
    P.lokesh

    Hi Lokesh,
    We are also encountering same problem.
    How did you solve your problem?
    Would really appreciate your help.
    Thanks,
    Kezia

  • How to build a search engine in the database?

    Hi there,
    say I have 3 tables:
    1. Table_empl: idEmpl, fname, lname, dob...
    2. table_department: idDpartment, idEmpl, departmentName, section...
    3. table_fligths: idFlight, idEmapl, departure date, destination, carrier...I would like to provide the end-user a text box (in my GUI) where he can write whatever he would like to get info about. If, for example, he'll write: british-airways, I expect the system to search everything in the db that matches this input.
    Question: How can I design such a search engine that retrieve information from every possible table in the db with reference to every column.
    thanks for any pointers

    thanks darted for your reply. so what do you recommend? should i give the end user all names of tables and columns and ask him to choose from the list and than build a query based on that?
    this is optional but i'd rather have one exec button and to return all possible results from the db. if (in the example i provided) it found 'british airways' in the carrier - than that a result. if it founds 'british' in the lname of table_emple - that's another result. so the output should be something like:
    found 2 matches:
    1. british airways, 10/10/2006, LHR
    2. British, John, 12/01/63,
    any idea how to build that?

  • How to build a query based on(UNION) 3 vendor InfoObject

    Dear Experts:
    I have a requirement to build one query based on 3 vendor InfoObjct: 0VENDOR + 0VEN_COMPC + 0VEN_PURORG.
    I tried to build a multiprovider upon these 3 infoobjects, but when I Identify(Assign) the key for each InfoObject, supposely there should be 3 InfoObject for me to check (0VENDOR, 0VEN_COMPC and 0VEN_PURORG) so that I can UNION these 3 infoobjects together on vendor number. But since the reference infoobject of these 3 vendor master data is different, I can not check the 3 together.
    Can anybody let me know how to build that query? I only need vendor number show once, and the attributes of 0VEN_COMPC and 0VEN_PURORG can be union to 0vENDOR.
    Any post would be appreciated and thank you all in advance!
    Best Regards!
    Tim

    Hi,
    you can create a link between the vendor objects itself, means link 0vendor with 0ven_compc and 0ven_purorg. This should give you a list of all vendors multiplied with the comp codes multiplied with the purch. org. May be here it is possible to create another link between a attribute (eg. comp_code of 0ven_purorg with comp_code of 0ven_compc). In case it is not possible you need to add this link information somehow. Another option might be to create 2 queries. One on a infoset of 0vendor and 0ven_purorg and another one on 0vendor and 0ven_compc.
    regards
    Siggi

  • How to build a server?

    Hey,
    Can anybody tell where I can find online tutorials on how to build a server using java?
    Thanks

    @bender02
    Thx very much for your link. This ready-made solutions can help me to save a lot of otherwise wasted time. QNAP's NAS solution looks good and this Bubba|Two (though it doesn't have mirroring via raid1) is also very attractive.
    I am very interested in what server solution you use.
    My planned server is really for local network uses only. It should serve for file related purposes like file sharing over the network, backup (maybe with raid1) and a centralized data storage.
    I think I will settle with one of this commercial and ready-for-use systems. The thought to tinker around and to make everything by yourself is very temptating but I am getting weary of it. And I dont have the time to tinker around as I have to study enormous amounts
    If I did everything by myself I would have to learn how to handle ssh and rsync, which software is suited for what purpose, how I can configure each software to fit my needs and at last I would have to work on some scripts or search for them to achieve a workaround. And this takes for weeks and months, time that I can't afford -.- sometimes a desktop alone can be enough work to do, when I want everything to be "perfect" and "secure". In the past the guys worked on their motorcycles and now they work on their computers, hehe
    So if nobody has a very good reason why I should tinker around, then I'll buy some ready-for-use stuff.
    Last edited by hauntergeist (2009-04-11 20:55:56)

Maybe you are looking for

  • Getting ORA-01429 error while changing character set

    When I am changing character set from WE8DEC to AL32UTF8, I am getting ORA-01429 error SQL> ALTER DATABASE CHARACTER SET INTERNAL_USE AL32UTF8 ; ALTER DATABASE CHARACTER SET INTERNAL_USE AL32UTF8 ERROR at line 1: ORA-00604: error occurred at recursiv

  • Webutil upload file problem

    I use webutil_file_transfer.Client_To_AS_With_Progress( c:\temp\mytxt.txt, '\\192.234.43.233\d$\myFolder' ,'Upload to Application Server in progress' ,'Please wait' ,false ,null); but I can't upload the file it always returns boolean false

  • PS Elements 6.0, Vista: Moving Files

    I need to move my massive set of files off of my computer and onto an external drive (I need the space on my computer hard drive for work). I have all the files backed up already on a third hard drive. Here is the problem. 1) In order to not lose the

  • CR 8.5 to CR2008 migration problem

    I want to move from CR8.5 to CR2008.   I downloaded the trial and some reports will not work.  I get the following error: Failed to retrieve data from the database.  Details:  42000[TopSpeed Corp,][TopSpeed ODBC Driver] Expected lexical element not f

  • 2nd hard drive on Mavericks

    I recently installed a 2nd hard drive, it shows on the desktop I installed an earlier version OS and would like to use it. Problem is when I go to start up disc to select the 2nd drive all I am seeing is the original drive, I am obviously doing/done