Install archlinux from another linux system...

I have a dedicated server and I want to install archlinux in it.
I have the option to do a netboot to access to my server from the "outside" and I installed debian several times usind debootstrap from the netboot.
I've tried to do the same with arch following this guide http://wiki.archlinux.org/index.php/Ins … ting_Linux , but I've stumbled upon some problems...
1) I can't copy pacman binaries to the bin folder, since it is read-only
2) when I try to run pacman from its temp folder I get this:
root@rescue:/# /tmp/archlinux/usr/bin/pacman.static -Sy base -r /newarch/
:: Synchronizing package databases...
error: failed retrieving file 'core.db.tar.gz' from mirror.lividpenguin.com : No address record
error: failed to update core (No address record)
error: failed retrieving file 'extra.db.tar.gz' from mirror.lividpenguin.com : No address record
error: failed to update extra (No address record)
error: failed retrieving file 'community.db.tar.gz' from mirror.lividpenguin.com : No address record
error: failed to update community (No address record)
error: failed to synchronize any databases
What should I do?
Thanks in advance.

http://wiki.archlinux.org/index.php/Ins … ost_system
you have to install the required files, like mirrorlist to /etc/pacman.d/mirrorlist
Last edited by wonder (2009-11-27 20:31:42)

Similar Messages

  • Installing from another linux but without USB drive nor CD ROM

    Hello,
    I own a CL56 (laptop) with a dual boot "windows legacy" / "ubuntu hardy" / ...
    on the remaining space I'm trying to install Archlinux (for a "trial" boot system )
    My clamshell is far too old to boot on USB drive and my CD ROM player just melt last week, so I have to install it from Ubuntu (or windows).
    So I installed Unetbootin and ...
    - dlded 2009.08/archlinux-2009.08-netinstall-i686.iso
    on Unetbootin
    - chose (x) diskimage [ISO] /path/to/archlinux-2009.08-netinstall-i686.iso
    - selected Type : HDD, Drive : /
    rebooted and :
    Got a kernel panic and a stupid error about a CD ROM not found !
    forii, wikis etc. seems to have contradictory advices, that's why I'm going back to the source.
    But the real question is not : how to use unetbootin but : how to install archlinux from another distrib (ie ubuntu)
    Last edited by yoochan (2009-09-28 17:33:27)

    trying this http://wiki.archlinux.org/index.php/Ins … ting_Linux

  • [SOLVED] Install archlinux from a archlinux system -system not booting

    Hey there,
    I am trying to install a fresh archlinux system from within an existing archlinux installation. -- I really hope to get help here, I am clueless.
    Theoretically this could be posted in the newby section but I think my problem is more special and it's not my first archlinux installation at all.
    The facts:
    I am renting an ovh server (kimsufi.com) and I want to install archlinux without their special ovh features.
    The rescue system (debian) don't let me install archlinux (pacstrap error -> "mount: mount point /mnt/dev/pts does not exist"). Same as here -> https://bbs.archlinux.org/viewtopic.php?pid=1231074
    Because of that I install archlinux over the webinterface and then I want to install archlinux on another partition.
    The problem:
    The archlinux system from ovh is working, it is booting fine. My freshly installed system looks to don't boot at all.
    There are no logs in /var/log (no dmesg etc.) so I think that it doesn't past grub.
    I am clueless what I can do to get it to boot.
    What I have tried...
    "Pretty everything" I would say but this doesn't help anyone.
    pacman -Syu linux mkinitcpio grub <- to be sure everything is installed.
    -- Openssh is installed and configured, network is configured, fstab is correct, openssh and netctl is on autostart with systemctl.
    mkinitcpio -p linux <- everything ok
    grub-mkconfig -o /boot/grub/grub.cfg <- that's also fine
    grub-install --recheck /dev/sda <- no problems so far
    That's all, I hope I haven't forgotten anything.
    Partitions:
    Device Boot Start End Blocks Id System
    /dev/sda1 4096 526335 261120 83 Linux <--- /boot of the ovh system
    /dev/sda2 526336 19398655 9436160 83 Linux <--- / of the ovh system
    /dev/sda3 * 19398656 20445183 523264 83 Linux <--- /boot of the fresh system
    /dev/sda4 20445184 26736639 3145728 5 Extended
    /dev/sda5 20447232 26736639 3144704 83 Linux <--- / of the fresh system
    The bootflag is ignored because grub is installed into MBR.
    Please post any ideas, I don't know what I may have forgotten.
    Last edited by lookingaty (2014-02-14 21:24:39)

    Since it's a server by ovh/kimsufi, I am not able to see what's going on with grub. (I have no idea how to diagnose that problem.)
    The grub.cfg seems to be correct.
    I tried it again without an extended partition, every partition are primary ones. Still no logs.
    Device Boot Start End Blocks Id System
    /dev/sda1 2048 526335 262144 83 Linux <--- /boot of both systems (only grub.cfg changes)
    /dev/sda2 526336 19398655 9436160 83 Linux <--- / of the ovh system
    /dev/sda3 19398656 25690111 3145728 83 Linux <--- / of the fresh system
    At the moment the grub.cfg points to the OVH archlinux, not the freshly installed one.
    I have modified that file by hand to OVH archlinux (sda2; UUID changed of course). OVH archlinux boots.
    I can run grub-mkconfig -o /boot/grub/grub.cfg with the fresh system in arch-chroot again but it won't help.
    But I can still do this and post it here.
    My grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 bdf22a6f-cc53-41bc-a539-681a16bad2d2
    else
    search --no-floppy --fs-uuid --set=root bdf22a6f-cc53-41bc-a539-681a16bad2d2
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_archlinux ###
    menuentry "Arch Linux pkg-linux kernel" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 057c8a71-6eab-4093-80e6-3191386697ff
    else
    search --no-floppy --fs-uuid --set=root 057c8a71-6eab-4093-80e6-3191386697ff
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /vmlinuz-linux root=UUID=bdf22a6f-cc53-41bc-a539-681a16bad2d2 rw quiet
    echo 'Loading Arch Linux pkg-linux kernel initramfs ...'
    initrd /initramfs-linux.img
    menuentry "Arch Linux pkg-linux kernel (fallback initramfs)" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 057c8a71-6eab-4093-80e6-3191386697ff
    else
    search --no-floppy --fs-uuid --set=root 057c8a71-6eab-4093-80e6-3191386697ff
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /vmlinuz-linux root=UUID=bdf22a6f-cc53-41bc-a539-681a16bad2d2 rw quiet
    echo 'Loading Arch Linux pkg-linux kernel fallback initramfs ...'
    initrd /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_archlinux ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-bdf22a6f-cc53-41bc-a539-681a16bad2d2' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 057c8a71-6eab-4093-80e6-3191386697ff
    else
    search --no-floppy --fs-uuid --set=root 057c8a71-6eab-4093-80e6-3191386697ff
    fi
    echo 'Loading Linux linux ...'
    linux /vmlinuz-linux root=UUID=bdf22a6f-cc53-41bc-a539-681a16bad2d2 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-bdf22a6f-cc53-41bc-a539-681a16bad2d2' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-bdf22a6f-cc53-41bc-a539-681a16bad2d2' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 057c8a71-6eab-4093-80e6-3191386697ff
    else
    search --no-floppy --fs-uuid --set=root 057c8a71-6eab-4093-80e6-3191386697ff
    fi
    echo 'Loading Linux linux ...'
    linux /vmlinuz-linux root=UUID=bdf22a6f-cc53-41bc-a539-681a16bad2d2 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###

  • Instal imac from Another mac mini

    instal imac from Another mac mini
    whit 1394

    Please also note that this forum is for questions about Apple Remote Desktop, Apple's software for managing networked Mac systems. If you are not asking about Apple Remote Desktop, I'd suggest you ask for assistance in the iMac or Mac OS X forums.
    Regards.

  • How to install archlinux from pendrive/usb?

    I downloaded archlinux-2010.05-core-i686.iso.
    I unmounted the pendrive.
    Would i format the pendrive with ext3/ext4 or fat32 or fat16 format?
    After that i would do dd if=archlinux-2010.05-core-i686.iso of=/dev/sda
    If i use unetbootin, should i format the pendrive with ext3/ext4 or fat32 or fat16 format?
    Has anyone used unetbootin to install archlinux from pendrive/usb?

    jasonwryan wrote:I'm pretty sure all of your questions are answered on the wiki: http://wiki.archlinux.org/index.php/Ins … lash_drive
    I did:
    dd if=arch.iso of=/dev/sda
    But after setting bios boot option to usb and reboot,it's not booting from usb.
    What's the problem?
    I get the normal grub menu.
    Last edited by cola (2010-06-17 09:49:34)

  • Boot / install os from another machine rather than cd drive?

    Hi,
    My powerbook's CD/DVD drive has stopped working. I have an external CD/DVD reader/writer so I don't want to replace the broken internal CD/DVD module. But what happens when I need to install a new OS or I get drive problems and need to boot from another system?
    Is it possible to use another computer instead of buying a new CD/DVD drive and somehow be able to do the same sort of thing that you can do when you boot up from a CD?
    TIA, John.

    Some external CD/DVD reader/writer are capable of booting the computer from an OS X install disc. Although there is alternative method for doing so, you need to be able to boot from your current OS X install disc in order to run Disk First Aid repair on the hard drive.
    If your external CD/DVD reader/writer does not support booting your Mac from an OS X install disc and your Mac has Firewire ports and supports Firewire Target Disk mode, you can connnect another Mac with a Firewire port that includes a working CD/DVD module and also supports Firewire Target Disk mode and install a new OS on your Mac from this Mac.
    http://docs.info.apple.com/article.html?artnum=58583

  • Is Teststand able to install and implement on Linux system

    Hi,
    I was using Testsand on windows before,
    Just want to know that if NI Teststand able to install and implement on Linux/Unix system?
    Thanks,
    Solved!
    Go to Solution.

    Since TestStand is an ActiveX Server and i am not aware of any well written ActiveX wrappers for Linux, i doubt that it will work.
    Officially, TestStand is only supported for Windows. So if you achieve by any what-so-ever-open-source-code to install and run TestStand on Linux, you wont get any support from NI if anything unexpected happens.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Can I re-install Logic from another machine ?

    since , I have a CPU and a laptop , and I am on travel and I would like to use Logic pro with my macbook pro . can I re-install Logic from the Laptop .?

    Pondini wrote:
    Why is it in a disk image?   (I use CarbonCopyCloner, not SuperDuper).
    I call it that because I thought that was what SD termed it.  When I open any of the backup files, they mount like a disk image so, to me, that's what it is.  Sorry if my terminology confused things.
    Pondini wrote:
    Can you boot your Mac from the drive?  If so, it's just a normal clone, not a disk image.
    I believe so.  (However, it's a ML system and all the other computers in the house, except the dead one, still run Snow Leopard.)  In any case, the file is a sparse bundle.
    Pondini wrote:
    If so, your solution is easy -- use Setup Assistant when the new Mac first starts up.  Select From Another Disk when asked if you want to Transfer your data.  See Using Setup Assistant on Mountain Lion or Lion for the gory details. It can transfer everything but OSX -- apps, user accounts and data, settings, etc.  It's similar to Migration Assistant, but avoids some possible problems.
    That sounds ideal.  However, my Master Plan ran into a snag late yesterday.  I tried to create a backup (using SD) to get the latest stuff into an image, but SD gave an error message when it encountered one of the files (the Parallels app, which happens to be the very app that we're most keen to migrate over intact.  The error message (using AAA and BBB in place of the full paths) read:
    Error copying /Volumes/AAA to /Volumes/BBB of type 8 due to error 7: Argument list too long
    The file in question is one of the files internal to the Parallels app itself
    (Parallels Desktop.app/Contents/MacOS/launcher)
    so I don't know if I have options to work around this and have SD go to completion.  SD aborted when it hit that error.
    I have a couple of days to play around with this, to try to get a more recent backup.  Otherwise, I'll have to ponder the alternatives.
    Thanks for the good discussion and tips!

  • Kicking off Background Job from Another SAP system

    Hi,
    Does anybody know how to kick off a background job from a separate SAP system?? 
    i.e I have a job on our CRM system that is dependant on a Job finishing from our ECC6 system first.
    Does anyone know how to do this?  I know I might be able to use events, is there anything else I should be making use of??
    Many Thanks

    Hi Daniel,
    Guess there is one more solution. In system A write a report (let us name it X) that would trigger a job in system B through an RFC call.
    Now in System A create a job with 2 steps. First step would be normal one, the second one for report X. Only when step 1 is over would step 2 start. So indirectly end of the existing Job A would trigger the required Job B.
    Regards.
    Ruchit.

  • How to Install ArchLinux from harddriver???

    I have downloaded iso image files from Internet. I want to install it from hard driver. How to do it? and where are the vmlinuz and initrd files?

    I suppose you can do:
    mount -o loop /path_to_.iso /mnt/cdrom
    but this would have to be  on a secondary HDD otherwise I'm not sure of the outcome, since you would be writing to the same target as your source.
    All files you need will be in the iso.
    R

  • Problem installing ArchLinux from hdd partition

    I have a SATA drive mounted on a VIA Epia motherboard, but no CD drive, which is why I install directly from hdd.
    Currently I have Zenwalk running, which only has Lilo (no grub even in the repos!!!). I copied to contents of the install ISO to a new ext3 partition and used the following entry in lilo (taken from this guide):
    image=/root/tmp/isolinux/vmlinuz
    label=ArchInstall
    initrd=/root/tmp/isolinux/initrd.img
    append="root=/dev/sda4 BOOTMEDIA=cd"
    But it doesn't boot properly. It says:
    ::Initramfs Completed - control passing to kinit
    IP-config: no devices to configure
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    kinit: Mounted root (ext3 filesystem) readonly.
    kinit: init not found!
    Kernel panic - not syncing: Attempted to kill init
    ..and before all that it complains that it doesn't find anything new in /config and /packages, but these directories aren't suppose to exist, I guess, because they don't on the original iso?
    Anyways, it looks like it's mounting /dev/sda4, but then dies because the init part isn't found. I had a problem with lilo warning me that the init ram image was too large, but then I added the "large-memory" option to lilo.conf and it stopped complaining.
    Thanks for reading,
    Benjamin

    I found a solution!
    Aparently syslinux is very good for booting anything made with isolinux. I think it's pretty universal. So what you do is simply to mount the iso, copy the contents to a fat 16 partition, rename the isolinux.cfg to syslinux.cfg and then run syslinux on the partition. It's described on this blog:
    http://www.elfenbeinturm.cc/2007/08/09/ … kpad-x60s/
    / Benjamin

  • Install Solaris from another OS via network - How ?

    I'd like to use a BSD machine as an install server for a machine that doesn't have a CD. On the BSD machine is an iso image of the Sol 10 DVD from SUN's website. It's mounted via loopback device.
    I'd like to know which files are necessary to boot and which possibilties exist to access the rest of the files - can the installer use http ?

    You need to make the BSD machine an ARP/RARP server and TFTP server. As an ARP/RARP server it will respond to the Sun system when it asks to convert its MAC address to a hostname/IP address. The TFTP function will allow the BSD system to send the boot kernel (which you also need to procure) to the Solaris system. You need to have the ISO image shared out through NFS as well.
    Of course, this doesn't include all of the other necessary work : profiles, boot parameters, etc.
    As to how to specifically to this, I'm not sure. I have seen documents on the web from people who have done this, but I've never touched BSD. If you can get BSD to be an appropriate ARP/RARP and TFTP server, you'll be most of the way there as the rest should be done by the Sun system through NFS. It just needs to ARP/RARP and kernel (through TFTP) to get it to that point.
    Of course, if the Sun system has a SCSI port you could buy a cheap, external SCSI drive on eBay and plug it in. :)

  • How do I install updates from another computer?

    Got a macbook, and a windows.
    How do I install updates for my macbook (software update.app updates) from my windows computer? Can i somehow download.. example, if i have snow leopard 10.6.1, can i then download an update on windows that updates my mac to 10.6.8?

    Okay, cool. Is it always "Combo updater" or "Update Combined" that i should download?
    I downloaded one of the 10.6.8 updates from apple.com, and it said that i needed 10.6.7 before i installed 10.6.8.
    But I got paritioned HD's, one lion and one snow leopard, When lion 10.7.1 or 10.7.2 comes out, can I then download the updates on windows and transfer that update to mac and update just cool?
    And how do i stay up-to-date with this?
    And other software updates, such as fixes in the trackpad, and such random stuff (not itunes, mail, automator, etc updates, only Main OS updates..) How do i stay up to date with that?

  • Reinstalling Tiger using a install disc from another mac?

    I have 2 macbook pros. A brand new one with the Santa Rosa chip and 1 with the older chip. Can I use the disc that came with the new mac with the newest version of OS and other programs to update the older macbook pro?
    Thanks.

    rick.pearl wrote:
    Does this mean that I shouldn't use the Generic Tiger install disc to reformat the macbook pro either? Would I be missing drivers or anything by doing this?
    Well, if by "Generic" you mean the boxed retail version of Tiger, you wouldn't be able to boot from it. No boxed retail Tiger has the Intel software or drivers necessary to boot an Intel Mac. Only the discs shipped with Intel CPUs have the Intel OS on them.
    Presumably this is not the case with the Leopard discs, which must have the code for both architectures...
    charlie

  • Which would i download to install archlinux from pendrive?

    http://www.archlinux.org/download/

    cola wrote:But at the start of this year i got something like arch.img for pendrive.
    There used to be separate files for usb and cd, but not anymore.
    cola wrote:What's core-dual.iso?
    ftp://ibiblio.org/pub/linux/distributio … o/2010.05/
    Also on the page you listed had a link to instructions
    readme wrote:Both come in i686, x86_64 or dual variant. The latter contains both and lets you choose
    an architecture at boot.

Maybe you are looking for

  • Hooking Up Scanner to Photoshop

    I used to be able to find my scanner's name in older versions of Photoshop under Import, but for CS5, I don't see it anymore. I can only access the scnner through WIA Support. Is there anyway to fix this? I know it has something to do with TWIAIN, bu

  • Sound Blaster Audigy

    Hello, I have brought this Sound Blaster Audigy sometime ago and it makes a screaming horrible noise when i try and talk on ventrilo. I have uninstalled multiple times, installed drivers, iv done everything i can possibly think of. the current driver

  • Syncing audiobook between iPhone and MacBook

    Hello, is it somehow possible to sync the current position of an audiobook between MacBook and iPhone? E.g. if I listen to an audiobook on my MacBook and want to continue on my iPhone I need a way to sync the current time. Does anyone know, if there'

  • I need help unshuffling my songs on my shuffle!!! please help!!! :' (

    My ipod shuffle is autofilling, but when I try to listen to the songs, they are being shuffled. And I DO NOT have it on shuffle mode. I looked on my itunes and under the songs on my shuffle, and they are autofilled on it shuffled! I looked everywhere

  • SAP SSO using CUA for Transport Express implementation

    I am implementing Transport Express application as part of a larger project on a Dual Track environment. The business want TE to be integrated into the SSO landscape. This is where I am having difficulties. I need advice from anyone having implemente