OSX Terminal problem

Dear friends I'm a new mac user, I lost my recovery HD and searched the web to get it back, i saw an advise to do on terminal which says:
Last login: Wed Nov  6 13:13:23 on ttys000
khattars-mbp:~ Khattar$ history
    1  diskutil list
    2  chmod +x /Users/Khattar/Desktop/recovery.sh
    3  sudo /Users/Khattar/Desktop/recovery.sh
    4  chmod +x ~/Downloads/recovery.sh
    5  sudo ~/Downloads/recovery.sh
    6  exit
    7  chmod +x ~/Downloads/recovery.sh
    8  sudo ~/Downloads/recovery.sh
But it didnt help. I downloaded the Mavericks from the app store and got back my recovery HD.
My question is how to undo this terminal command above in green or what to write in terminal to cancel it's action?
Thanks in advance

well after i pasted that command on terminal i got the file recovery.sh on my download folder. and this is it when open
read -p "Ensure "RecoveryHDUpdate.dmg" and "InstallESD.dmg" are in your Downloads folder and press [Enter]"
#access dmtest from RecoveryHDUpdate.pkg
rm -rf /private/tmp/RecoveryHDUpdate
echo "Expanding RecoveryHDUpdate.pkg"
hdiutil attach -nobrowse ~/Downloads/RecoveryHDUpdate.dmg
pkgutil --expand /Volumes/Mac\ OS\ X\ Lion\ Recovery\ HD\ Update/RecoveryHDUpdate.pkg /tmp/RecoveryHDUpdate
#access BaseSystem.dmg and BaseSystem.chunklist
echo "Expanding InstallESD.dmg"
hdiutil attach -nobrowse ~/Downloads/InstallESD.dmg
#build Recovery partition
echo "Building Recovery Partition. Please Wait"
/tmp/RecoveryHDUpdate/RecoveryHDUpdate.pkg/Scripts/Tools/dmtest ensureRecoveryPartition / /Volumes/OS\ X\ Install\ ESD/BaseSystem.dmg 0 0 /Volumes/OS\ X\ Install\ ESD/BaseSystem.chunklist
#cleanup
echo "Cleaning up"
hdiutil eject /Volumes/Mac\ OS\ X\ Lion\ Recovery\ HD\ Update
hdiutil eject /Volumes/OS\ X\ Install\ ESD/
sudo touch /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
sudo kextcache -f -u /
exit 0
If I delete it i get all this **** finish?
I mean all that terminal command led me to this file? And if I delete it then its done as if nothing happened?

