[resolved] Can not install mysql

Oooops, I fixed it. Somehow /tmp had wrong permissions..
Hello,
after an upgrade my mysql dameon did not work anymore so I did what https://bbs.archlinux.org/viewtopic.php?pid=889846 says and removed all configs and removed it.
Now pacman -S mysql gives my this
# pacman -S mysql
resolving dependencies...
looking for inter-conflicts...
Targets (1): mysql-5.5.11-1
Total Download Size: 0.00 MB
Total Installed Size: 62.59 MB
Proceed with installation? [Y/n] y
(1/1) checking package integrity [################################################] 100%
(1/1) checking for file conflicts [################################################] 100%
(1/1) installing mysql [################################################] 100%
Installing MySQL system tables...
ERROR: 1 Can't create/write to file '/tmp/#sql_1d4d_0.MYI' (Errcode: 13)
110503 9:20:58 [ERROR] Aborting
110503 9:20:58 [Note] /usr/bin/mysqld: Shutdown complete
Installation of system tables failed! Examine the logs in
/var/lib/mysql for more information.
You can try to start the mysqld daemon with:
shell> /usr/bin/mysqld --skip-grant &
and use the command line tool /usr/bin/mysql
to connect to the mysql database and look at the grant tables:
shell> /usr/bin/mysql -u root mysql
mysql> show tables
Try 'mysqld --help' if you have problems with paths. Using --log
gives you a log in /var/lib/mysql that may be helpful.
Please consult the MySQL manual section
'Problems running mysql_install_db', and the manual section that
describes problems on your OS. Another information source are the
MySQL email archives available at http://lists.mysql.com/.
Please check all of the above before mailing us! And remember, if
you do mail us, you MUST use the /usr/scripts/mysqlbug script!
Optional dependencies for mysql
perl-dbi
perl-dbd-mysql
The hostname.err contains
110503 09:29:53 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
110503 9:29:53 InnoDB: The InnoDB memory heap is disabled
110503 9:29:53 InnoDB: Mutexes and rw_locks use GCC atomic builtins
110503 9:29:53 InnoDB: Compressed tables use zlib 1.2.5
/usr/bin/mysqld: Can't create/write to file '/tmp/ibwoHE0m' (Errcode: 13)
110503 9:29:54 InnoDB: Error: unable to create temporary file; errno: 13
110503 9:29:54 [ERROR] Plugin 'InnoDB' init function returned error.
110503 9:29:54 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
110503 9:29:54 [ERROR] Unknown/unsupported storage engine: InnoDB
110503 9:29:54 [ERROR] Aborting
110503 9:29:54 [Note] /usr/bin/mysqld: Shutdown complete
110503 09:29:54 mysqld_safe mysqld from pid file /var/lib/mysql/icarus.pid ended
And my my.cnl (I didnt touch it)
1 # MySQL config file for medium systems.
2 #
3 # This is for a system with little memory (32M - 64M) where MySQL plays
4 # an important part, or systems up to 128M where MySQL is used together with
5 # other programs (such as a web server)
6 #
7 # MySQL programs look for option files in a set of
8 # locations which depend on the deployment platform.
9 # You can copy this option file to one of those
10 # locations. For information about these locations, see:
11 # http://dev.mysql.com/doc/mysql/en/option-files.html
12 #
13 # In this file, you can use all long options that a program supports.
14 # If you want to know which options a program supports, run the program
15 # with the "--help" option.
16
17 # The following options will be passed to all MySQL clients
18 [client]
19 #password = your_password
20 port = 3306
21 socket = /var/run/mysqld/mysqld.sock
22
23 # Here follows entries for some specific programs
24
25 # The MySQL server
26 [mysqld]
27 port = 3306
28 socket = /var/run/mysqld/mysqld.sock
29 datadir = /var/lib/mysql
30 skip-external-locking
31 key_buffer_size = 16M
32 max_allowed_packet = 1M
33 table_open_cache = 64
34 sort_buffer_size = 512K
35 net_buffer_length = 8K
36 read_buffer_size = 256K
37 read_rnd_buffer_size = 512K
38 myisam_sort_buffer_size = 8M
39
40 # Don't listen on a TCP/IP port at all. This can be a security enhancement,
41 # if all processes that need to connect to mysqld run on the same host.
42 # All interaction with mysqld must be made via Unix sockets or named pipes.
43 # Note that using this option without enabling named pipes on Windows
44 # (via the "enable-named-pipe" option) will render mysqld useless!
45 #
46 skip-networking
47
48 # Replication Master Server (default)
49 # binary logging is required for replication
50 log-bin=mysql-bin
51
52 # binary logging format - mixed recommended
53 binlog_format=mixed
54
55 # required unique id between 1 and 2^32 - 1
56 # defaults to 1 if master-host is not set
57 # but will not function as a master if omitted
58 server-id = 1
59
60 # Replication Slave (comment out master section to use this)
61 #
62 # To configure this host as a replication slave, you can choose between
63 # two methods :
64 #
65 # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
66 # the syntax is:
67 #
68 # CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
69 # MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
70 #
71 # where you replace <host>, <user>, <password> by quoted strings and
72 # <port> by the master's port number (3306 by default).
73 #
74 # Example:
75 #
76 # CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
77 # MASTER_USER='joe', MASTER_PASSWORD='secret';
78 #
79 # OR
80 #
81 # 2) Set the variables below. However, in case you choose this method, then
82 # start replication for the first time (even unsuccessfully, for example
83 # if you mistyped the password in master-password and the slave fails to
84 # connect), the slave will create a master.info file, and any later
85 # change in this file to the variables' values below will be ignored and
86 # overridden by the content of the master.info file, unless you shutdown
87 # the slave server, delete master.info and restart the slaver server.
88 # For that reason, you may want to leave the lines below untouched
89 # (commented) and instead use CHANGE MASTER TO (see above)
90 #
91 # required unique id between 2 and 2^32 - 1
92 # (and different from the master)
93 # defaults to 2 if master-host is set
94 # but will not function as a slave if omitted
95 #server-id = 2
96 #
97 # The replication master for this slave - required
98 #master-host = <hostname>
99 #
100 # The username the slave will use for authentication when connecting
101 # to the master - required
102 #master-user = <username>
103 #
104 # The password the slave will authenticate with when connecting to
105 # the master - required
106 #master-password = <password>
107 #
108 # The port the master is listening on.
109 # optional - defaults to 3306
110 #master-port = <port>
111 #
112 # binary logging - not required for slaves, but recommended
113 #log-bin=mysql-bin
114
115 # Uncomment the following if you are using InnoDB tables
116 #innodb_data_home_dir = /var/lib/mysql
117 #innodb_data_file_path = ibdata1:10M:autoextend
118 #innodb_log_group_home_dir = /var/lib/mysql
119 # You can set .._buffer_pool_size up to 50 - 80 %
120 # of RAM but beware of setting memory usage too high
121 #innodb_buffer_pool_size = 16M
122 #innodb_additional_mem_pool_size = 2M
123 # Set .._log_file_size to 25 % of buffer pool size
124 #innodb_log_file_size = 5M
125 #innodb_log_buffer_size = 8M
126 #innodb_flush_log_at_trx_commit = 1
127 #innodb_lock_wait_timeout = 50
128
129 [mysqldump]
130 quick
131 max_allowed_packet = 16M
132
133 [mysql]
134 no-auto-rehash
135 # Remove the next comment character if you are not familiar with SQL
136 #safe-updates
137
138 [myisamchk]
139 key_buffer_size = 20M
140 sort_buffer_size = 20M
141 read_buffer = 2M
142 write_buffer = 2M
143
144 [mysqlhotcopy]
145 interactive-timeout
I can't start mysql daemon, it says "FAIL"
Last edited by cyberius (2011-05-03 08:35:56)

hi DILIPDKJ,
Just to verify, is this the PowerDVD software that you're trying to install?
PowerDVD 10 BD
v10.0.3029.52
IN12STW153WW5.exe
114 MB
Regards
Did someone help you today? Press the star on the left to thank them with a Kudo!
If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
Follow @LenovoForums on Twitter!

Similar Messages

  • HT1349 I can not install iTunes on my PC, I get an error message: "Unable to remove the previous version of Apple Software Update". How should I resolve this problem.

    I can not install iTunes on my PC, I get an error message: "unable to remove previous version Apple Software Update"

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get aCode 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Updateentries and click "Remove", as per the following screenshot:
    Next, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • How do I update to ios 4.3 or higher? I am unable to install apps. I already restored and now I can not install apps

    I have an iPod touch that was my niece's and we restored it and now we can not install apps. It says that it needs an ios update but i cannot find where the update is available. My iTunes says it is the latest version and the web site doesn't have any updates that I can find

    See the chart below to determine whether you can upgrade your device and what you can upgrade to.
    IPhone, iPod Touch, and iPad iOS Compatibility Chart
         Device                                       iOS Verson
    iPhone 1                                      iOS 3.1.3
    iPhone 3G                                   iOS 4.2.1
    iPhone 3GS                                 iOS 6.1.x
    iPhone 4                                      iOS 6.1.x
    iPhone 4S                                    iOS 6.1.x
    iPhone 5                                      iOS 6.1.x
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1.x
    iPod Touch 5                               iOS 6.1.x
    iPad 1                                          iOS 5.1.1
    iPad 2                                          iOS 6.1.x
    iPad 3                                          iOS 6.1.x
    iPad 4                                          iOS 6.1.x
    iPad Mini                                     iOS 6.1.x
    =====================================
    Select the method most appropriate for your situation.
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • Can not install any version JSDK or JRE on Win2K?

    I am having problems installing any JRE, JDK version on Win2K and I noticed on temp file
    under pftE~tmp\disk1\os.dat I have;
    [Info]
    Name=PLATFORM
    Version=1.00.000
    [0x0009]
    OS Independent=0x0000000000000000
    Windows 3.1 & 3.11=0x0000000000000001
    Windows 95=0x0000000000000010
    Windows NT 3.51 (Intel)=0x0000000000001000
    Windows NT 3.51 (Alpha)=0x0000000000002000
    Windows NT 3.51 (MIPS)=0x0000000000004000
    Windows NT 4.0 (Intel)=0x0000000000010000
    Windows NT 4.0 (Alpha)=0x0000000000020000
    Windows NT 4.0 (MIPS)=0x0000000000040000
    Does this mean that under Win2K is I can not install?
    The symptoms are:
    1. Goes through extracting files to temp directory, and then HANGS!
    What AM I missing?
    thanks,
    gumby

    [jdavid],
    Hmmmm ..... it could another issue with the Win2K operating system i.e. the COMMAND.COM version.
    I'll cut and paste the section of the Release Notes that might give some clues:
    ------------ extracting from Release Notes ----------
    Support for Windows 2000
    In the English locale, version 1.3.1 of the Java 2 SDK is supported on Windows 2000 Professional, Windows 2000 Server, Window 2000 Advanced Server. The
    DataCenter edition of Windows 2000 is not supported. In non-English locales, only the Professional edition of Windows 2000 is supported. Known issues with
    Windows 2000 include:
    Windows 2000 and multiple-monitor support - Multiple monitors are not yet fully functional on the Windows 2000 platform. In particular, 256 color mode
    only behaves properly if all monitors are set to 256 color mode. 16-bit (or higher) color mode is highly recommended.
    If you see the following error message on Windows 2000 during installation
    config.nt. The system file is not suitable for running MS-DOS
    and Microsoft Windows Applications.
    it indicates a problem with the %SystemRoot%\System32\COMMAND.COM file that has been seen on some installations of Windows 2000. If you
    encounter this error message when you try to launch the installer, consult the Microsoft web site at
    http://support.microsoft.com/support/kb/articles/Q142/2/71.asp
    for information about resolving the problem.
    Process hang - An application may hang because of a deadlock in Ntdll on Microsoft Windows 2000 Professional, Server, and Advanced Server
    operating systems. This problem may occur, for example, in applications that use input and output streams of java.lang.Process objects. See the
    Microsoft Support Services web site for more information, including a fix:
    http://support.microsoft.com/support/kb/articles/Q271/1/82.ASP
    --------------- end of extraction ----------------
    Let me know if this is the case with your machine and the J2SE SDK 1.3.1_01 installation package.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • I can not install the Cisco IOS on the AP 1200.

    I can not install the Cisco IOS on the AP 1200 series.
    Displays error:
    ap: tar -xtract tftp: / / 192.168.1.11/temp/c1200-k9w7-tar.123-7.JA3.tar flash:
    tftp: / / 192.168.1.11/c1200-k9w7-tar.123-7.JA3.tar: connection timed out
    These procedures were done:
    flash_init
    tftp_init
    ether_init
    set IP_ADDR 192.168.1.21
    set NETMASK 255.255.255.0
    set DEFAULT_ROUTER 192.168.1.11    (PC's IP with FTP).
    Can someone please help?

    Resolved
    Recommendations were made by Mr. Talal Fraij.
    Tftpd32 application was used.
    Image File (C1200-k9w7-tar.123-7.JA3.tar) root directory.
    Antivirus disabled.
    Firewall disabled.
    I want to acknowledge the help of
    Mr. Talal Fraij.
    If not for your help would be without sleep for a long time .. kkkk

  • Can not install OpenMPI

    Hello
    I want to use openmpi for a build but I can not install it because it wants to download 216MB onto my server
    # pacman -S openmpi
    resolving dependencies...
    :: There are 3 providers available for libgl:
    :: Repository extra
    1) mesa-libgl 2) nvidia-304xx-utils 3) nvidia-libgl
    Enter a number (default=1): 1
    looking for inter-conflicts...
    Packages (41): cairo-1.12.16-1 damageproto-1.2.1-2 dnssec-anchors-20130320-1
    elfutils-0.156-2 fixesproto-5.0-2 fontconfig-2.11.0-1
    freetype2-2.5.0.1-2 gcc-fortran-4.8.2-3 hwloc-1.7.2-1
    kbproto-1.0.6-1 keyutils-1.5.5-5 krb5-1.11.3-1 ldns-1.6.16-1
    libdrm-2.4.47-1 libedit-20130601_3.1-1 libpciaccess-0.13.2-2
    libpng-1.6.6-1 libvdpau-0.7-1 libx11-1.6.2-1 libxau-1.0.8-2
    libxcb-1.9.1-2 libxdamage-1.1.4-1 libxdmcp-1.1.1-1
    libxext-1.3.2-1 libxfixes-5.0.1-1 libxml2-2.9.1-3
    libxrender-0.9.8-1 libxxf86vm-1.1.3-1 llvm-libs-3.3-1
    mesa-9.2.2-1 mesa-libgl-9.2.2-1 openssh-6.3p1-1
    pixman-0.30.2-1 renderproto-0.11.1-2 valgrind-3.8.1-4
    wayland-1.3.0-1 xcb-proto-1.8-2 xextproto-7.2.1-1
    xf86vidmodeproto-2.3.1-2 xproto-7.0.24-1 openmpi-1.6.5-1
    Total Download Size: 37.44 MiB
    Total Installed Size: 216.00 MiB
    :: Proceed with installation? [Y/n] ^C
    Interrupt signal received
    Why the heck is it trying to install wayland and all the graphic crap?

    piwwo wrote:
    Scimmia wrote:Because it requires hwlock, which requires cairo. If you don't want all of that, I'd first check to see if you could build hwlock without cairo.
    Hmm...how could I do that? Build from source?
    Yup.
    Edit the PKGBUILD https://projects.archlinux.org/svntogit … es/openmpi
    You have to remove the '--with-hwloc=/usr \' and hwloc from the dependencies.

  • Can not install device driver in Windows 8.1

    I can not install driver of my webcam(Odyssey OD 202) windows 8.1 (upgraded from windows 8)
    The USB webcam is shown in Device manager.
    When I attempt to update driver and search for it automatically it shows the following message.

    Hi Atanu Barai,
    There may be a compatibility issue between the Microsoft driver and the device . I agree with ZigZag ,you may need to download the driver from the manufacturer website .Please pay attention to the compatibility ability issue with the
    Windows 8.1 when you try to download the driver.
    If the issue persists, try to plug in the device with another USB port to have a check .To verify whether it is caused by the USB controller ,we can try to connect another USB device to have a check.
    Meanwhile ,please check the Event Viewer for related information.
    Best regards

  • Can not install Ovi Store Nokia 603

    can not install shop. Tried to install four different versions, including misrepresented and that you download the browser when they click the icon.
    At the end of the installation says: "Installation not possible"

    Download this CWRT file to microSD card.  Turn phone off insert in phone turn on.  Then browse to CWRT file run.  Then open up web browser go download ovi store file install.  All fixed.
    Note:
    Make sure to install CWRT file in C:\  when prompt.  This will not get lost when phone get reset. 
    Attachments:
    CWRT Core 1.00(11124).sisx ‏810 KB

  • Can not install powerdvd10 on B540 which was uninstall accidently

    Can not install powerdvd10 on B540 which was uninstall accidently. When I try to install from downloaded exe. file 
    there was error message "This software can only be installed on a lenovo system"

    hi DILIPDKJ,
    Just to verify, is this the PowerDVD software that you're trying to install?
    PowerDVD 10 BD
    v10.0.3029.52
    IN12STW153WW5.exe
    114 MB
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • I can not install the newest version of iTunes because of a file that can not be found. This is what I am seeing:(The feature you are trying to use is on a network resource that is unavailable. C:\......\Application Data\Apple\Apple Software Update\

    I can not install the newest version of iTunes because of a file that can not be found. This is what I am seeing:(The feature you are trying to use is on a network resource that is unavailable. C:\Documents and Settings\Aubrie\Local Settings\Application Data\Apple\Apple Software Update\)

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page).
    http://majorgeeks.com/download.php?det=4459
    Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I can not  install apps in my new ipod touch ios 6

    i can not  install apps in my new ipod touch ios 6
    it is showing appication is failed to installed
    why is this happening
    can any one help me....

    The problem is when i drag n drop downloaded apps from torrentz into itunes n syncronize it add those apps into my itouch ... but the message shown in my i touch is .. that application failed to install..
    in the itunes those appliacations are unchecked automatically ... but i can install apps which are downloaded from the istore .... they are working properly
    but the ones i downloaded from the torrentz are not getting installed..

  • I have lost my iMovie program and I can not install a new one. My computer says that it is not possible to download anything on my main drive

    I have lost my iMovie program and I can not install a new one. My computer says that it is not possible to download anything on my main drive

    How full is your drive?  You need at least 10/15% of free space.

  • OS 10.6.8 on documents created by Pages 3 will not open They want a Version 4 while my iMac does not install because it needs 4 Pages 10.7. But I can not install 10.7 because my iMac is not Core2 duo ... Funny dilemma!!

    OS 10.6.8 on documents created by Pages 3 will not open
    They want a Version 4 while my iMac does not install because it needs 4 Pages 10.7. But I can not install 10.7 because my iMac is not Core2 duo ... Funny dilemma!!

    You should be able to Save as: iWork 08, but i don't know how it works on Mountain Lion. On my Snow Leopard the Save as window has a part looking like this
    Or you can send me the document if you are in a hurry and I save it as iwork 08 for you. Click on my blue name and you'll find my address.

  • I can not install Windows 7 By applying Boot Camp

    Hi
    I have a problem
    I can not install Windows 7
    By applying Boot Camp
    I have a message appear
    Boot Camp does not support installing Windows on this Mac.
    Boot Camp does not currently support installing Windows on a Mac with a 3 TB hard drive.
    Hardware
    3.4GHz Quad-core Intel Core i7, Turbo Boost up to 3.9GHz
    32GB 1600MHz DDR3 SDRAM - 4x8GB
    3TB Fusion Drive
    NVIDIA GeForce GTX 675MX 1GB GDDR5
    Apple Magic Mouse + Magic Trackpad
    Apple Wireless Keyboard (English) & User's Guide
    Accessory Kit
    Software
    iLife '11
    OS X Mountain Lion
    Apple did not you tell me about this problem at the time of purchase 
    Is there a solution to the problem ?

    Unfortunately, I can not partitioning Alhardsk such manner described Palmqal
    http://im32.gulfup.com/mGuB1.jpg
    http://im36.gulfup.com/hLrW1.png
    http://f.cl.ly/items/04323L1k173F1r2h0v3b/Screen%20Shot%202013-01-30%20at%203.56 .21%20PM.png
    Is there another application that divide Alhardsk ?

  • In which boot camp support software I can install the drivers for win 7 32 bit.my os is X10.8.5 and I install windows 7 32 bit but I can not install drivers

    in which boot camp support software I can install the drivers for win 7 32 bit.
    my os is X10.8.5 and I install windows 7 32 bit but I can not install drivers.
    also my macbook pro model is MC723.

    Read this. You need to be running Snow Leopard or later.
    http://support.apple.com/kb/ht3986

Maybe you are looking for

  • Voice memos disappeared

    I have had voice memos of yoga routines on my iPhone for many years.  Use them regularly.   After connecting with iTunes to remove songs from my iPhone to save space, the all of my voice memos dated before January 2012 are gone.  There are still 36 v

  • Automatical Purchase Requisition Creation in MRP run

    Hi, 1. I create a Sales Order for quantity 20 of main material MAT which has two sub-components - COMP1 and COMP2. The plant in which this sales order is being created does not have any stock quantitiy of the material or its sub-components. For quant

  • Sony Location+MacBook= (Will it work)

    Hey, I was wondering if the sony location free will be able to stream TV to my macbook. It can stream to a pc, but you have to install software, will it stream it to my macbook with that software or do i need a custom made software for macs only whic

  • Is it possible to disable the magic mouse scrolling in windows 7?

    I've partitioned my hard drive with bootcamp to run windows 7 for a handful of games that aren't mac friendly. The problem is that once I installed the drivers to use the magic mouse, the scroll keeps jumping around at inconvenient times while I'm pl

  • Rename a GOOP object after it's created

    Does anyone know how to rename the GOOP object (.llb) after it has been created? If the llb file is renamed, the "add function" functionality in GOOP object design window stops working.