thread ubuntu 22.04 in

ubuntu22.04取消开机输入密码(实测)

打开终端 sudo nano /etc/gdm3/custom.conf 在文件的[daemon]部分中添加以下两行代码: [daemon] AutomaticLoginEnable=True AutomaticLogin=username 保存并关闭,注意usename值的是你自己登录的用户名 第 ......
密码 ubuntu 22.04 22 04

ubuntu2004 下源码安装boost

ubuntu2004 下源码安装boost https://www.aiuai.cn/aifarm1186.html https://www.boost.org/users/history/version_1_78_0.html https://cloud.tencent.com/developer ......
源码 ubuntu boost 2004

医学数字成像和通信(DICOM,Digital Imaging and Communications in Medicine)简单介绍

医学数字成像和通信(DICOM,Digital Imaging and Communications in Medicine)是一种广泛应用于医学影像领域的国际标准。DICOM定义了一套用于存储、传输、共享和打印医学影像数据的规范和协议,使得不同厂商生产的医学设备和软件之间可以相互兼容和交流。 DI ......

Ubuntu 22.04.1 LTS 安装 sentinel

1、下载软件 下载地址:Releases · alibaba/Sentinel (github.com) 2、直接运行即可 默认启动的端口是8080,若更改端口,可添加参数:--server.port=8718 nohup java -jar sentinel-dashboard-1.8.6.jar ......
sentinel Ubuntu LTS 22 04

Cannot resolve method 'keys' in 'JSONObject'

//""自定义 String str = ""; JSONObject object = JSONObject.fromObject(str);Map<String, Object> conditionMap = new HashMap<String, Object>();Iterator<Stri ......
39 JSONObject resolve Cannot method

Ubuntu下docker部署

使用docker进行容器化集成部署 远程服务器更新源 更新ubuntu的apt源 sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo dpkg --configure -a sudo apt-get install -y apt-transport-https ......
Ubuntu docker

Ubuntu虚拟机开机显示initramfs

因为我的虚拟机路径放在了移动硬盘当中,所以连接有点失常就断开了,紧接着虚拟机也异常关闭了。 重启后进入了initramfs界面 查看出错的分区,如下图所示,是/dev/sda5分区有损坏 解决方法: # 输入命令 fsck -y /dev/sda5 # /dev/sda5是要修复的分区 # fsck ......
initramfs Ubuntu

cnblogs 简洁模式 All In One

cnblogs 简洁模式 All In One 开启简洁模式 退出简洁模式 显示文章阅读量总量 ......
cnblogs 模式 All One In

ubuntu运行vite项目,出现端口无权限

npm run dev > s57-mapboxgl@0.0.0 dev > vite error when starting dev server: Error: listen EACCES: permission denied 0.0.0.0:86 at Server.setupListenHa ......
端口 权限 项目 ubuntu vite

ubuntu k8s v1.23

