码迷,mamicode.com
首页 >  
搜索关键字:linux server    ( 211315个结果
Gvim操作记录
Linux环境下的gvim编辑器的优势就不多说了。至于我,一个字懒,不想记住gvim的指令,但一想到以后工作还是要用到,还是硬着头皮学吧! 1 gvim基本操作 1.1 基本模式 gvim 有两个基本的模式:Insert 和Normal。Insert模式下光标是竖线,这时键盘的输入为文本。Norma ...
分类:系统相关   时间:2021-05-04 16:26:16    阅读次数:0
Raspberry Pi:树莓派安装Kali2021新版本
准备材料 树莓派4B kali系统镜像 SDFormatter (格式化工具) Win32DiskImager (镜像拷录工具) 镜像下载 kali下载地址:https://www.offensive-security.com/kali-linux-arm-images/ 这是 .xz 压缩文件,需 ...
分类:Web程序   时间:2021-05-04 16:16:02    阅读次数:0
MySQL架构和运行机制
MySQL架构和运行机制 MySQL体系架构 MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层。 一、网络连接层 客户端连接器(Client Connectors):提供与MySQL服务器建立的支持。目前几乎支持所有主流 的服务端编程技术,例如常见的 Java ...
分类:数据库   时间:2021-05-04 15:55:01    阅读次数:0
树莓派4B-下载系统
官网下载镜像:https://www.raspberrypi.org/ 下载刷机工具 再往下翻 Manually install an operating system image 点击:See all download options 进入下载页面: 下载ubuntu server镜像,用工具刷入 ...
分类:其他好文   时间:2021-05-04 15:50:51    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
Python----OS 文件目录处理
import os # os.mkdir("n1") # 创建目录 # 创建文件 # with open('1.txt',mode='w') as file: # file.write('11111') # os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支 ...
分类:编程语言   时间:2021-05-04 15:43:42    阅读次数:0
linux c++(makefile)
makefile makefile|Makefile 目标:依赖 tab键 规则命令 版本一 app:main.c add.c gcc -o app -I./include main.c add.c 版本二 app: main.o add.o gcc -o app -I./include main. ...
分类:编程语言   时间:2021-05-04 15:41:38    阅读次数:0
noip模拟测试17
由于玄学错误以及各种挂分,这场考试连100都没上…… A.序列 玄学思路可以蹭过去,但是log函数在long long的情况下异常玄学,下面这段代码在Windows下运行结果为2,Linux下正确 #include<bits/stdc++.h> using namespace std; #defin ...
分类:其他好文   时间:2021-05-04 15:41:20    阅读次数:0
linux下安装微信
基于wine模式安装微信. 参考 https://github.com/zq1997/deepin-wine 在4K屏幕下, 分辨率太高导致字体太小, 如下调整 ...
分类:微信   时间:2021-05-04 15:33:57    阅读次数:0
Hadoop集群管理脚本
这里介绍两个常用的管理hadoop集群的脚本 hadoop集群启停脚本myhadoop.sh #!/bin/bash if [ $# -lt 1 ] then echo "No Args Input..." exit ; fi case $1 in "start") echo " 启动 hadoop ...
分类:其他好文   时间:2021-05-04 15:28:54    阅读次数:0
211315条   上一页 1 ... 76 77 78 79 80 ... 21132 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!