sudo codesign --force --deep --sign - /path/to/application.app- Open
{Application Name}.app/Contents/info.plistwith Xcode - Make
JVMVersioncorrect for installed JVM version
...
<key>JVMOptions</key>
<dict>
<key>JVMVersion</key>
<string>1.8*</string>
...In the registry key:
KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\HID\{Your Device ID}\Device Parameters,
modify 2 properties as following:
| Name | Type | Data |
|---|---|---|
| FlipFlopHScroll | REG_DWORD | 0x00000001 (1) |
| FlipFlopWheel | REG_DWORD | 0x00000001 (1) |
You can check the device ID in Device Manager -> HID-compliant mouse properties -> Events -> Information.
Maybe the ID starts with VID_... and ends with ...&0&0000 or similar.
Set environment variable: HOME as following.
| Variable | Value |
|---|---|
| HOME | %USERPROFILE% |
Link C:\Users with /home.
echo "C:/Users /home" >> /etc/fstabOpen ~/.minttyrc and add / overwrite the following setting.
Locale={Your Locale}
Charset=UTF-8
| Name | Description |
|---|---|
| curl | Transfer a URL |
| git | The stupid content tracker |
| git-flow | Git extensions to provide high-level repository operations for Vincent Driessen's branching model (AVH edition) |
| man | An interface to the on-line reference manuals |
| openssh | OpenSSH SSH client (remote login program) |
| tar | An archiving utility |
| tree | List contents of directories in a tree-like format |
| wget | The non-interactive network downloader |
| whois | Client for the whois directory service |
| winpty-git | A Windows software package providing an interface similar to a Unix pty-master for communicating with Windows console programs |
Add following lines to ~/.zshrc or ~/.bashrc.
alias atom="atom.cmd"
alias apm="apm.cmd"Maybe permissions issue. Try following commands.
chgrp -R Users ~/.ssh
chmod -R 700 ~/.ssh
chmod 600 ~/.ssh/id_rsaPut the following line into ~/.zshrc or ~/.bashrc.
export VAGRANT_DETECTED_OS=cygwinOr a more cross-platform version:
export VAGRANT_DETECTED_OS="$(uname)"These are caused by memory allocation error of Windows 8 x64. Follow the steps below to fix.
First, open Ash.
ashSet default heap size of Git, Bash, Zsh to 3MB or larger.
/bin/peflags -z3072 /usr/bin/git
/bin/peflags -z3072 /bin/bash
/bin/peflags -z3072 /bin/zshThen, exit Ash and restart the terminal.
exitUncomment or add the following directives in php.ini.
extension_dir = "ext"extension=php_openssl.dllgit ls-files --ignored --exclude-standard | xargs git rmxdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_autostart=0
xdebug.remote_connect_back=1mysql_upgrade -u{USER} -p{PASSWORD}Maybe your workspace is broken. Just delete:
{Your Workspace}/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi
Unfortunately, your custom perspectives are also deleted.
If this doesn't work, delete:
{Your Home Directory}/.eclipse