1. 关swap swapoff -a /etc/fstab 配置hosts 2. 配置docker groupdriver vi /etc/docker/daemon.json { "exec-opts": ["native.cgroupdriver=systemd"], "registry-mi ......
ubuntu k8s k8 8s 23

sql语句中条件查询in、like、=的效率

1、如果条件字段都是非索引字段,那么效率都差不多,就看结果大小。 2、有差别的在于条件字段是索引字段时: “=”在索引的情况下都会进行索引扫描,所以效率总是高的。 “like”当模糊查询为右模糊,比如'abc%'时,扫描索引,高效。当模糊查询含左模糊时,比如'%abc',进行全表扫描,低效。 “in ......
语句 效率 like sql

ubuntu安装nodejs 14

nodejs 的每个大版本号都有相对应的源,比如这里的 10.x.x版本的源是https://deb.nodesource.com/setup_10.x。 所以在终端执行: curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - ......
ubuntu nodejs 14

解决docker in docker http推送问题

FROM docker:18.09-dind ENV DOCKER_HOST=unix:///var/run/docker.sock ADD ./main /bin/ RUN mkdir -p /etc/docker && echo -e '{"insecure-registries": ["ip: ......
docker 问题 http in

Python check whether a list includes some value All In One

Python check whether a list includes some value All In One ......
includes whether Python check value

JPEG Image Quality in PIL

JPEG Image Quality in PIL Introduction The other day, I was haunted by a bug and found that it was an issue with the image quality saved by Pillow aft ......
Quality Image JPEG PIL in

Ubuntu 22.04.1 LTS 安装 MinIO

一、首先准备两个目录 # 安装目录 mkdir -p /usr/local/softs/minio # 数据存储目录 mkdir -p /root/minio/data # 日志存储目录 mkdir -p /root/minio/logs 二、安装 1、下载软件 cd /usr/local/soft ......
Ubuntu MinIO LTS 22 04

在Ubuntu22.04/16.04中安装MongoDB6.0

一、MongoDB简介 MongoDB是一个基于分布式文件存储的数据库,采用C++语言编写,旨在为Web应用提供可扩展的高性能数据存储解决方案。MongoDB是一个介于关系数据库和非关系数据库之间的产品,是目前非关系数据库当中功能最丰富、最像关系数据库的数据库。 传统的关系数据库一般由数据库(dat ......
MongoDB6 MongoDB Ubuntu 22.04 16.04

Ubuntu22.04 安装 mysql8,redis7,MongoDB6

服务器的准备 我的服务器是在腾讯云租的,所以服务器的apt源都是默认配好的,没配好的自行网上查找apt源配置。 本文同样适用于Ubuntu 22,20。Ubuntu18亦可参考。 云服务器一般防火墙未开放端口访问,请自行配置,否则后续远程访问不了: mysql:3306 redis:6379 Mon ......
MongoDB6 MongoDB Ubuntu mysql8 redis7

[INS-42017] The Grid home is inconsistent on the following nodes: [11grac2]

1、一套11.2.0.4 RAC的测试环境,集群被捣鼓坏了,打算deconfig后,运行config.sh脚本重新配置集群。 2、运行config.sh脚本,在检测环境时,遇到如下故障: [INS-42017] The Grid home is inconsistent on the followi ......
inconsistent following 42017 grac2 nodes

== vs === in js

== vs in js In JavaScript, == and are comparison operators that are used to compare two values. However, they have different behaviors and are used in ......
vs in js

Linux shell regular expression All In One

Linux shell regular expression All In One Linux shell 正则表达式 demos --> (🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原 ......
expression regular Linux shell All

Web server failed to start. Port 7014 was already in use.

在idea里面运行java,控制台提示Web server failed to start. Port 7014 was already in use. 原因:端口被占用了 解决方案:找到端口被那个程序占用了,然后停掉即可 1. 打开cmd窗口,输入netstat -aon|findstr 7014 ......
already server failed start Port

Using base64 encoding and decoding for file transfer in AX 2012

Base64 BinData If you want to transfer small file data using AX and do not want to make use of shared folders or file uploading, sending your file dir ......
encoding decoding transfer Using 2012

ubuntu设置系统启动顺序

我的电脑安装的是ubutnu+windows双系统,在开机的时候系统默认启动顺序可以在ubuntu系统中设置,方法为" vim /etc/default/grub 将GRUB_DEFAULT=0修改为想要默认启动的系统序号,设置完后保存; Ubuntu默认为第一个,序号为0,win10系统一般在第3 ......
顺序 ubuntu 系统

TOML All In One

TOML All In One .toml config file demos --> (🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章! refs ©xgqfrms 2012-20 ......
TOML All One In

Python relative import local package module file All In One

Python relative import local package module file All In One $ tree └── project ├── package1 │ ├── module1.py │ └── module2.py └── package2 ├── __init_ ......
relative package Python import module

Rust online REPL All In One

Rust online REPL All In One Rust Replit Rust Online Compiler & Interpreter https://replit.com/languages/rust demos https://replit.com/@xgqfrms/freecod ......
online Rust REPL All One

Node.js Buffer All In One

Node.js Buffer All In One Buffer.from https://nodejs.org/api/buffer.html#buffer ArrayBuffer https://developer.mozilla.org/en-US/docs/Web/JavaScript/Re ......
Buffer Node All One In

CellOracle | in silico gene perturbation | 新旧世代的交替

目的:对我们的单细胞多组学数据作此分析,看那个de-diff的TF的敲除能够逆转分化方向。 科研永远是追新者的天堂,不解释。 tutorial:Tutorial - Read the Docs https://github.com/morris-lab/CellOracle Dissecting c ......
新旧 世代 perturbation CellOracle silico

How to use axios.js instead of request.js to get data as a buffer All In One

How to use axios.js instead of request.js to get data as a buffer All In One 如何使用 axios.js 代替 request.js 获取数据作为缓冲区 ......
instead request buffer axios to