Certain files excluded (e.g. /etc/hosts) ?

On our network we have several machines that we just put in our local /etc/hosts file. A coworker recently restored from a Time Machine backup and it didn't restore his /etc/hosts file. That's fine since others have that same information.
Leaving aside the question of whether we put those servers in our dns server...
I am a .mac subscriber and am used to using Backup which is predictable. Does anyone know if there are certain default exceptions for Time Machine - that it does not back up? That might be useful in case I have system files that I actually want to keep the way they are or back up separately.

There are certain files/file_types that TM ignores, like things in the trash and, I think, caches. Exactly which ones, I don't know.

Similar Messages

  • Lil' script to update adblockfilter, adblocking via /etc/hosts file

    hi, i've recently changed to adblocking via the hosts file (which works great btw), but i was missing  filtersetupdating like in firefox, so i've created with my limited scripting skills this one...
    # lil' script to update /etc/hosts adblock-filter
    #hosts adblock filter taken from this site...
    wget --directory-prefix=/tmp http://www.mvps.org/winhelp2002/hosts.txt
    #Backup /etc/hosts to /tmp
    cp /etc/hosts /tmp
    #standard static hosts file
    echo '# /etc/hosts: static lookup table for host names' > /etc/hosts
    echo '#' >> /etc/hosts
    echo '#<ip-address> <hostname.domain.org> <hostname>' >> /etc/hosts
    echo '127.0.0.1 localhost.localdomain localhost' >> /etc/hosts
    #add custom statc host configuration here
    echo ' ' >> /etc/hosts
    echo '###Ad-Blocking###' >> /etc/hosts
    cat /tmp/hosts.txt >> /etc/hosts
    echo '# End of file' >> /etc/hosts
    rm /tmp/hosts.txt
    enjoy!

    hosts_udate
    #!/bin/bash
    # 2012 Ontobelli for this script
    # make hosts temporal directory
    HOSTSDIR=~/.hostsupdate
    mkdir -p "${HOSTSDIR}"
    # make temporary directory
    TMPDIR=/tmp/hostsupdate
    mkdir -p "${TMPDIR}"
    # set output file
    OUTPUTFILE="${TMPDIR}/hosts"
    # set temporal file
    TMPFILE="${TMPDIR}/tmpfile"
    if [ ! -f "${HOSTSDIR}/hosts.local" ]; then
    echo "You need to create "${HOSTSDIR}"/hosts.local containing the hosts you wish to keep!"
    exit 0
    fi
    # download the mvps.org hosts file.
    wget -c -O "${HOSTSDIR}/hosts.mvps" "http://winhelp2002.mvps.org/hosts.txt"
    # download hpHOSTS
    wget -c -O "${HOSTSDIR}/hosts.hphosts" "http://support.it-mate.co.uk/downloads/HOSTS.txt"
    # download hpHOSTS Partial
    wget -c -O "${HOSTSDIR}/hosts.partial" "http://hosts-file.net/hphosts-partial.asp"
    # download hpHOSTS ad/tracking servers
    wget -c -O "${HOSTSDIR}/hosts.adservers" "http://hosts-file.net/ad_servers.asp"
    # download the pgl.yoyo.org hosts Peter Lowe - AdServers
    wget -c -O "${HOSTSDIR}/hosts.yoyo" "http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&showintro=0&mimetype=plaintext"
    # download SysCtl Cameleon hosts
    wget -c -O "${HOSTSDIR}/hosts.sysctl" "http://sysctl.org/cameleon/hosts"
    # cat entries in a single file
    cat "${HOSTSDIR}/hosts.mvps" > "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.hphosts" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.partial" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.adservers" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.yoyo" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.sysctl" >> "${TMPFILE}0"
    # tabs to space
    sed -e 's/ / /g' "${TMPFILE}0" > "${TMPFILE}1"
    # find relevant lines without comments
    grep ^127.0.0.1 "${TMPFILE}1" > "${TMPFILE}2"
    # remove duplicate spaces
    cat "${TMPFILE}2" | tr -s [:space:] > "${TMPFILE}3"
    # remove carriage returns
    cat "${TMPFILE}3" | tr -d "\r" > "${TMPFILE}4"
    # 0.0.0.0 is nicer than constantly knocking on localhosts' door.
    sed -e 's/127.0.0.1 /0.0.0.0 /g' "${TMPFILE}4" > "${TMPFILE}5"
    # remove inline comments
    cut -d ' ' -f -2 "${TMPFILE}5" > "${TMPFILE}6"
    # sort blocklist entries and remove duplicates
    sort "${TMPFILE}6" | uniq > "${TMPFILE}7"
    # remove unneeded blocked sites
    grep -Ev ' dl.dropbox.com| host_you_want_to_whitelist' "${TMPFILE}7" > "${TMPFILE}9"
    # write the user's hosts.local to head, then the blacklists
    cat "${HOSTSDIR}"/hosts.local > "${OUTPUTFILE}"
    cat "${TMPFILE}9" >> "${OUTPUTFILE}"
    echo -e "# end of file" >> "${OUTPUTFILE}"
    # move to /etc/hosts
    mv "${OUTPUTFILE}" /etc/hosts
    # delete temporary directory
    rm -r -f "${TMPDIR}"
    hosts.local
    # /etc/hosts: static lookup table for host names
    #<ip> <hostname.domain.org> <hostname>
    127.0.0.1 localhost.localdomain localhost YOURHOSTSNAMEHERE
    ::1 localhost.localdomain localhost YOURHOSTSNAMEHERE
    # YOUR PERSONAL list
    # blocked list
    Create an alias in your ~/.bashrc
    alias hu='sudo /root/.hostsupdate/hosts_update'
    Run
    # hu <enter>
    Script and cache must be located in /root/.hostsupdate or modify scrip accordingly
    Cheers.
    Last edited by ontobelli (2012-02-15 09:15:17)

  • /etc/hosts vs DNS & sendmail

    Hi All,
    I have a question about how /etc/hosts & DNS work on a solaris 9 box.
    When I have entries in /etc/hosts that are not in DNS and I run say nslookup the utility will not find the ip. Put if I ping the entry in /etc/hosts it will find it. Basically I have a box with default sendmail and in /etc/hosts I have a entry with mailhost added to it at the end. nslookup does not find the box ping does and sendmail can't send mail to it and I can not verify that it ever worked correctly.
    1) what is up with nslookup no seeing /etc/hosts?
    2) can sendmail send to hosts per FQDN listed in /etc/hosts & use a DNS server at the same time?
    thanks
    -im

    When I have entries in /etc/hosts that are not in DNS
    and I run say nslookup the utility will not find the
    ip. Correct. nslookup and /etc/hosts are controlled by /etc/nsswitch.conf.
    Files says to search /etc/hosts.
    Anything else says to use that name service.
    Put if I ping the entry in /etc/hosts it will
    find it.If it is in /etc/hosts and /etc/nsswitch.conf says to search /etc/hosts.
    and in /etc/hosts I have a entry with mailhost added
    to it at the end. nslookup does not find the box ping
    does and sendmail can't send mail to it and I can not
    verify that it ever worked correctly. Sendmail can be compiled to use or disregard name server lookups in addition to the /etc/nsswitch.conf file.
    sendmail -v e-mail_addr, should show you some basic diagnostics.
    1) what is up with nslookup no seeing /etc/hosts?That's the way it works.
    2) can sendmail send to hosts per FQDN listed in
    /etc/hosts & use a DNS server at the same time?sure, see /etc/nsswitch.conf and the sendmail compile time options.
    http://www.ilkda.com/sendmail/
    alan

  • How to save etc/hosts

    Hi all,
    Please help sorting my terminal, I'm having problem with my iTune everytime I want to update or restore my ipad or iphone, it keep saying "this device isn't eligible for the requested build"
    Now I tried to edit the etc/hosts using the Terminal, but suddenly all the script
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1          localhost
    255.255.255.255          broadcasthost
    ::1             localhost
    fe80::1%lo0          localhost
    #74.208.10.249 gs.apple.com
    #127.0.0.1 gs.apple.com
    are all gone i think i accidentally deleted it. so what I did was I copy this from forum and paste it to terminal.
    But i'm having problem how to save it, when I press ^O it goes like this:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1          localhost
    255.255.255.255          broadcasthost
    ::1             localhost
    fe80::1%lo0          localhost
    #74.208.10.249 gs.apple.com
    #127.0.0.1 gs.apple.com
    File Name to Write: etc/hosts                                                
    ^G Get Help         ^T To Files         M-M Mac Format      M-P Prepend
    ^C Cancel           M-D DOS Format      M-A Append          M-B Backup File
    and I dont know how to save it. when I press ^X doesn't save at all.
    Please Help me.
    Thank you in advance.

    Well lets make things easier, get out of Terminal by just Quiting it or Force Quit.
    Download the free TextWrangler here
    http://www.barebones.com/products/textwrangler/download.html
    Now under the File Menu >Open File by Name
    /etc/hosts
    It should look like this, if not then just copy and paste it in.
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1       localhost
    255.255.255.255 broadcasthost
    ::1             localhost
    fe80::1%lo0     localhost
    Now save it and give it your admin password and that's it. Easy as pie.
    Terminal's pico and vi editing programs have a lot to be desired, but serve the basic puposes.
    With Terminal you need to enter
    sudo pico /etc/hosts
    then enter your admin password to access a system file.
    It can only be done via a Admin account, however with TextWrangler not only is it much easier, you can also access system files from a Standard user account.
    the two lines
    #74.208.10.249 gs.apple.com
    #127.0.0.1 gs.apple.com
    You have there are "commented out" with the "#" symbol, basically your telling the computer to "ignore this line"
    Why you think messing with your /etc/hosts file is going to solve your primary issue with iTunes/iPad/iPhone is beyond me.
    Did you ever think that perhaps your two devices are too old for the "requested build"?

  • Sudo nano etc/hosts can't save

    Hi all,
    Please help sorting my terminal, I'm having problem with my iTune evrytime I want to update or restore my ipad or iphone, it keep saying "this device isn't eligible for the requested build"
    Now I tried to edit the etc/hosts using the Terminal, but suddenly all the script
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1          localhost
    255.255.255.255          broadcasthost
    ::1             localhost
    fe80::1%lo0          localhost
    #74.208.10.249 gs.apple.com
    #127.0.0.1 gs.apple.com
    are all gone i think i accidentally deleted it. so what i did was copy this from forum and paste it to terminal.
    But i'm having problem to save it when I press ^O it goes like this:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1          localhost
    255.255.255.255          broadcasthost
    ::1             localhost
    fe80::1%lo0          localhost
    #74.208.10.249 gs.apple.com
    #127.0.0.1 gs.apple.com
    File Name to Write: etc/hosts                                                  
    ^G Get Help         ^T To Files         M-M Mac Format      M-P Prepend
    ^C Cancel           M-D DOS Format      M-A Append          M-B Backup File
    and I dont know how to save it. when I press ^X doesn't save at all.
    Please Help me.
    Thank you in advance.

    Thanks.
    What's this "sudo dscacheutil -flushcache"???
    Why show this "when the system is booting.  Do not change this entry."????
    Can i add what i want between 127.0.0.1 localhost and 255.255.255.255 broadcasthost?
    Why is saying i can't change the file, why can i unprotect? Explain me.
    Thanks in advance
    Message was edited by: NunoPortugal

  • /etc/hosts file ignored

    I'm having a strange problem with the hosts file
    I've edited my hosts file so I can work with a local machine for testing.
    The entry in the hosts file is honoured for about 30 seconds or for as long as I ping it.
    As soon as I stop pinging it, it reverts to the DNS entry and ignores etc/hosts
    If I then touch hosts, it wil honour the entry again for 30 odd seconds.
    Any ideas?

    When it reverts to the DNS entry, I'm not 100% sure DirectoryService is making a request out to our DNS servers or if it's cached somewhere, but it's certainly not using what's in hosts.
    Wow, this is odd. WRT DirectoryService making requests, you can use the "dscacheutil" command to look at syscall stats. This utility will track cache hits, cache misses and external calls for each standard system call it monitors. So, you care about gethostbyname(), so by periodically running dscacheutil, then doing name lookups (i.e. with ping or whatever), you can see where the system is getting the data. You'd want to run something like this:
    dscacheutil -statistics | grep gethostbyname

  • How to do a clean install go yosemite and then just install certain files, apps, documents, phopt's, etc...from time machine backup?

    How to do a clean install of yosemite (have Mavericks 10.9.5 now) and then just install certain files, apps, documents, phopt's, etc...from time machine backup?

    Do a backup before doing anything.
    If you want to make a clean install of Mountain Lion, boot into the Recovery Volume (command - R) on a restart, use Disk Utility to Verify/Repair  the disk and run Repair Permissions. Then erase the hard drive using Mac OS Extended (Journaled) format using the Options button. Reinstall Yosemite. Restart normally and test. Use Setup Assistant or Migration Assistant to import what you want.
    Clean Install

  • Adding the /etc/host.deny file like linux in solaris 10.

    Dears,
    I need to add a file which will works like the file of /etc/hosts.deny of Linux in Solaris.
    If it is possible in the same manner please let me know that, and if it need some other trick to deny a specific host to access the system please tell me the way to do that.
    Eagerly waiting to hear from you.
    BR//
    Sohel.

    IPfilter can deny a specific IP address access to the host - enable IPFilter with svcadm and edit the /etc/ipf/ipf.conf file to add the IP to block. An example could be:
    block in log quick on bnx0 proto tcp from 192.168.1.5/32 to any
    I use IPfilter to pass and block all sorts of specific IP addresses as well as block/allow specific ports (like only specific hosts can use port 22, ssh).

  • The new entries made in /etc/hosts file is not picked up by Weblogic.

    Hi All,
    I have come across a scenario where i have changed the IP address of a particular host name (which was already present in etc/hosts) to point to a new IP address.
    After i did this change, when i do a telnet test to the same hostname, i can see it is getting connected to the new IP to which i changed. But my service which is deployed on weblogic 10.0 still keeps sending requests to the old IP which i commented in the etc/hosts file instead of the new IP address.
    My question is will weblogic cache the data in etc/hosts file somewhere?
    Thanks in anticipation..
    Madhu

    Application deployed on weblogic server will pick the IP address of the server on which the application is deployed .
    IP address or listen address for weblogic server can be configured in 3 different ways :
    Listen Address : Blank --- This means that the server will listen to all the interfaces available on the Machine .
    Listen Address : IP address or Hostname --- The server will listen only to the specified IP address or the hostname .
    Listen Address : : localhost --- The server will be listening only on localhost address and will not be accessible remotely .
    Please check what it the listen address specified at you end.
    Thanks,
    Sandeep

  • Can I exclude certain file types in the Photo Downloader?

    Hi there!
    I am very new here, so please do correct me on etiquette and if I'm doing something wrong. I've been searching the web for quite a while now but couldn't find an answer or even questions concerning this problem...
    I like using Bridge's Photo Downloader, for the nice renaming and other options it gives me. Usually I want to download all images from a card and then delete them on the card. The problem I am having is that Photo Downloader will not only see images (like .JPG, .CR2 or .ARW) but camera database files and settings (.INT, .BDM, .BIN, ...). This is annoying, since I neither want them stored on my hard drive nor deleted on my card. I also would like to import movies in a different way. The way I can work around this now is that I manually deselect all non-images in the Advanced Dialog and then only download these. But I was hoping that there is a more elegant and automatic way to just exclude certain file types from automatic selection. Or even just a way to mark or unmark the images by file type. This should be very easy to implement and I am really curious if I am missing something obvious here or if this is just not possible yet.
    Has anyone else thought this before? Or are you all using different methods to import images from your card reader?
    Any help or comment is appreciated.

    Sorry, download history is either on or off. There is no preference setting to exclude specific file types.

  • In the command line how do I find the etc/host file? is there one?

    I am trying to work remotely and use our lotus notes system (which is from a windows based server) but I have to connect to the mail server and our IT person wants to find the equivalent of the Windows host file or host table . is there such a file? we went here
    http://linux.die.net/man/5/hosts
    hosts(5) - Linux man page
    Name
    hosts - The static table lookup for host names
    Synopsis
    /etc/hosts
    thanks

    Since you're using a Macintosh, quit reviewing linux stuff. These, when entered in the Terminal app (inside /Applications/Utilities/) should point you in the right direction:
    *cat /etc/hosts*
    details in:
    *man hosts*
    FWIW, you should search the Unix forum (or post your query there) under OS X Technologies.

  • Editing etc\hosts file on windows xp for apps. problem post installation.

    Hi all,
    I was able to install 11.5.10.2 apps on my win xp prof machine. During that process I had to edit the etc/hosts file in windows directory as a work around for that domain name field during installation. Also added the primary DNS suffix as 'suneel.com' . I gave the domain name as 'suneel.com' during installation. The RapidWiz is taking localhost as the system name and referring to this system as localhost.suneel.com, though the actual system name is 'websoft-xp' .
    The host file on Apps machine has the following entries:
    127.0.0.1 localhost
    127.0.0.1 localhost.suneel.com suneel.com
    127.0.0.1 websoft-xp.suneel.com
    So when I connect to apps login server from other systems in lan, I've to edit their hosts file and add an entry for localhost.suneel.com to point to its ip address or else the apps throws an error after logging in as operations/welcome using a different url say 192.168.1.4:8000 . Is there a way to get around this issue?
    More over I'm not able connect to VIS db from other systems. The oracle clients give an error 'No listner' at this address. (The original listener was listening at localhost.suneel.com:1521). So I tried to create a new listerner from Net Manager that actually listens at websoft-xp (the real system name) but it throws me an error 'A valid log file is required' while saving the network configuration and prevents me from saving the network configuration.
    Did I do something wrong with the hosts file during installation or did i miss any entries in that file thats causing this? Any solutions for the above problems will be appreciated?
    Thanks
    Suneel
    Message was edited by:
    suneelgv

    Well I tried that option but for some reason it didn't work for me. It kept giving the tns:connection closed error. Then I searched in metalink and found this note : Note:333158.1
    It suggested setting tcp.validnode_checking = no
    in sqlnet.ora. in
    F:\oracle\visdb\9.2.0\network\admin\VIS_websoft-xp
    And it works. Hope this helps someone facing a similar problem. Good luck.
    BTW how do I run autoconfig?
    Thanks,
    Suneel Gundlapalli

  • EtreCheck says /etc/hosts file is Corrupted

    EtreCheck says the Cofiguration files:  /etc/host - Corrupted.  Here is the EtreCheck Report and my actual hosts file from Terminal below:
    How do I fix this?  Thanks
    EtreCheck version: 2.0.1 (82)
    Report generated October 10, 2014 at 7:52:19 PM PDT
    Hardware Information: ℹ️
      iMac (27-inch, Late 2013) (Verified)
      iMac - model: iMac14,2
      1 3.2 GHz Intel Core i5 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Good - Handoff supported
      Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
      NVIDIA GeForce GT 755M - VRAM: 1024 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 0 days 5:59:33
    Disk Information: ℹ️
      APPLE SSD SM0256F disk0 : (251 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      iMac SSD (disk0s2) /  [Startup]: 250.14 GB (202.02 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Wacom Co.,Ltd. CTT-460
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Corrupt!
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/DiskWarrior.app
      [not loaded] com.alsoft.Preview (4.4) Support
      /Applications/VMware Fusion.app
      [not loaded] com.vmware.kext.vmci (90.5.7) Support
      [not loaded] com.vmware.kext.vmioplug.12.1.17 (12.1.17) Support
      [not loaded] com.vmware.kext.vmnet (0188.79.83) Support
      [not loaded] com.vmware.kext.vmx86 (0188.79.83) Support
      [not loaded] com.vmware.kext.vsockets (90.5.7) Support
      /System/Library/Extensions
      [not loaded] com.wacom.kext.pentablet (5.2.6) Support
    Launch Agents: ℹ️
      [running] com.wacom.pentablet.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      WacomNetscape: Version: 1.1.1-1 Support
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      QuickTime Plugin: Version: 7.7.3
      WacomTabletPlugin: Version: WacomTabletPlugin 2.0.0.4 Support
      Default Browser: Version: 537 - SDK 10.9
    Safari Extensions: ℹ️
      Ghostery (Disabled)
      FastestTube
      YouTube5
      NoMoreiTunes
    3rd Party Preference Panes: ℹ️
      PenTablet  Support
      Flip4Mac WMV  Support
      Perian  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          4% WindowServer
          1% fontd
          0% System Events
          0% fseventsd
          0% imagent
    Top Processes by Memory: ℹ️
      387 MB com.apple.IconServicesAgent
      172 MB WindowServer
      120 MB mds_stores
      94 MB Grab
      94 MB Finder
    Virtual Memory Information: ℹ️
      5.29 GB Free RAM
      1.89 GB Active RAM
      632 MB Inactive RAM
      774 MB Wired RAM
      676 MB Page-ins
      0 B Page-outs
    and here is my actual hosts file from Terminal:
    Joses-iMac:~ josemontanez$ cat /etc/hosts
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1             localhost
    fe80::1%lo0 localhost
    m
    Joses-iMac:~ josemontanez

    I have 95 corrupt configuration files in /etc/hosts. Here is my EtreCheck report and my Terminal report follows.
    Hardware Information: ℹ️
        iMac (24-inch Mid 2007) (Verified)
        iMac - model: iMac7,1
        1 2.8 GHz Intel Core 2 Duo CPU: 2-core
       2 GB RAM Upgradeable
            BANK 0/DIMM0
                1 GB DDR2 SDRAM 667 MHz ok
            BANK 1/DIMM1
                1 GB DDR2 SDRAM 667 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI,RadeonHD2600 - VRAM: 256 MB
            iMac 1920 x 1200
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:4:31
    Disk Information: ℹ️
        ST3500630AS Q disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (310.40 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        LaCie Porsche Mobile for Mac 2 TB
            EFI (disk1s1) <not mounted> : 210 MB
            LaCie (disk1s2) /Volumes/LaCie : 2.00 TB (1.70 TB free)
        Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Configuration files: ℹ️
        /etc/hosts - Count: 99 - Corrupt!
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.digidesign.fwfamily.driver (7.4f1) [Click for support]
        [not loaded]    com.digidesign.iokit.DigiDal (7.4f1) [Click for support]
        [not loaded]    com.digidesign.iokit.DigiIO (7.4f1) [Click for support]
        [not loaded]    com.digidesign.mbox2.boot.driver (7.4f1) [Click for support]
        [not loaded]    com.digidesign.mbox2.driver (7.4f1) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.master (5.5) [Click for support]
            /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
        [not loaded]    com.paceap.kext.pacesupport.leopard (5.5) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.panther (5.5) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.tiger (5.5) [Click for support]
    Startup Items: ℹ️
        Digidesign Mbox 2: Path: /Library/StartupItems/Digidesign Mbox 2
        DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
        MySQLCOM: Path: /Library/StartupItems/MySQLCOM
        PACESupport: Path: /Library/StartupItems/PACESupport
        Qmaster: Path: /Library/StartupItems/Qmaster
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.adobe.versioncueCS3.plist [Click for support]
        [running]    com.digidesign.fwfamily.helper.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [failed]    PACESupport.plist [Click for support]
    User Launch Agents: ℹ️
        [running]    com.google.Chrome.framework.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iAntiVirus    UNKNOWN Hidden (missing value)
        Caffeine    Application  (/Applications/Caffeine.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        X1100 Series Button Monitor    Application Hidden (/Library/Application Support/Lexmark/X1100 Series Scanner.bundle/Contents/SharedSupport/X1100 Series Button Monitor.app)
        EEventManager    Application  (/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app)
    Internet Plug-ins: ℹ️
        DirectorShockwave: Version: 12.1.3r153 - SDK 10.6 [Click for support]
        nplastpass: Version: 2.5.5 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        RealPlayer Plugin: Version: Unknown
        AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Silverlight: Version: 4.0.50401.0 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        AdobePDFViewer: Version: 11.0.09 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 7 Update 55 Check version
    User internet Plug-ins: ℹ️
        BrowserPlus_2.9.8: Version: 2.9.8 [Click for support]
    Safari Extensions: ℹ️
        LastPass
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.3
        Digidesign CoreAudio: Version: 7.4 [Click for support]
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS3  [Click for support]
        BrowserPlus  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 188.85 GB
        Destinations:
            LaCie [Local]
            Total size: 2.00 TB
            Total number of backups: 24
            Oldest backup: 2015-01-25 07:12:35 +0000
            Last backup: 2015-03-07 17:57:35 +0000
            Size of backup disk: Excellent
                Backup size 2.00 TB > (Disk size 499.25 GB X 3)
    Top Processes by CPU: ℹ️
             5%    Activity Monitor
             5%    recentsd
             3%    CalendarAgent
             3%    WindowServer
             1%    sysmond
    Top Processes by Memory: ℹ️
        268 MB    mds_stores
        75 MB    Dropbox
        69 MB    ocspd
        54 MB    Dock
        52 MB    Activity Monitor
    Virtual Memory Information: ℹ️
        162 MB    Free RAM
        889 MB    Active RAM
        766 MB    Inactive RAM
        329 MB    Wired RAM
        1.03 GB    Page-ins
        29 KB    Page-outs
    Diagnostics Information: ℹ️
        Mar 7, 2015, 10:23:52 AM    Self test - passed
        Mar 6, 2015, 10:50:33 PM    /Library/Logs/DiagnosticReports/Spotify_2015-03-06-225033_[redacted].hang
        Mar 6, 2015, 10:22:01 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Dock_2015-03-06-222201_[redact ed].crash
        Mar 6, 2015, 08:34:05 PM    /Library/Logs/DiagnosticReports/Safari_2015-03-06-203405_[redacted].hang
    TERMINAL REPORT:
    Start time: 12:09:52 03/07/15
    Model Identifier: iMac7,1
    Memory: 2 GB
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 1:46
    Memory
        BANK 0/DIMM0:
          Size: 1 GB
          Speed: 667 MHz
          Status: OK
          Manufacturer: 0xAD00000000000000
        BANK 1/DIMM1:
          Size: 1 GB
          Speed: 667 MHz
          Status: OK
          Manufacturer: 0xAD00000000000000
    SATA
       ST3500630AS Q                         
    USB
       Porsche Mobile for Mac (LaCie)
    Diagnostic reports
       2015-02-06 coreduetd crash
       2015-02-06 iTunes crash
       2015-02-12 AddressBookSourceSync crash
       2015-02-17 coreduetd crash
       2015-02-17 iTunes crash
       2015-03-06 Dock crash
       2015-03-06 Safari hang
       2015-03-06 Spotify hang
    Log
      Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:12 BUG in process suhelperd[176]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
       Mar  7 10:25:47 proc 307: load code signature error 4 for file "garcon"
       Mar  7 10:26:24 BUG in process suhelperd[176]: over-released legacy external boost assertions (0 total, 0 external, 0 legacy-external)
    Daemons
       com.paceap.pacesupport
       com.adobe.versioncueCS3
       com.microsoft.office.licensing.helper
       com.oracle.java.Helper-Tool
       com.adobe.SwitchBoard
       com.adobe.fpsaud
       com.digidesign.fwfamily.helper
    Agents
       com.google.Chrome.framework.service_process~/Library/Application_Support/Google /Chrome
       com.oracle.java.Java-Updater
       com.spotify.webhelper
       com.google.keystone.user.agent
       com.divx.update.agent
       com.divx.dms.agent
    launchd
       /System/Library/LaunchDaemons/com.apple.installer.osmessagetracing.plist
       - com.apple.installer.osmessagetracing
       /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
       - com.adobe.AAM.Startup-1.0
       /Library/LaunchAgents/com.divx.dms.agent.plist
       - com.divx.dms.agent
       /Library/LaunchAgents/com.divx.update.agent.plist
       - com.divx.update.agent
       /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
       - com.oracle.java.Java-Updater
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
       - com.adobe.fpsaud
       /Library/LaunchDaemons/com.adobe.SwitchBoard.plist
       - com.adobe.SwitchBoard
       /Library/LaunchDaemons/com.adobe.versioncueCS3.plist
       - com.adobe.versioncueCS3
       /Library/LaunchDaemons/com.digidesign.fwfamily.helper.plist
       - com.digidesign.fwfamily.helper
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
       - com.microsoft.office.licensing.helper
       /Library/LaunchDaemons/com.oracle.java.Helper-Tool.plist
       - com.oracle.java.Helper-Tool
       /Library/LaunchDaemons/PACESupport.plist
       - com.paceap.pacesupport
       Library/LaunchAgents/com.google.Chrome.framework.plist
       - com.google.Chrome.framework.service_process~/Library/Application_Support/Google /Chrome
       Library/LaunchAgents/com.google.keystone.agent.plist
       - com.google.keystone.user.agent
       Library/LaunchAgents/com.spotify.webhelper.plist
       - com.spotify.webhelper
    Startup items
       /Library/StartupItems/Digidesign Mbox 2/CheckKextForOs
       /Library/StartupItems/Digidesign Mbox 2/Digidesign Mbox 2
       /Library/StartupItems/Digidesign Mbox 2/getCurrentUser
       /Library/StartupItems/Digidesign Mbox 2/isJaguar
       /Library/StartupItems/Digidesign Mbox 2/Mbox2CS
       /Library/StartupItems/Digidesign Mbox 2/StartupParameters.plist
       /Library/StartupItems/DigidesignLoader/DigidesignLoader
       /Library/StartupItems/DigidesignLoader/StartupParameters.plist
       /Library/StartupItems/MySQLCOM/MySQLCOM
       /Library/StartupItems/MySQLCOM/StartupParameters.plist
       /Library/StartupItems/PACESupport/PACESupport
       /Library/StartupItems/PACESupport/Resources/PACESupport.plist
       /Library/StartupItems/PACESupport/StartupParameters.plist
       /Library/StartupItems/Qmaster/Qmaster
       /Library/StartupItems/Qmaster/StartupParameters.plist
    Bundles
       /System/Library/Extensions/DigiDal.kext
       - com.digidesign.iokit.DigiDal
       /System/Library/Extensions/DigidesignFireWireAudio.kext
       - com.digidesign.fwfamily.driver
       /System/Library/Extensions/DigidesignMbox2.kext
       - com.digidesign.mbox2.driver
       /System/Library/Extensions/DigidesignMbox2Boot.kext
       - com.digidesign.mbox2.boot.driver
       /System/Library/Extensions/DigiIO.kext
       - com.digidesign.iokit.DigiIO
       /System/Library/Extensions/JMicronATA.kext
       - com.jmicron.JMicronATA
       /System/Library/Extensions/PACESupportFamily.kext
       - com.paceap.kext.pacesupport.master
       /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin
       - com.digidesign.digidesign.DigiCoreAudioPlugIn
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/DirectorShockwave.plugin
       - com.adobe.director.shockwave.pluginshim
       /Library/Internet Plug-Ins/DivX Web Player.plugin
       - com.divx.DivXWebPlayer
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/nplastpass.plugin
       - com.lastpass.nplastpass
       /Library/Internet Plug-Ins/OVSHelper.plugin
       - com.divx.OVSHelper
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
       - com.microsoft.sharepoint.webkitplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/JavaControlPanel.prefPane
       - com.oracle.java.JavaControlPanel
       /Library/PreferencePanes/VersionCueCS3.prefPane
       - com.adobe.versioncueCS3.VCPrefPane
       /Library/QuickTime/FLV.component
       - com.macromedia.FLVExporter
       /Library/QuickTime/FLV.component/Contents/Resources
       - com.macromedia.FLVExporter
       /Library/ScriptingAdditions/Adobe Unit Types.osax
       - N/A
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
       Library/Caches/com.apple.Safari/Extensions/LastPass.safariextension
       - com.lastpass.lpsafariextension
       Library/Internet Plug-Ins/BrowserPlus_2.9.8.plugin
       - com.yahoo.browserplus
       Library/iTunes/iTunes Plug-ins/AudioScrobbler.bundle
       - N/A
       Library/PreferencePanes/BrowserPlusPrefs.prefPane
       - com.yahoo.browserplus.prefpane
       Library/PreferencePanes/Growl.prefPane
       - com.growl.prefpanel
       Library/Widgets/Tumblet.wdgt
       - com.tumblr.tumblet
    Apps
        /Applications/Dropbox.app
    Contents of /etc/hosts
       127.0.0.1 192.150.14.69
       127.0.0.1 192.150.18.101
       127.0.0.1 192.150.18.108
       127.0.0.1 192.150.22.40
       127.0.0.1 192.150.8.100
       127.0.0.1 192.150.8.118
       127.0.0.1 209-34-83-73.ood.opsource.net
       127.0.0.1 3dns-1.adobe.com
       127.0.0.1 3dns-2.adobe.com
       127.0.0.1 3dns-2.adobe.com
       127.0.0.1 3dns-3.adobe.com
       127.0.0.1 3dns-3.adobe.com
       127.0.0.1 3dns-4.adobe.com
       127.0.0.1 3dns.adobe.com
       127.0.0.1 activate-sea.adobe.com
       127.0.0.1 activate-sjc0.adobe.com
       127.0.0.1 activate.adobe.com
       127.0.0.1 activate.wip.adobe.com
       127.0.0.1 activate.wip1.adobe.com
       127.0.0.1 activate.wip2.adobe.com
       127.0.0.1 activate.wip3.adobe.com
       127.0.0.1 activate.wip3.adobe.com
       127.0.0.1 activate.wip4.adobe.com
       127.0.0.1 adobe-dns-1.adobe.com
       127.0.0.1 adobe-dns-2.adobe.com
       ...and 79 more line(s)
    Contents of /System/Library/LaunchDaemons/com.apple.installer.osmessagetracing.plist (XML  document text)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.installer.osmessagetracing</string>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/PrivateFrameworks/OSInstaller.framework/Resources/OSMes sageTracer</string>
        </array>
        <key>UserName</key>
        <string>root</string>
        <key>GroupName</key>
        <string>wheel</string>
        <key>WatchPaths</key>
        <array>
        <string>/var/db/.AppleDiagnosticsSetupDone</string>
        </array>
       </dict>
       </plist>
    Global login items
       /Library/Application Support/Lexmark/X1100 Series Scanner.bundle/Contents/SharedSupport/X1100 Series Button Monitor.app
       /Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app
    Font issues: 15
    Listeners
       launchd: printer
       launchd: printer
       cupsd: ipp
    User login items
       iAntiVirus
       - missing value
       Caffeine
       - /Applications/Caffeine.app
       Dropbox
       - /Applications/Dropbox.app
       X1100 Series Button Monitor
       - /Library/Application Support/Lexmark/X1100 Series Scanner.bundle/Contents/SharedSupport/X1100 Series Button Monitor.app
       EEventManager
       - /Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app
    Safari extensions
       LastPass
    Restricted files: 10398
    Elapsed time (s): 496

  • Blocking Ad servers via etc/host file not working

    In Snow Leopard I add a list of ad servers and direct them to 127.0.0.1 via the /ect/host file.
    I've configured the host file on my mac mini server and it doesn't work.
    i just want to block ads when using browsers ON the Mini.
    How can I achieve this?

    Yeah; that's an old-time Windows and Unix hack.
    There are ad-blocking extensions for all major web browsers, and those are easier to manage and maintain.
    Off the top, I'd have to check the search order to see if I was getting a response from remote DNS or from /etc/hosts here.
    If you're running a Mac OS X Server box, you're hopefully also running DNS services, and if you're running DNS services, then that's going to be where this hackery gets implemented. Add bogus zones. And if DNS gets an answer from its cache, I wouldn't tend to expect it to go read /etc/hosts (for performance reasons), for that matter.
    There may well be an ad-blocking DNS server around you can forward queries to, too; I haven't looked for that.
    If you make changes to your local /etc/hosts setup, try issuing the following to clear the cache:
    dnscacheutil -flushcache
    I'd recommend installing an ad-blocker. /etc/hosts is an old-school approach and can end up causing weirdnesses on errors, particularly if your box is (also) a DNS server for your LAN. (Also realize that Apple isn't documenting the /etc/hosts file in the Mac OS X Server 10.6 networking manual.)

  • /etc/hosts Prank Gone Wrong, need help restoring files to original

    Some friends were messing around on my computer and playing a joke on me
    using the sudo pico /etc/hosts command they were able to send me from sites I wanted to visit, like facebook, to sites I didnt want to visit..
    what they wrote was:
    67.55.108.167 facebook.com
    67.55.108.167 www.facebook.com
    I have since deleted it but the every time I go to facebook from another sight I am still redirected. The odd part is that I can go to facebook, but only after ive been redirected. What I mean is, I try to go to facebook, get redirected, then try to go to facebook right away. If I do that it works fine. Also Safari is the only internet browser that is effected. Opera and Firefox are both un effected. I tried uninstalling and reinstalling safari as well as using the same command as they did, but in reverse. Still no luck. Any suggestion? Unfortunately they didnt back up the /etc/hosts before they edited it

    You might also want to flush your DNS cache
    dscacheutil -flushcache
    Also make that password change.
    Look in System Preferences -> Accounts to see if your friends added any new admin accounts or granted an existing account admin access.
    If they know how to create ssh-keygen keys, they could have deposited a key in your /private/var/root/.ssh/authorized_keys2 file.
    There are any number of additional tricks they could have done, if they had admin access. I'm just scratching the surface.
    If you do trust these friends, then most likely they just played with /etc/hosts. If they are the kind of friends that get malicious, I would consider the "nuke and pave" reinstall.

Maybe you are looking for

  • Will Mountain Lion run on my mac mini running lion server?

    I like the new features of Mountain Lion and I am not utilizing the "server" functions of lion.  Will the new os effect the mini's operation?

  • Servlets

    how servlets communicate with each other? and how applet to servlet communication is achieved?

  • Co product object in backflush

    Hi, Experts, When we backflush with MFBF, we could chose make to order selection, When we input the Plan order choice, The Sale order line item are pop up. Actually we are charge to the Sale line item as a Cost object? Can we link the Production cost

  • Adobe after effects cc trial version error

    Hi I have been trying to download the trial version of after effects for the new cc(cs7) however it does not show up in the cc menu any way to get around this?

  • Do not have authorization for access with activity 03 on the InfoProvider

    Hi, I have developed new cube & ODS and created new Web Templates based on queries on these Infoproviders. I have created new role and adde these templates to menu of this Role. In Authorization profile i have used following Authorization objects. S_