[SOLVED] printenv output differs from settings in /etc/profile

Hi, I just noticed that
printenv PATH
gives me something else (just '/usr/bin') than is defined in /etc/profiles, which is
PATH="/usr/local/sbin:/usr/local/bin:/usr/bin"
export PATH
I'm using fish but there is no entry about variables in ./config/fish/config.fish.
Thanks for your help!
Last edited by ysetdng (2014-09-16 23:05:56)

Let /etc/login.defs be, it isn't supposed to have the full PATH.
Read https://wiki.archlinux.org/index.php/Fi … leshooting
Arch wiki wrote:
If you decide to set fish as your default shell, you may find that you no longer have very much in your path. You can add a section to your ~/.config/fish/config.fish file that will set your path correctly on login. This is much like .profile or .bash_profile as it is only executed for login shells.
if status --is-login
set PATH $PATH /usr/bin /sbin
end
Note that you will need to manually add various other environment variables, such as $MOZ_PLUGIN_PATH. It is a huge amount of work to get a seamless experience with fish as your default shell.

Similar Messages

  • DIscoverer output different from toad

    Hi
    I have an apps mode EUL (Discoverer 10.1.2.2 , EBS R12 and Oracle 11g database)
    I have a custom folder for onhand material analysis.
    The output will be something like below
    Item Onhand Batch Start Date Requirement for this batch Net-Onhand
    ABC 1000 22-Jul-2009 100 900
    ABC 900 24-Jul-2009 50 850
    ABC 850 26-Jul-2009 25 825
    And so on sorted by item and batch start date
    The purpose is to view demand vs availability for a time span,
    And if an item satisfies all the demand (final net-onhand >0) it need not be shown in the report.
    The custom folder i wrote worked alright during testing for 5 items and date range of 6 months.
    However, it is showing wrong results when run for all items in an org for a given planner.
    This when the sql itself when run in toad does work as expected.
    Here is my sql. The conditions commented out are applied at the workbook. What could be reason for the difference in the query output in discoverer vs toad.
    SELECT *
    FROM (SELECT tmp1.magasin, tmp1.of_commande, tmp1.composant,
    tmp1.composant_desc, tmp1.date_demandee, tmp1.statut_of,
    tmp1.comment_scheduling, tmp1.date_debut_of, tmp1.unite,
    CASE
    WHEN tmp1.prev_qty_demandee = 0
    THEN tmp1.on_hand
    ELSE LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    END onhand,
    CASE
    WHEN tmp1.rk = 1
    THEN NVL
    (tmp1.quantity_pending_lot,
    0
    ELSE 0
    END quantity_pending_lot,
    tmp1.qty_demandee,
    CASE
    WHEN tmp1.prev_qty_demandee = 0
    THEN DECODE (SIGN (tmp1.on_hand - tmp1.qty_demandee),
    1, 0,
    tmp1.on_hand - tmp1.qty_demandee
    ELSE DECODE
    (SIGN
    ( LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    - tmp1.qty_demandee
    1, 0,
    LAG (tmp1.current_onhand, 1) OVER (PARTITION BY tmp1.composant ORDER BY tmp1.date_debut_of,
    tmp1.material_detail_id)
    - tmp1.qty_demandee
    END qty_manquante,
    tmp1.date_de_blocage, tmp1.num_of_pos,
    tmp1.date_de_livraison_reele, tmp1.inventory_item_status_code,
    tmp1.inventory_item_status,
    LAST_VALUE (tmp1.current_onhand) OVER (PARTITION BY tmp1.composant)
    final_onhand,
    tmp1.batch_status, tmp1.organization_id, tmp1.planner_code
    FROM (SELECT tmp.*,
    LAG (tmp.qty_demandee, 1, 0) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of ASC NULLS LAST)
    prev_qty_demandee,
    tmp.on_hand
    - SUM (tmp.qty_demandee) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) current_onhand,
    SUM (tmp.qty_demandee) OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) running_qty_demandee,
    RANK () OVER (PARTITION BY tmp.composant ORDER BY tmp.date_debut_of,
    tmp.material_detail_id) AS rk
    FROM (SELECT gbh.organization_code magasin,
    gbh.organization_id,
    gbh.batch_no of_commande,
    msi.segment1 composant,
    msi.description composant_desc,
    gmd.material_requirement_date date_demandee,
    gbh.batch_status,
    gbh.batch_status_desc statut_of,
    gbh.attribute4 comment_scheduling,
    gbh.plan_start_date date_debut_of,
    gmd.dtl_um unite,
    (SELECT SUM
    (primary_transaction_quantity
    FROM mtl_onhand_quantities_detail ohq
    WHERE ohq.inventory_item_id =
    gmd.inventory_item_id
    AND ohq.organization_id =
    gmd.organization_id
    AND ohq.inventory_item_id =
    msi.inventory_item_id
    AND ohq.organization_id =
    msi.organization_id
    AND NVL
    (xxbpt_or_util_pkg.get_lot_status
    (ohq.lot_number,
    gmd.inventory_item_id,
    gmd.organization_id
    'QA'
    ) IN ('QA', 'PRL')) on_hand,
    (SELECT SUM
    (primary_transaction_quantity
    FROM mtl_onhand_quantities_detail ohq
    WHERE ohq.inventory_item_id =
    gmd.inventory_item_id
    AND ohq.organization_id =
    gmd.organization_id
    AND xxbpt_or_util_pkg.get_lot_status
    (ohq.lot_number,
    gmd.inventory_item_id,
    gmd.organization_id
    ) = 'ENCOURS')
    quantity_pending_lot,
    CASE
    WHEN gmd.plan_qty
    - NVL (gmd.actual_qty, 0) > 0
    THEN gmd.plan_qty
    - NVL (gmd.actual_qty, 0)
    ELSE 0
    END qty_demandee,
    NULL date_de_blocage, NULL num_of_pos,
    NULL date_de_livraison_reele,
    msi.inventory_item_status_code,
    mis.inventory_item_status_code_tl
    inventory_item_status,
    msi.planner_code, gmd.material_detail_id
    FROM gme_batch_header_vw gbh,
    gme_material_details gmd,
    mtl_system_items msi,
    mtl_item_status_vl mis
    WHERE gbh.batch_id = gmd.batch_id
    AND gmd.inventory_item_id = msi.inventory_item_id
    AND gmd.organization_id = msi.organization_id
    AND gmd.line_type = -1 -- Ingredient
    --AND gbh.organization_code = 'LYO'
    -- AND gbh.batch_no = '350737'
    --AND gbh.batch_status_desc IN ('En attente', 'En-cours de fabrication')
    --AND gbh.batch_status_desc IN ('Pending', 'WIP')
    AND gbh.batch_status IN (1, 2)
    AND msi.inventory_item_status_code =
    mis.inventory_item_status_code
    --AND msi.segment1 IN
    -- ('0036814403', '0036822635', '0037812790')
    -- AND msi.planner_code = '99011'
    ORDER BY msi.segment1, gbh.plan_start_date) tmp
    WHERE tmp.qty_demandee > 0) tmp1) tmp2
    WHERE tmp2.final_onhand < 0

    Hi Ariv,
    Hmm, only other difference I've had is when you set your NLS settings in SQL*Developer / Oracle Client (TOAD) and get no rows in _VL views etc.
    But it sounds like your issue is combining folders in the discoverer BA ... perhaps there's a wayward join?
    Have you tried running/comparing the SQL generated from the workbook/sheet itself using View SQL in Discoverer (or sql trace)?
    PS. Yes a few posts on the blog still going strong, been a tad busy in the last few months, so no time to post new stuff :-( but plenty coming up once I get a chance :-)
    Regards,
    Gareth

  • Output differs from Printpreview and Spool ?

    Hello All,
    Let me tell u my actual problem.
    1. When I see the output of the PO in the Print Preview it's coming perfectly.
    But when I see the output of the same PO in the Spool it's not the same.
    2. For this reason I want to Debug the PO in both the cases i.e Print Preview case and Spool Case.
    3. When I'm trying to debug in the Print Preview case it's going into the script and I'm able to check the values. But that'S not my Problem .
    My Problem is with the Spool case bcoz I'm getting a different output when compared to that of the Print Preview Output.
    4. SO I want to debug the script whn I choose the Spool Option .
    i.e Path is : ME22N --> GIve a PO --> Click on Messages Tab --> Select any of the Processed Record and Press Repeat output and --> SAVE.
    Before pressing the SAVE Button I pressed /h and started to debug .
    But It's not going into the script at all.Instead it is going to some other standard program and creating a spool request.
    5. My first Qn is : When viewed from the Spool will it go into the script or not ?
    My second Qn is : Hw to debug the script when we are seeing the output from a SPOOL i.e from the Path :
    ME22N --> GIve a PO --> Click on Messages Tab --> Select any of the Processed Record and Press Repeat output and --> SAVE.
    Hope I'm clear now in my Explanation.
    Regards,
    Deepu.K

    It seems to be an issue with the Output Device. For the Spool, try to print on a different printer/ or the default SAP output device (SAPWIN device type).
    If the output comes correctly, then the issue is with the Driver.
    Regards,
    abhishek

  • [SOLVED] ls colors different from tab completion colors

    I've been configuring the colored output of ls and I've got ls colors set, but the colored output from tab completion is different sometimes making it hard to read the files/directories.  Does anyone know where the file that controls the tab completion colors?
    http://i.imgur.com/GwByh.png is a picture showing the issue.
    .dir_colors
    # Configuration file for dircolors, a utility to help you set the
    # LS_COLORS environment variable used by GNU ls with the --color option.
    # Copyright (C) 1996, 1999-2011 Free Software Foundation, Inc.
    # Copying and distribution of this file, with or without modification,
    # are permitted provided the copyright notice and this notice are preserved.
    # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
    # slackware version of dircolors) are recognized but ignored.
    # Below, there should be one TERM entry for each termtype that is colorizable
    TERM Eterm
    TERM ansi
    TERM color-xterm
    TERM con132x25
    TERM con132x30
    TERM con132x43
    TERM con132x60
    TERM con80x25
    TERM con80x28
    TERM con80x30
    TERM con80x43
    TERM con80x50
    TERM con80x60
    TERM cons25
    TERM console
    TERM cygwin
    TERM dtterm
    TERM eterm-color
    TERM gnome
    TERM gnome-256color
    TERM jfbterm
    TERM konsole
    TERM kterm
    TERM linux
    TERM linux-c
    TERM mach-color
    TERM mlterm
    TERM putty
    TERM rxvt
    TERM rxvt-256color
    TERM rxvt-cygwin
    TERM rxvt-cygwin-native
    TERM rxvt-unicode
    TERM rxvt-unicode-256color
    TERM rxvt-unicode256
    TERM screen
    TERM screen-256color
    TERM screen-256color-bce
    TERM screen-bce
    TERM screen-w
    TERM screen.rxvt
    TERM screen.linux
    TERM terminator
    TERM vt100
    TERM xterm
    TERM xterm-16color
    TERM xterm-256color
    TERM xterm-88color
    TERM xterm-color
    TERM xterm-debian
    # Below are the color init strings for the basic file types. A color init
    # string consists of one or more of the following numeric codes:
    # Attribute codes:
    # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
    # Text color codes:
    # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
    # Background color codes:
    # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
    #NORMAL 00 # no color code at all
    #FILE 00 # regular file: use no color at all
    #RESET 0 # reset to "normal" color
    DIR 01;34 # directory
    LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
    # numerical value, the color is as for the file pointed to.)
    MULTIHARDLINK 00 # regular file with more than one link
    FIFO 40;33 # pipe
    SOCK 01;35 # socket
    DOOR 01;35 # door
    BLK 40;33;01 # block device driver
    CHR 40;33;01 # character device driver
    ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
    SETUID 37;41 # file that is setuid (u+s)
    SETGID 30;40 # file that is setgid (g+s)
    CAPABILITY 30;41 # file with capability
    STICKY_OTHER_WRITABLE 32;40 # dir that is sticky and other-writable (+t,o+w)
    OTHER_WRITABLE 35;40 # dir that is other-writable (o+w) and not sticky
    STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
    # This is for files with execute permission:
    EXEC 01;32
    # List any file extensions like '.gz' or '.tar' that you would like ls
    # to colorize below. Put the extension, a space, and the color init string.
    # (and any comments you want to add after a '#')
    # If you use DOS-style suffixes, you may want to uncomment the following:
    #.cmd 01;32 # executables (bright green)
    #.exe 01;32
    #.com 01;32
    #.btm 01;32
    #.bat 01;32
    # Or if you want to colorize scripts even if they do not have the
    # executable bit actually set.
    #.sh 01;32
    #.csh 01;32
    # archives or compressed (bright red)
    .tar 01;31
    .tgz 01;31
    .arj 01;31
    .taz 01;31
    .lzh 01;31
    .lzma 01;31
    .tlz 01;31
    .txz 01;31
    .zip 01;31
    .z 01;31
    .Z 01;31
    .dz 01;31
    .gz 01;31
    .lz 01;31
    .xz 01;31
    .bz2 01;31
    .bz 01;31
    .tbz 01;31
    .tbz2 01;31
    .tz 01;31
    .deb 01;31
    .rpm 01;31
    .jar 01;31
    .war 01;31
    .ear 01;31
    .sar 01;31
    .rar 01;31
    .ace 01;31
    .zoo 01;31
    .cpio 01;31
    .7z 01;31
    .rz 01;31
    # image formats
    .jpg 01;35
    .jpeg 01;35
    .gif 01;35
    .bmp 01;35
    .pbm 01;35
    .pgm 01;35
    .ppm 01;35
    .tga 01;35
    .xbm 01;35
    .xpm 01;35
    .tif 01;35
    .tiff 01;35
    .png 01;35
    .svg 01;35
    .svgz 01;35
    .mng 01;35
    .pcx 01;35
    .mov 01;35
    .mpg 01;35
    .mpeg 01;35
    .m2v 01;35
    .mkv 01;35
    .ogm 01;35
    .mp4 01;35
    .m4v 01;35
    .mp4v 01;35
    .vob 01;35
    .qt 01;35
    .nuv 01;35
    .wmv 01;35
    .asf 01;35
    .rm 01;35
    .rmvb 01;35
    .flc 01;35
    .avi 01;35
    .fli 01;35
    .flv 01;35
    .gl 01;35
    .dl 01;35
    .xcf 01;35
    .xwd 01;35
    .yuv 01;35
    .cgm 01;35
    .emf 01;35
    # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
    .axv 01;35
    .anx 01;35
    .ogv 01;35
    .ogx 01;35
    # audio formats
    .aac 00;36
    .au 00;36
    .flac 00;36
    .mid 00;36
    .midi 00;36
    .mka 00;36
    .mp3 00;36
    .mpc 00;36
    .ogg 00;36
    .ra 00;36
    .wav 00;36
    # http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
    .axa 00;36
    .oga 00;36
    .spx 00;36
    .xspf 00;36
    I'm using zsh.
    Last edited by livinglifeback (2011-08-13 18:52:03)

    I myself just uses the standard colors and don't change them from default, but I do get the same colors for both ls and completion with this in .zshrc:
    eval `dircolors -b`
    zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}

  • Final Film output differs from the film in timeline!!!! :

    This is frustrating. I am working on a film and when I want to export it when it is finished the final output does not match some parts of the project in the timeline. I look at the film within Final Cut Pro and everything look good. But on some part (the end of the film) when I look at the exported Quicktime movie in the Quictime applicationm the saturation and lightness has changed! The end of the film (just about 4 frames before I start to play around with a few flying cows ( yes it is true) the picture becomes pale and unsaturated for the rest of the film?
    I did try the color corrector 3 way on some of the clips.... not all. But that should not have anything to do with it?
    Message was edited by: Simen Myrberget

    When I have tried to export or save final art (finished films) with File -> Export -> Quicktime Movie the results have been far from reliable. Things has been looking good in the timeline when after exporting the film changed a lot at some parts. This was especially often when I did include graphics which were cut out using alpha channels. The end product looked like it was bleached on those parts involving moving graphics with alpha channels.
    But after I tried Compressor things changed. This seems to be much more consistent. The best quality for this specific project was with Output for DVD (Best Quality), but then there were no sound...... and this is the ".m2v" format which I am not familiar with.
    http://fotofikling.com/ftp/temp/exportqualitydiffersfcp.jpg
    I did also try the 10 bit uncompressed, that was ok too, but slightly paler and less saturated than what I worked out in the timeline (what I wanted for end result).
    This was an old film I shot 10 years ago on SD format. I am quiet new to FCP, but I surely hope that one could work in a way that enables to get more reliable results.
    Any suggestions how to get a better end result in compressor? Something more like the ".m2v" version..... (see the attached link)...

  • Why SNMP output different from CLI output? SNMP incorrect?

    I'm using various Cisco routers and switches. Cisco 2811, 1841 routers. Cisco 3560 switches.
    I'm using net-snmp tools in UNIX.
    The output below is snipped to show what's important. When I use snmpwalk I see interfaces with errors. When I use the Cisco CLI to show interfaces no interfaces have errors.
    Am I doing something wrong or is the SNMP information wrong?
    My only goal is to get accurate interface errors on multiple cisco devices on all interfaces as quickly as possible. I wanted to use SNMP because it snmpwalk seems faster than an expect script or any script which logs into each device over telnet and runs show interface commands.
    If I could filter it to show only the interfaces with errors that would be even better but I haven't been able to find or create a script which will do that yet.
    Thanks in advance.
    snmpwalk -v 2c -c public -OQsT 192.168.0.1 ifInErrors
    ifInErrors.1 = 0
    ifInErrors.100 = 0
    ifInErrors.10101 = 0
    ifInErrors.10102 = 0
    ifInErrors.10103 = 0
    ifInErrors.10104 = 0
    ifInErrors.10105 = 54
    #show int | incl error
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 output errors, 0 interface resets
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 output errors, 0 interface resets
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 output errors, 0 collisions, 0 interface resets
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 output errors, 0 collisions, 0 interface resets
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 output errors, 0 collisions, 0 interface resets

    CLI counters are designed for human consumption where as SNMP counters are designed more for programmatic consumption.  As such, CLI counters can be cleared (i.e. reset to 0).  SNMP counters cannot be cleared.  They will continue to increase until the device is reloaded.  So, if the show interface counters have been cleared, then they can certainly be out of sync with their SNMP counterparts.

  • Can anyone post a mostly-default /etc/profile? I deleted mine -.-

    I was trying out some vim commands and accidentally wiped my /etc/profile -.-
    I've replaced some of the basic stuff like $PATH, but it still looks far shorter than the previous version. I also found some other examples on the web but I'd like to have the Arch defaults back and customize from there (: Could someone post theirs? Thanks a bunch.

    $ cat /etc/profile
    # /etc/profile
    # This file is intended to be used for ALL common
    # Bourne-compatible shells. Shell specifics should be
    # handled in /etc/profile.$SHELL where $SHELL is the name
    # of the binary being run (discounting symlinks)
    # Sections taken from SuSe's /etc/profile
    # Note the explicit use of 'test' to cover all bases
    # and potentially incompatible shells
    #Determine our shell without using $SHELL, which may lie
    shell="sh"
    if test -f /proc/mounts; then
    case $(/bin/ls -l /proc/$$/exe) in
    *bash) shell=bash ;;
    *dash) shell=dash ;;
    *ash) shell=ash ;;
    *ksh) shell=ksh ;;
    *zsh) shell=zsh ;;
    esac
    fi
    # Load shell specific profile settings
    test -f "/etc/profile.$shell" && . "/etc/profile.$shell"
    #Set our umask
    umask 022
    # Set our default path
    PATH="/bin:/usr/bin:/sbin:/usr/sbin"
    export PATH
    # Export default pkg-config path
    PKG_CONFIG_PATH="/usr/lib/pkgconfig"
    export PKG_CONFIG_PATH
    # Some readline stuff that is fairly common
    HISTSIZE=1000
    HISTCONTROL="erasedups"
    INPUTRC="/etc/inputrc"
    LESS="-R"
    export HISTSIZE HISTCONTROL INPUTRC LESS
    # Load profiles from /etc/profile.d
    if test -d /etc/profile.d/; then
    for profile in /etc/profile.d/*.sh; do
    test -x $profile && . $profile
    done
    unset profile
    fi
    # Termcap is outdated, old, and crusty, kill it.
    unset TERMCAP
    # Man is much better than us at figuring this out
    unset MANPATH
    And, you could retrieve that file from core/filesystem too.
    Last edited by hullap (2010-04-04 11:52:47)

  • Lost /etc/profile

    Since one of the latest updates, it seems my system is a bit broken. Commands like startx fail, and I recieve masages that xauth, xinit and elf are commands that can't be found. I wanted to have a look at /etc/profile, to check patch declaration, and noticed the whole file is crappy. It now looks like
    ^?ELF^A^A^A^@^
    fffuffffuffff^@^@
    uffffd^G^F^H^ufff
    fE^L^uffffD$^D^uf
    Hm, mysterious. I would be glad if someone could post a standard profile set here to give me a template.

    The original /etc/profile from bash package:
    # /etc/profile
    export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/opt/bin"
    export MANPATH="/usr/man:/usr/X11R6/man"
    export LESSCHARSET="latin1"
    export INPUTRC="/etc/inputrc"
    export LESS="-R"
    # Locale settings (find your locale with 'locale -a')
    export LANG="en_US"
    export LC_COLLATE="C"
    export COLUMNS LINES
    export PS1='[u@h W]$ '
    export PS2='> '
    umask 022
    if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o "$TERM" = "rxvt" ]; then
    PROMPT_COMMAND='echo -ne "33]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}07"'
    fi
    # load profiles from /etc/profile.d
    # (to disable a profile, just remove execute permission on it)
    for profile in /etc/profile.d/*.sh; do
    if [ -x $profile ]; then
    . $profile
    fi
    done
    unset profile
    # End of file
    If you still have the packages cache, you could also see this file in /var/cache/pacman/pkg/bash-3.0-3.pkg.tar.gz

  • Dialog Programing: Output screen layout is different from actaul layout

    Hi,
    I have developed screen layout in SE51 and same is used in my program.Program is working fine but the problem is in column order.I designed layout in SE51 by copying structure from ABAP dictionary and same has been used in my program but output layout column order is completely different from SE51 screen layout.When i check this on Se51,everything is in order.
    My program is referring the same screen number and program.there is only one screen i.e 100.
    How do we fix this problem.
    Regards,

    Looks like, your table settings got changed for the table control on the screen.
    Run your program.
    Now, on the screen you can find out the "Table Settings" in the Top Right corner of the Table control as ICON.
    Press the Icon and it will bring the Table Settings screen.
    In the Current Settings, choose the Basic Settings ... save and close.
    Regards,
    Naimesh Patel

  • After installing Firefox again, I wanted to get back my settings, bookmarks etc. by syncronising with Firefox Sync but accidentaly settings from a fresh browser

    After formatting the partition and installing Firefox again, I wanted to get my settings, bookmarks etc. back by syncronising with Firefox Sync but accidentaly settings from a fresh browser was uploaded and now I cannot have the browser the way I used to have. Is there any way to reverse this changes?

    Hi zoomy,
    First check that you still have data in your sync account.
    Firefox button > Options > Sync > Manage Account
    It should tell you how much data is stored in the account. Is there any?
    If there is still data in the sync account then you can follow the instructions in this article [[What is Firefox Sync?]]. Refer to the 'How much of my data is synced?' section. Change the option to 'Replace all data on this computer with my Sync data'.
    I hope that works for you.
    If there is no data in your sync account you will be able to get it back by syncing from another computer. Just make sure that the settings on that computer are not replaced by the blank account again. You can use the 'Replace all other devices with this computer's data' option to prevent this.
    Please note that Firefox Sync is designed only to sync details between devices not as an online backup tool. If you are formatting a partition it is generally best to backup your profile folder along with any other data. See [[Managing profiles]] for more detail.
    --Edward

  • The waveform of output from file is different from original one

    I've a new question about displaying a waveform from a text file. The waveform which its data is from file is different from the original one.
    I attached image files which included my two vi files and 3 waveform. In the compressed file, "ReadData_Waveform1.jpg" is a image of waveform from "ReadData.jpg" vi file with the configuration of "Transpose" is True,
    "ReadData_Waveform2.jpg" is a image of waveform from "ReadData.jpg" vi file with the configuration of "Transpose" is False,
    "WriteData_Waveform.jpg" is a image of waveform from "WriteData.jpg" vi file.
    I attached the source file of waveform with text format as well.
    Please help me to solve this question if there is anyone who can figure it out.
    Thanks, Andy.
    Attachments:
    Question.zip ‏154 KB
    data.txt ‏55 KB

    Hi Andy
    If you transpose the data when you write it, you also have to transpose it when you read it.
    Just have a look at the simple example attached. I write data and read it again. Each file operation is called with the default-value for transpose (false). The data is read correctly.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    data.vi ‏35 KB

  • What are default watermark settings (font etc) from LR2?

    Would anybody know the default settings (font etc) that were used in LR2 for the copyright watermark?  I recently upgraded from LR2.4 to LR3.3 and can't settle on an attractive copyright watermark at the moment.  I was quite happy with the 'old' default watermark settings and would like to use it again in LR3...
    Thanks in advance.

    Slaps Head!!
    I thought the simple watermark just printed Copyright 2011 but I thought I'd double-check before answering your reply.  And it turned out I had set up my copyright info incorrectly on my import options.
    So all I have to do is change my import options and I get what I want with the simple copyright watermark.
    Thanks for setting me straight!

  • Iphone app store id is different from the id that is on my settings in the store section.

    hi guys, everytime i try to download a app it says my id is different from the one im suppose to be using. in my settings i go to the store section and it has the one im supose to be using but when i try to download or update a app, a different one comes up. please help

    All purchases through iTunes are locked to the Apple id used to purchase them ( the original owner )
    No way of transferring to another id, ever

  • While executing the query the output is completey different from the query

    Dear friends,
    We built a query and loaded the data for that infoprovider.
    While executing the query the output is completey different from the query what we have built.
    Output has no relevance to the query.
    Kindly help the same.
    Regards,
    Sathya

    HI Satya,
    In my opinion the issue is with your front end.
    Results should be identical in RSRT, BEx Analyzer (Workbooks) and the ABAP-Web since all three frontend tools use the "ABAP Runtime layer".
    It may differ In the Portal where the new "Java Runtime layer". (Java-Web.) is used.
    This is given in OSS Note 1296576 - Different Query Behaviour: ABAP - Java.
    So i think the problem lies in your analyser. If you are using Analyzer: BI Add on 7.X (Based on 7.10) try and get support package 8.
    Hope this helps.
    Thanks,
    Rahul

  • Is CTS+ different from PI to ECC, etc?

    I only configured CTS+ from PI.
    I want to configure CTS+ for ECC and other ABAP+JAVA  systems.
    I think the procedure will be different , e.g. the exchange profile portion perhaps will not exist for
    ECC configuration.
    Any document there?
    Thanks!

    Hi,
    have a look at http://help.sap.com/saphelp_nw70/helpdata/en/45/EC25370FDC3481E10000000A1553F6/frameset.htm
    http://docs.google.com/gview?a=v&pid=gmail&attid=0.1&thid=1175ceb715557b4e&mt=application%2Fpdf
    narsi

Maybe you are looking for

  • JMS Adapter Supports below message

    Hi Frnds, I am working on one scenario i have to read and write RFH2 Message from MQ,we decided to use jms adapter. JMS Adapter supports below Message to put in MQ, <Data>      <MQRFH2>           <usr>                <TransactionType>GL_Update</Trans

  • Pair iPAD with iMac monitor and keyboard

    Is it possible?  How about the iMac wireless keyboard paired with the iPad? Related to possible future purchase so all h/w and s/w latest available.

  • Recovery Mode Muvo N

    ok, this is making me nuts. i'm trying to upgrade the firmware for my muvo n200 and i've followed the instructions below to the T. everything works fine, until i get to #8. i run the firmware update program and i get an error message, put your player

  • Preventive Work Order Dates Synchronization with its automatic created  notification

    Dear all, Preventive Work Order Dates Synchronization with its automatic created  notification My question was initiated from PM module forum, please check above URL if you have time. My ultimate problem is that :      "SMOD" Enhancement  "QQMA0018"

  • Add/change multiple operations on a released Production Order

    How can I add/change multiple operations on a released Production Order...I know how to add them manually one by one but is there a better way to add...like copy/paste since i am adding operations from an alternate route? Please advise?