Similar Messages

  • Database termination Problem

    Hi every body ..plz help me on this..
    We are facing database termination problem in ECC6 production syste.
    Database: Oracle 10.2, O/S: Windows 2003. Spam  :27, SP level 13.
    Error is:
    Errors in file f:\oracle\p02\saptrace\background\p02_ckpt_6520.trc:
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: 'D:\ORACLE\P02\ORIGLOGB\CNTRL\CNTRLP02.DBF'
    ORA-27072: File I/O error
    OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 33) The process cannot access the file because another process has locked a portion of the file.
    When we are performing backup then data base termination occuring freequently.
    Give right solution as early as possible.
    Thanks,
    Nani.

    Hi,
    Have a look at below snote which actually speaks about the oracle error codes
    Snote :  546006
    within the Snote it says :-
    " If you cannot access a database file (for instance a data file, control file or RedoLog) for whatever reason, an ORA-270xx appears. The actual cause comes from additional error messages (usually in the operating system) that occur on ORA-270xx. "
    And as per your last update
    " ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: 'D:\ORACLE\P02\ORIGLOGB\CNTRL\CNTRLP02.DBF' "
    i think there is problem accessing the database control file. Hence you  are facing the above problem.
    I think if you recreate your control file i think, it should resolve the problem.
    Hope it will be helpful to resolve your problem.
    Rgds
    Radhakrishna D S

  • Weird Terminal problem with AIX

    Hi,
    I have kind of an odd problem with the Terminal.app that I hope someone can assist me in figuring out.
    I'm connecting to an AIX 5.3 server and the top portion of the window is always "cut off". It's there, it's just one screen up in the buffer and I can't figure out why. I can connect with iTerm and things display appropriately.
    Below is a link to a side by side picture of Terminal.app (left) and iTerm (right). If I scroll up in the Terminal.app buffer, I can see the missing lines from the top of the screen.
    http://picasaweb.google.com/andy.black10/Misc#5407855064094337554
    Thanks,
    Andy

    Minor point: would you please fill in your Forum profile information, at least the Mac OS X operating system version.
    I'm currently using Leopard and I can reproduce this problem in Terminal vs iTerm. I used your script output (thank you) in order to generate the escape sequences.
    BY THE WAY, if the script output contains any sensitive login info, you might want to change your password on the Pharamcy OSU system
    It looks like there is a Terminal problem handling Scrolling Regions as set by <esc>[1;24r. It looks like <esc>[0J is not erasing from the current cursor position to the end of the display, but rather it starts the erase above the current cursor position. The erase behavior without a scrolling region appears better, but not perfect.
    I would encourage you to file a bug with Apple at either:
    <http://www.apple.com/feedback/macosx.html>
    or
    <http://bugreporter.apple.com>
    Free ADC (Apple Developer Connection) account needed for BugReporter
    The BugReporter would be better.
    If you want, I have a little script that can be used to demonstrate the problem
    #!/usr/bin/env bash
    echo -e "e[1;24re[He[0Je[He[0Je[?6he[1;24re[He[0Jc"
    for j in {1..3}
    do
    echo BEFORE should remain on screen $j $j $j $j $j
    done
    for j in {4..23}
    do
    echo FILLER should be erased $j $j $j $j $j
    done
    echo -e "e[4;24re[He[0Jc"
    for j in {4..23} # our next command prompt will be 24th line
    do
    echo AFTER should remain on screen $j $j $j $j $j
    done
    Here is example output from Terminal:
    BEFORE should remain on screen 1 1 1 1 1
    AFTER should remain on screen 4 4 4 4 4
    AFTER should remain on screen 5 5 5 5 5
    AFTER should remain on screen 6 6 6 6 6
    AFTER should remain on screen 7 7 7 7 7
    AFTER should remain on screen 8 8 8 8 8
    AFTER should remain on screen 9 9 9 9 9
    AFTER should remain on screen 10 10 10 10 10
    AFTER should remain on screen 11 11 11 11 11
    AFTER should remain on screen 12 12 12 12 12
    AFTER should remain on screen 13 13 13 13 13
    AFTER should remain on screen 14 14 14 14 14
    AFTER should remain on screen 15 15 15 15 15
    AFTER should remain on screen 16 16 16 16 16
    AFTER should remain on screen 17 17 17 17 17
    AFTER should remain on screen 18 18 18 18 18
    AFTER should remain on screen 19 19 19 19 19
    AFTER should remain on screen 20 20 20 20 20
    AFTER should remain on screen 21 21 21 21 21
    AFTER should remain on screen 22 22 22 22 22
    AFTER should remain on screen 23 23 23 23 23
    and here is example output from iTerm:
    BEFORE should remain on screen 1 1 1 1 1
    BEFORE should remain on screen 2 2 2 2 2
    BEFORE should remain on screen 3 3 3 3 3
    AFTER should remain on screen 4 4 4 4 4
    AFTER should remain on screen 5 5 5 5 5
    AFTER should remain on screen 6 6 6 6 6
    AFTER should remain on screen 7 7 7 7 7
    AFTER should remain on screen 8 8 8 8 8
    AFTER should remain on screen 9 9 9 9 9
    AFTER should remain on screen 10 10 10 10 10
    AFTER should remain on screen 11 11 11 11 11
    AFTER should remain on screen 12 12 12 12 12
    AFTER should remain on screen 13 13 13 13 13
    AFTER should remain on screen 14 14 14 14 14
    AFTER should remain on screen 15 15 15 15 15
    AFTER should remain on screen 16 16 16 16 16
    AFTER should remain on screen 17 17 17 17 17
    AFTER should remain on screen 18 18 18 18 18
    AFTER should remain on screen 19 19 19 19 19
    AFTER should remain on screen 20 20 20 20 20
    AFTER should remain on screen 21 21 21 21 21
    AFTER should remain on screen 22 22 22 22 22
    AFTER should remain on screen 23 23 23 23 23

  • Nokia C5-03 and Mac OSX Lion - Problems copying files to phone in Mass Storage mode

    Whenever I try to load more than one file from my iMac (early 2008, OSX Lion 10.7.2) to my new Nokia C5-03 in Mass Storage mode —since the files are MP3s and Multimedia Transfer doesn’t seem to work at all, I keep on getting asked which transfer mode I want to activate for several times, I always choose Mass Storage, and then the first file starts copying, but when it ends with the first one I have to wait for ±30s only to get asked the same again and again until the second file starts copying, and so on.
    It’s driving me crazy, I’ve tried setting in the USB connectivity options not to ask me for the mode when I connect the phone, but it doesn’t work either. It still goes very slow and a lot of “USB Mass Storage transfer mode activated” messages appear.
    I’ve tested it with a friend’s C5-03 and it’s still the same, but when connecting them to a Windows computer everything goes great and fast. Has somebody had this problem before? Is there a solution to this? I don’t know if this is the correct board to post this, sorry if it’s not.
    Thanks in advance.
    PS: Sorry if there are any mistakes or my English sounds weird, i’m Spanish.

    Hi,
    Can you try the suggestions below?
    -Go to Add/Remove Programs in Control Panel (called Programs
    and Features in Microsoft Windows 7).
    Select Nokia Ovi Suite in the list of applications and click
    Change/Remove.
    In the dialog that appears, choose Repair.
    - Click Nokia Connectivity Cable Driver and repair
    -Try creating the connection between your phone and computer
    totally from scratch. Start by disconnecting your phone. In
    Nokia Ovi Suite, select Tools > Options > My devices. Select
    your phone at the top of the window and click Remove this
    device.
    Then, select Tools > Add new device, and follow the
    instructions to reconnect the phone. 
    If this doesn't solve the problem,
    -Uninstall the following programs withAdd/Remove Programs in
    Control Panel (called Programs and Features in Microsoft
    Windows 7):
    Nokia Connectivity Cable Driver
    Nokia Ovi Suite
    PC Connectivity Solution
    Then, download and install the latest version of Nokia Ovi
    I hope this helps.
    Br
    Mahayv

  • Statement terminator problems when exporting data with SQL Developer 3.2

    I've ran across what appears to be a bug with SQL Developer 3.2.20.09. If someone can let me know if this is indeed a bug, or just something I need to configure differently, please let me know.
    The problem is related to exporting a database as a SQL script, and terminator characters at the end of "create" statements, especially when columns have comments, and problems that occur when using SQLPlus to run the export script to create the tables. With the old SQL Developer 1.5.4, with the "Terminator" and "Pretty Print" options checked, statements like the following are generated:
    -- DDL for Type NUM_ARRAY
    CREATE OR REPLACE TYPE "NUM_ARRAY"
    IS TABLE OF NUMBER(20)
    -- DDL for Sequence MYTABLE_SEQ
    CREATE SEQUENCE "MYTABLE_SEQ" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ;
    -- DDL for Table MYTABLE
    CREATE TABLE "MYTABLE"
    (     "MYTABLE_ID" NUMBER,
         "COL2" NUMBER,
         "COL3" NUMBER
    -- DDL for Table ANOTHERTABLE
    CREATE TABLE "ANOTHERTABLE"
    (     "ANOTHERTABLE_ID" NUMBER,
         "COL2" VARCHAR2(1024),
         "COL3" VARCHAR2(1024)
    COMMENT ON COLUMN "ANOTHERTABLE"."ANOTHERTABLE_ID" IS 'This is a comment.';
    When I then run the script using SQLPlus, everything works fine. However, with SQL Developer 3.2.20.09, with the same options enabled, the same statements are generated like this:
    -- DDL for Type NUM_ARRAY
    CREATE OR REPLACE TYPE "NUM_ARRAY"
    IS TABLE OF NUMBER(20)
    -- DDL for Sequence MYTABLE_SEQ
    CREATE SEQUENCE "MYTABLE_SEQ" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ;
    -- DDL for Table MYTABLE
    CREATE TABLE "MYTABLE"
    (     "MYTABLE_ID" NUMBER,
         "COL2" NUMBER,
         "COL3" NUMBER
    -- DDL for Table ANOTHERTABLE
    CREATE TABLE "ANOTHERTABLE"
    (     "ANOTHERTABLE_ID" NUMBER,
         "COL2" VARCHAR2(1024),
         "COL3" VARCHAR2(1024)
    COMMENT ON COLUMN "ANOTHERTABLE"."ANOTHERTABLE_ID" IS 'This is a comment.';
    Notice all of the extra slashes in there. If a slash is not used as a statement terminator, SQLPlus treats slashes as a command to repeat the last SQL statement, which causes many errors about tables or sequences already existing. So, I tried removing the "Terminator" flag from the export options. This lead to statements that looked a bit more promising:
    -- DDL for Type NUM_ARRAY
    CREATE OR REPLACE TYPE "NUM_ARRAY"
    IS TABLE OF NUMBER(20)
    -- DDL for Sequence MYTABLE_SEQ
    CREATE SEQUENCE "MYTABLE_SEQ" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE
    -- DDL for Table MYTABLE
    CREATE TABLE "MYTABLE"
    (     "MYTABLE_ID" NUMBER,
         "COL2" NUMBER,
         "COL3" NUMBER
    -- DDL for Table ANOTHERTABLE
    CREATE TABLE "ANOTHERTABLE"
    (     "ANOTHERTABLE_ID" NUMBER,
         "COL2" VARCHAR2(1024),
         "COL3" VARCHAR2(1024)
    COMMENT ON COLUMN "ANOTHERTABLE"."ANOTHERTABLE_ID" IS 'This is a comment.'
    The big problem, though, is in the statement for the table with a comment. Notice that there are two statements, but there is not a semicolon after either of them. This unfortunately causes the "COMMENT" statement to be appended to the "CREATE TABLE" statement before being executed, which causes the table to not be created (which causes even more errors later on when the script attempts to populate the table with data).
    So, it would appear that this is a bug, but I'm not sure. Is there a way I can configure the export options to make SQL Developer export these statements like it used to in older versions?
    Thanks,
    -Bill

    >
    So, it would appear that this is a bug, but I'm not sure.
    >
    That would be a bug. Thanks for reporting it and providing the detailed example.
    >
    Is there a way I can configure the export options to make SQL Developer export these statements like it used to in older versions?
    >
    No.
    Leave the thread open. One of the developers for sql developer should be monitoring the forum and can provide more information.

  • Terminal problems

    Hi everyone,
    Every time I open terminal I get the message below. This only happens in one account in the computer, it does not happen in other accounts. I will appreciate any help to fix the problem. I have a mac book pro, keyboard in spanish, and I am using leopard 10.5.1, but the problem is coming since tiger, I emigrate users from an old mac book pro with tiger.
    The message is as follows:
    Last login: Sun Jan 20 08:37:00 on ttys000
    perl: warning: Setting locale failed.
    perl: warning: Please check that your locale settings:
    LC_ALL = (unset),
    LANG = "UTF-8"
    are supported and installed on your system.
    perl: warning: Falling back to the standard locale ("C").
    Macintosh:~ javier$

    If I go to Terminal-> Preferences _> settings and UNFLAG the last sentence "Set LANG environment variable on startup" then it works … now the sentence that appear in terminal changed a little bit
    Well, in the Advanced Settings, I have the "Set LANG environment variable on startup" checkbox ticked, and the "International character encoding is set to "Unicode (UTF-8)". In the "Shell" tab, under "Startup" the "Run command" is unchecked and the text box is empty. My environment has the required locale settings:
    macbook:~ michaelc$ echo $LC_ALL
    macbook:~ michaelc$ echo $LANG
    en_GB.UTF-8
    I don't see any change in your Terminal output between your first post and your latest one?
    Also, you don't mention what you have set in Terminal > Preferences > Startup, which is what I referred to in my previous post.

  • DSM terminator problem with anonymous user

    Hi friends,
    When I am in the portal as an anonymous user and close the browser, the DSM terminator window is opened showing the logon screen.
    Somebody knows how to solve this problem?
    Thank's in advance!

    Hi Michel,
    Go to system Administration -->system configuration --> service configuration -->Applications
    >com.sap.portal.appintegrator>services
    >common_configuration> set Alertsession Management Mismatch to false.
    Regards
    Arun

  • Virtual terminal problems (konsole, lxterminal)

    Hi,
    I did not find the solution for my particular problem, where the virtual terminal can't connect to the bash execution.
    I'm using arch linux including all repos [testing, community-testing], and after a update, I'm unable to run konsole or lxterminal. However, xterm does work. I'm using kde 4 enviorment.
    Whenever I run konsole from xterm I get:
    $ konsole
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    konsole(3236)/kdecore (KPty/K3Process) KPty::open: Can't open a pseudo teletype
    konsole(3236) Konsole::Pty::flowControlEnabled: Unable to get flow control status, terminal not connected.
    An konsole window appears, but no prompt or anything. If I do an ps -A | grep bash it gives an bash execution not connected anywhere:
    3288 ? 00:00:00 bash
    if I kill it, then this message appears on the konsole terminal:
    Warning: Program '/bin/bash' crashed.
    I did search for it before, and found out the topic Terminal not running, but my devpts and shm are mounted correctly.
    mount
    proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
    sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
    dev on /dev type devtmpfs (rw,nosuid,relatime,size=4082808k,nr_inodes=1020702,mode=755)
    run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
    /dev/sda2 on / type ext4 (rw,relatime,data=ordered)
    securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
    tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,relatime)
    devpts on /dev/pts type devpts (rw,relatime,mode=600,ptmxmode=000)
    tmpfs on /sys/fs/cgroup type tmpfs (rw,nosuid,nodev,noexec,mode=755)
    cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)
    pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
    cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
    cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpuacct,cpu)
    cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
    cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
    cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
    cgroup on /sys/fs/cgroup/net_cls type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls)
    cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
    systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=28,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
    tmpfs on /tmp type tmpfs (rw)
    mqueue on /dev/mqueue type mqueue (rw,relatime)
    hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
    configfs on /sys/kernel/config type configfs (rw,relatime)
    binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
    none on /sys/kernel/debug type debugfs (rw,relatime)
    fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
    /dev/sda1 on /Fedora type ext4 (rw,relatime,data=ordered)
    /dev/sdb1 on /windows type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
    /dev/sdb2 on /data type ext4 (rw,relatime,data=ordered)
    gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=100)
    Any clues?
    Regards
    Diogo

    undeadb wrote:Mostly everything, was 4 months without a update. Got over 2GB of downloads. It did update kde.
    Then I think the problem is related to the merging of all applications into "/usr/bin". "/bin/bash" kind of doesn't exist anymore.
    Did you read the Arch Linux announcements before updating?
    If you do think that's the problem, then I don't know what you can do to fix it. I'm not smart enough. I'd probably just reinstall the OS.

  • Gnome-terminal problems

    Hi there,after upgrade to gnome-terminal 3.12.1-1,I found some errors appears :
    First, when I want to open a new terminal use my custom shortcuts Ctrl+Alt+T,sometimes it will make the whole screen freeze, and I have to switch to another TTY to kill it.Then I check my system log, there are many warnings like:
    org.gnome.Terminal[958]: (gnome-terminal-server:7346): GLib-GObject-WARNING **: g_object_weak_unref: couldn't find weak ref 0x7faec0b2c420(0x14e1550)
    Is there something wrong ?I also try to compile it by myself , but it gives a warning:
    server.c: In function ‘main’:
    server.c:113:5: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result]
         (void) chdir ("/");
         ^
    are all the problems caused by this ?How could I handle this, can anyone fix that?Thanks for your works.Sorry for my poor English.

    That compiler warning is probably benign (harmless).  The function appears to change the working directory and then return a void pointer.  The pointer is not used because, apparently, in this case it is not needed.

  • Flash Player 9 mac osx install problem

    For ages now I've been trying to install flash 9 on my mac (OSX latest version), and it doesnt work. I can download the installer, open it and run it. The installation works up until "4 items remaining" when the install bar starts showing grey and white stripes with a message above or below which says "searching macintosh hd". This goes on indefinitely, Ive tried leaving it for a while and eventually it just freezes. At the moment I have absolutely no internet video capability, not anything flash based anyway. help me please.

    I have the similar problem on my iMac Intel Duo Core running OS X 10.4.9. The Installer told me that I don't have the access privileges to install Flash when the progress bar shows 1 item remaining (flashplayer.xtp). I tried repairing disk permission with Onyx and starting up from the OS X Install DVD but all these didn't help. I am using the correct installer (the Universal Binary one).
    ANY HELP APPRECIATED!!!
    iMac Duo Core/PowerBook G4/Power Mac G4   Mac OS X (10.4.9)  

  • OSX Mavericks problems: Applications not opening/crashing before opening. General slowness

    I have a Macbook Pro 2011 model, 2.4ghz and 4GB memory running current Mavericks. Has been working completely fine up until the other day.
    At first it started acting a bit sluggish, freezing on some apps and them taking a while to open. Then out of nowhere it fully froze to the point where I had to power off using the power button. Since then only core applications will open. Safari, mail, utilities etc all open fine and just run slowly, Safari in particular can take over a minute to load a page. Pretty much all of the other applications won't open. Chrome was the first to stop working, then Word, Pages and some games. I click on them on the dock and the icon bounces up and down but they just never open.
    I've searched on this forum and tried some of the suggestions. I tried repairing disk permissions but it hasn't done anything, tried repairing the disk but it hasn't done anything. The hard drive is 1TB and has 400GB of free space so it's not overly full.
    The first thing I did when the problem occured was to check activity monitor to see if anything was rinsing my CPU. Everything seemed normal with usage at about 15% with only one app open. After restarting I have the same problem, but now CPU is at nearly 100% usage with only Safari running. Some of the applications I can't actually open are appearing on the processes list but not appearing as open.
    Problem still exists during Safe Mode, and I have no current back ups to revert to. All I can think to try is to back up currently with Time Machine and then to Reinstall the OSX or possibly do a full restore. Would the problem I'm facing not come back immediately when I restore to my back up, thus effectively making the restore pointless?
    Is there anything else you can suggest to try?
    Thanks in advance for any help

    Encountered same problem, solved by downloading Prokit 4.5 and installing, then Aperture started right up. Good luck.
    http://support.apple.com/downloads/ProKit45

  • Oracle Terminal problem

    I have a problem running Oracle Terminal in command-line mode on Linux. I am very familiar with Oracle Terminal on Windows, but not with Linux. Unfortunately, I need to support Oracle Forms6i on Linux in character mode for the hand-held, wireless, bar-code scanners we use in our warehouse. They have a very limited keypad and we want to change a couple of the default key mappings for Oracle Forms6i on Linux.
    I opened a TAR on this issue (3595315.999) a couple weeks ago, but so far it has not been resolved.
    Does anyone know where to find documentation for running Oracle Terminal for Forms6i on Linux in character mode?
    Or, does anyone know if the conversion utilities exist for Windows to convert the Oracle Terminal resource files from binary to text and vice versa. I have these utilities for Linux, but not for Windows. If I could get those for Windows, I could transfer the Linux resource file to Windows, edit it there and transfer it back.

    It's look like a joke. When I change NLS_LANG from POLISH_POLAND to AMERICA_AMERICAN in Developer Home everything start fine with English menu but... work heeehhhh........
    Thx For Right Direction :)))

  • Terminal problem in leopard

    Hey, i copied his over from the general forum
    i did a fresh install on my macbook, and i reinstalled all my dev environment. I had some trouble with this and i may have messed something up in the process, but basically i have no prompt and it says login in the titlebar. thisafter i installed mysql, set up apache the way i need with virtual hosts, added stuff to my hosts file, and installed the fixed leopard mysql prefpane (plus someother stuff like setting up root password).
    The only .bash file i have in my home directory is .bash_history

    I'm ran into the same problem. When I ran 'sudo mysqld_safe5 &', it would kill my Terminal in exactly the way you describe. Turns out the 'sudo' was still hanging around, I was able to kill the 'sudo' processes via Activity Monitor (maybe sure you show 'All Processes'), after that I had my terminal back. Launching Mysql at boot via launchd worked for me: http://hivelogic.com/articles/installing-mysql-on-mac-os-x/, skip to "Auto-Starting Mysql" if you already have Mysql installed.
    Good luck!

  • Non-GUI Terminal problem.

    I am having a problem with the terminal at boot (not the terminal emulator). I could have sworn there was a cursor/insertion point (aka flashing vertical bar) in command line. But now whenever I boot into command line, the insertion point is gone.

    I know of no such thing but I am told the hardware sometimes does its own.

  • Terminal problem

    Hi.
    I’ve got the problem with Terminal: commands are not working as they have to.
    For example I want to get power management settings with this command: pmset -g
    That’s what I see:
    Gex-Mac:~ evgeny$ pmset -g
    Active Profiles:
    Battery Power -1
    AC Power -1*
    Currently in use:
    Gex-Mac:~ evgeny$
    It’s clear that information displayed is insufficient.
    Also I can’t do some other things, such as: change hibernation mode, disable sudden motion sensor, etc.
    When computer is booted from DVD Terminal works correctly.
    I've also installed OS X 10.6 from DVD to external hard drive, boot from it and nothings's changed.
    I was given an advice to reset the SMC but it didn't help.
    Any ideas?
    Thanks in advance!

    For information on the usual PRAM reset, SMU reset, and related shortcuts, see [HT1533|http://support.apple.com/kb/ht1533], [HT1379|http://support.apple.com/kb/ht1379], [resetting PRAM|http://docs.info.apple.com/article.html?path=Mac/10.6/en/26871.html], and related documents.

Maybe you are looking for

  • Httpd error log file appears to be missing

    I'm having a somewhat frustrating and seemingly elementary problem with the Server, as freshly installed. I did drag a Web Config.plist to restore the web settings from another server, and I have a feeling that this action might have caused a hiccup

  • Excise Rejection Codes

    Hi, I have configured Excise Rejection code in Devolopment server. But its a non transportable object. For maintaining the same in Production server , authorization for SM30 is required. But SM30 authorization cannot be provided. Is there any other w

  • Raise Without Handler

    I was having trouble printing the latest iPad user manual (pages 16 and 35 wouldn't print correctly although the other 126 were ok), so I downloaded the latest Reader. It corrupted my home screen and I couldn't open anything. Every time I tried to op

  • X2-00 themes and tones

    I write to say I have a problem with my nokia x2-00, after turning it off or connect to the PC via USB ignores the changes I made and sets the theme and tone of the operator, so I have to reconfigure, why happen? hope can help me. Thank you. MODERAT

  • Please help SQL query

    why this works fine SELECT * FROM ( SELECT ename,deptno,sal ,ROWNUM RN FROM emp) WHERE MOD(RN,3)=0 while SELECT rownum FROM employees WHERE MOD(Rownum,3)=0 wotnh works why this happenssssssssssssss