https://support.microsoft.com/en-us/help/154780/how-to-use-kiosk-mode-in-microsoft-internet-explorer
iexplore -k
| These commands are based on a askubuntu answer http://askubuntu.com/a/581497 | |
| To install gcc-6 (gcc-6.1.1), I had to do more stuff as shown below. | |
| USE THOSE COMMANDS AT YOUR OWN RISK. I SHALL NOT BE RESPONSIBLE FOR ANYTHING. | |
| ABSOLUTELY NO WARRANTY. | |
| If you are still reading let's carry on with the code. | |
| sudo apt-get update && \ | |
| sudo apt-get install build-essential software-properties-common -y && \ | |
| sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \ |
| example: ./gentree.py --refresh --git-revision v4.14-rc1 --clean /home/hauke/linux/linux-next-clean/ ../backports-4.14-rc1 | |
| mine: | |
| # needed by gentree.py | |
| apt-get install coccinelle | |
| git clone https://git.kernel.org/pub/scm/linux/kernel/git/backports/backports.git | |
| pushd backports | |
| git checkout master |
| diff --git a/src/core/ipv4/ip4.c b/src/core/ipv4/ip4.c | |
| index 4b38999c..1acc2558 100644 | |
| --- a/src/core/ipv4/ip4.c | |
| +++ b/src/core/ipv4/ip4.c | |
| @@ -473,6 +473,12 @@ ip_input(struct pbuf *p, struct netif *inp) | |
| } | |
| } | |
| + /* if we're pretending we are everyone for TCP, assume the packet is for source interface if it | |
| + isn't for a local address */ |
| # /etc/ssh/sshd_config | |
| # after ssh auditing tool: https://github.com/arthepsy/ssh-audit | |
| Ciphers aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr | |
| KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256 | |
| MACs hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128-etm@openssh.com | |
| HostKeyAlgorithms ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ssh-ed25519-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519,ssh-rsa,rsa-sha2-256,rsa-sha2-512 |
| -pedantic -Wall -Wextra -Weffc++ -Werror |
| REM --v2 ----------------------------------------------------------- | |
| takeown /r /d y /f %1 | |
| icacls %1 /t /grant Everyone:F | |
| pause | |
| REM takeown /r /d y /f will set the owner to the Administrators group recursively. | |
| REM /t makes it recursive | |
| REM /grant Sets the permision to the following user, replaces existing permissions for the specified uesr. | |
| REM :f Grants full controll permission. | |
| REM ---------------------------------------------------------------- |
| 原帖地址: http://topic.csdn.net/u/20110113/19/b0d5d506-4307-428b-a61d-7974aa66a2da.html | |
| 首先要说明的是:这里介绍的方法都是大部分是本人“悟”出来的,所以网上难有流传! | |
| 好方法不能自己私藏,否则就白忙乎这几天了,分享给有需要的朋友们。如果有转载,敬请注明来自*CSDN老邓*作品。 | |
| 呵呵,给自己打广告,实在是无耻之极,权当无聊之时打字之用。 | |
| 欢迎流传,为最优秀的分布式版本管理系统Git做宣传!! | |
| 步骤: | |
| 1. 下载:http://loaden.googlecode.com/files/gitconfig.7z | |
| 2. 解压到:<MsysGit安装目录>/cmd/,例如:D:\Program Files\Git\cmd |
| https://blogs.msdn.microsoft.com/astebner/2015/07/31/net-framework-setup-verification-tool-cleanup-tool-and-detection-sample-code-now-support-net-framework-4-6-and-windows-10/ |