ICode9

精准搜索请尝试: 精确搜索
  • 【LFS 系列】从零开始 DIY Linux 系统:(六)构建 LFS 系统 - Kbd-2.0.22021-10-03 18:02:55

    Kbd 软件包包含键表文件、控制台字体和键盘工具。 安装 Kbd 首先进入到源码目录,解压软件包: cd /sources tar xf kbd-2.0.2.tar.gz cd kbd-2.0.2 在 Kbd 软件包中退格键(Backspace)和删除键(Delete)的行为和键映射并不一致。 下面的补丁修复了 i386 键映射中的这个问题: patch -Np

  • 越狱iphone命令行ssh无法连接问题解决2021-08-26 01:33:48

    手上有一台12.4的ios机器,通过SecureCrt可以ssh上去,但是每次连接的时候都会报“Keyboard Interactive”错误,skip即可,但是通过ssh客户端连接,却无法正常连接,错误提示如下: @127.0.0.1: Permission denied (publickey,password,keyboard-interactive)  开始以为是Keyboard Interact

  • emacs配置2021-07-17 16:01:57

    (global-set-key (kbd "C-a") 'mark-whole-buffer) ;;全选(Like Windows) (global-set-key (kbd "RET") 'newline-and-indent) (global-set-key (kbd "C-s") 'save-buffer) (global-set-key (kbd "C-z") 'undo) (g

  • emacs配置2021-04-08 18:36:14

    考场配置: (setq c-default-style "awk") (tool-bar-mode 0) (menu-bar-mode 0) (global-linum-mode t) (show-paren-mode t) (ido-mode t) (setq-default cursor-type 'bar) (cua-mode t) (global-auto-revert-mode t) (setq-default scroll-step 1 scroll-margi

  • emacs配置2021-04-06 09:35:10

    考场配置: (tool-bar-mode 0) (menu-bar-mode 0) (global-linum-mode t) (show-paren-mode t) (ido-mode t) (setq-default cursor-type 'bar) (cua-mode t) (global-auto-revert-mode t) (setq-default scroll-step 1 scroll-margin 0 scroll-conservatively 10000) (globa

  • 9个你可能从未听说过的HTML功能2021-04-02 18:33:08

    作为Web开发工程师,我们需要使用许多不同的技术,框架和编程语言。开始使用HTML,CSS和JS可能很容易,但是精通它们很难。尽管我们知道使用HTML的一些功能有很多好处,但它经常被忽略。因此,今天就让我们一起来看一下,你可能从未听说过,甚至很少使用的9个HTML的功能! 1、<optgroup>元素 假设你

  • FreeFlyOS【七】:keyboard部分详解2021-01-03 21:32:45

    keyboard.c 键盘驱动程序 #include "keyboard.h" #include "../interrupt/trap.h" #include "../vga/vga.h" #include "../serial/serial.h" /***** Keyboard input code *****/ #define NO 0 #define SHIFT (1&l

  • [转载]Emacs配置2019-12-23 12:53:09

    [转载]Emacs配置 原文 说明 在主文件夹里建一个叫.emacs的文件,然后把下面的代码(选一个)蒯进去. 考场配置(简单易记) (set-background-color "gray15") (set-foreground-color "gray") (global-set-key [f9] 'compile) (global-set-key [f10] 'gud-gdb) (global-set-key (kbd "C

  • 跟我一起写 Makefile(二)2019-11-16 16:00:46

    版权声明:本文为CSDN博主「haoel」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/haoel/article/details/2887   1.makefile中使用变量在上面的例子中,先让我们看看edit的规则:     edit : main.o kbd.o command.o displ

  • linux usb 总线驱动(二)2019-05-16 15:54:16

    原文:https://blog.csdn.net/weiqing1981127/article/details/8215708  2.USB鼠标驱动 usbmouse.c 下面我们分析下USB鼠标驱动,鼠标输入HID类型,其数据传输采用中断URB,鼠标端点类型为IN。好了,我们先看看这个驱动的模块加载部分。 static int __init usb_mouse_init(void) {   

  • emacs配置2019-05-05 16:53:25

    (global-set-key [f9] 'compile-file) (global-set-key [f10] 'gud-gdb) (global-set-key (kbd "RET") 'newline-and-indent) (global-linum-mode t) (show-paren-mode t) (define-key key-translation-map (kbd "C-d") (kbd "M-p M-

  • 100——第12例2019-04-28 14:49:24

    <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>title</title></head><body> <code>for i=0 to 10</code> <kbd>for i=0 to 10</kbd> &

  • emacs 考场配置2019-02-15 08:50:45

    先存在这里,免得等回来乱搞的时候把自己的配置搞丢了qwq (custom-set-variables '(custom-enabled-themes (quote (tango-dark)))) (custom-set-faces) (set-background-color "gray15") (set-foreground-color "gray") (global-set-key [f9] 'compile) (global-set-

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有