ubuntu server 20.4 root

ubuntu下的wireshark安装

一、关键词 1、Wireshark安装 二:做法 //1、安装sudo apt-get install wireshar //2、添加组 sudo groupadd wieshark // 3、改权限 sudo chmod 4755 /usr/bin/dumpcap //4、把用户添加到组中 sud ......
wireshark ubuntu

ubuntu20.4.6网络图标突兀消失的解决方法

问题描述 1、ubuntu20.4.6网络图标突兀消失 解决方法 1、service network-manager stop 2、 sudo rm /var/lib/NetworkManager/NetworkManager.state 3、sudo service network-manager ......
图标 方法 ubuntu 网络 20

Linux Mint(Ubuntu)系统VS Code C/C++环境配置include error问题

1. 问题描述 安装完成Linux Mint后发现随系统自带了gcc,心里比较开心,以为自己不需要装了。但是在安装完VS Code之后,一直提示 #include errors detected. Please update your includePath. Squiggles are disab ......
include 环境 Ubuntu 问题 系统

SQL Server十进制转二进制函数(支持正数正常转换 支持负数反码补码转换)

CREATE FUNCTION [dbo].[ConvertBinary]( @Dec INT,-- 参数1:十进制数字 @StrLen INT--参数2:输出的二进制长度 正数转为二进制字符串最多31位)RETURNS VARCHAR(31) ASBEGIN DECLARE @BinStr AS ......
反码 补码 正数 十进制 负数

如何在Spring Boot中不启动Web Server

XYHS:用方法4,spring.main.web-application-type=none,实测可行 如何在Spring Boot中不启动Web Server1.介绍Spring Boot是一个用于为各种应用快速创建新的Java应用程序的优秀框架。最流行的用途之一是作为web服务器。但是,Spr ......
Spring Server Boot Web

SQL server之IP地址计算

DECLARE @ip AS VARCHAR(15) = '1.0.0.0' -- 将IP地址转换为整数DECLARE @ipInt AS INT = (CAST(PARSENAME(@ip, 4) AS INT) * POWER(256, 3)) + (CAST(PARSENAME(@ip, 3) ......
地址 server SQL

ubuntu安装Qt

一、关键词 ubuntu安装QT 二:知识点 1、下载系统镜像的run包 2、https://download.qt.io/official_releases/online_installers/ 3、对run包加权限:sudo +x *.run 4、执行在线安装,sudo ./*.run 5、正常 ......
ubuntu

OpenWrt编译报错——configure: error: you should not run configure as root

OpenWrt编译报错——configure: error: you should not run configure as root 具体日志如下: checking whether mknod can create fifo without root privileges... configur ......
configure OpenWrt should error root

centos7-MQTT Server搭建(apache-apollo)搭建和配置

#############################安装apache-apollo############################################### ####官方的安装文档:http://activemq.apache.org/apollo/documentatio ......

阿里云ubuntu 部署mosquitto服务器

阿里云ubuntu 部署mosquitto服务器 安装mosquitto sudo apt install mosquitto 添加用户名密码 touch /etc/mosquitto/pwdfile sudo chmod 0700 /etc/mosquitto/pwdfile sudo chown ......
mosquitto 服务器 ubuntu

Kubernetes 部署 NFS server

环境要求 kubernetes:1.21+ 部署 NFS server 下载 nfs server 部署清单 # wget https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/deploy/example/nf ......
Kubernetes server NFS

ubuntu下apt添加第三方ppa源

前言 源是用来安装系统需要的软件的。分为官方源和第三方源。 比如: nginx ,官方在每个版本更新时会更新,但是nginx 更新比Ubunt 快,所以官方的源并不一定时最新的。 这时可以添加 nginx 官方源,来及时获取最新的源。 ubuntu 把第三方的源,统一叫ppa源,并有独立网站 一、网 ......
第三方 ubuntu apt ppa

SQL Server中left join、inner join和right join的区别?

数据库是我们IT行家常的事情,相信大家都不陌生,计算机专业都开了数据库系统概论这门课程,我分享下在暑假找实习参加宣讲会过程做的笔试题中遇到关于left join、inner join和right join的区别的简述题,希望对需要的朋友有所帮助。看下面一个小例子,我懒的开软件,用Excel替代下,谅 ......
join Server inner right left

在IDEA上面连接Sql Server教程

使用的IDEA为2021版,Sql Server为2012版。 之前进行用IDEA连接Sql Server,一直失败。网上找了很多教程,试了一下午,终于连接成功了,在此分享一下我的连接教程。 1、打开IDEA,点击右侧Database,再点击左侧加号。 2、点击Data Source,选择Micro ......
教程 Server IDEA Sql

Ubuntu安装odoo16

虽然odoo17已经在10月份发布了,但笔者并不愿意立时升级:一方面没有迫切的需要去升级,仿佛没有odoo17就没法后续的工作一样;另一方面,我倒是更希望在双数版本发布的时候再升级。为此继续使用odoo16,也记录下odoo16在ubuntu服务器上的安装过程。 下载odoo16源码 1.下载源码可 ......
Ubuntu odoo 16

在centos7下搭建ftp server

1、安装软件 yum install vsftpd 2、修改配置文件 目的: 1)将使用系统本地用户登陆 2)将用户锁定在其家目录下,不能随意切换 3)禁用匿名用户 anonymous_enable=NO local_enable=YES write_enable=YES local_umask=0 ......
centos7 centos server ftp

ubuntu server 22 LTS 安装MySQL8(二进制源码方式)

原作来源:https://github.com/aminglinux/daily_shell/blob/main/29.sh 根据我自己情况稍作修改 mysql下载地址:https://downloads.mysql.com/archives/community/ 按照顺序执行逐行执行 注意执行过程 ......
二进制 源码 方式 ubuntu server

Sql Server Not IN的坑

;with t as (select 1 id union all select 2 union all select 3 union all select null) select case when 5 in (select id from t) then 1 when 5 not in (se ......
Server Sql Not

如何清理SQL SERVER内存解决内存占用高的问题

服务器维护中过程中,经常碰到SQL SERVER 内存占用高的问题,让人非常头疼。 第一种方法,可以通过重启SQL SERVER服务释放内存,但是生产服务器环境一般不允许随便重启 SQL SERVER服务。 第二种方法,通过设置服务器最高内存值的方法来释放内存,具体操作是先把服务器最大内存设置成一个 ......
内存 SERVER 问题 SQL

Putty与VirtualBox中的Ubuntu的连接问题

只需在虚拟机的设置修改其中一个网卡的连接方式为Host-Only方式即可。 具体操作如图: 然后打开Ubuntu,查找对于网卡的ip地址,使用在终端中使用ifconfig命令: 打开Putty软件: open,输入你的账号和密码即可连接,第一次连接时会弹出一个窗口,点击接收即可。 ......
VirtualBox Ubuntu 问题 Putty

IIS 10的重大更新通常会随着Windows Server和Windows 10的累积更新一起发布,这些更新可能包括性能改进、安全性增强、新功能和修复程序

IIS 10是Windows Server 和Windows 10操作系统中内置的Web服务器角色。针对IIS 10的重大更新通常会随着Windows Server和Windows 10的累积更新一起发布,这些更新可能包括性能改进、安全性增强、新功能和修复程序。 在过去的更新中,IIS 10可能会获 ......
Windows 常会 新功能 安全性 性能

oracle、sql server Join连表修改。

1、Oracle 连表修改 merge into t_user t1 using (select * from t_class) t2 on(t1.userId=t2.userId) when matched then update set t1.name=t2.name 2、Sql server ......
oracle server Join sql

SQL SERVER 字符串分割用substring

declare @InpS nvarchar(max)='ACP,LeasingIndividualUsedCarNonCertified' select @InpS,len(@InpS),charindex(',',@InpS),substring(@InpS,charindex(',',@Inp ......
字符串 substring 字符 SERVER SQL

ubuntu使用strongswan搭建IpsecVPN

安装strongSwan 安装strongswan,安装成功后是使用自签证书,客户端连接前需要导入自签的ca证书到设备中。 # apt-get update && sudo apt-get upgrade # apt install strongswan strongswan-pki libchar ......
strongswan IpsecVPN ubuntu

Linux ubuntu网络配置(学习笔记)

1.网卡名称修改 #修改配置文件为下面形式root@ubuntu1804:~#vi /etc/default/grubGRUB_CMDLINE_LINUX="net.ifnames=0"#或者sed修改root@ubuntu1804:~# sed -i.bak '/^GRUB_CMDLINE_LIN ......
笔记 ubuntu Linux 网络

ubuntu22 flask项目 pyinstaller打包后运行报错: jinja2.exceptions.TemplateNotFound: index.html 的一种解决方案

前言 有一个flask项目a.py, 目录结构如下: |- a.py |- templates | - index.html |- static |- images 运行 python3 a.py可以正常加载网页,使用 pyinstaller 在 ubuntu16上打包: pyinstaller - ......

基于Quartus prime Standard的terasic的de10_nano开发板的Ubuntu 16.04环境变量配置

注意,是配置root用户的 export ROOT=/home export QUARTUS_ROOTDIR=$ROOT/intelFPGA/18.1/quartus export INTELFPGAOCLSDKROOT=$ROOT/intelFPGA/18.1/hld export PATH=$P ......
变量 Standard Quartus terasic 环境

SQL SERVER JSON_QUERY JSON_VALUE

response_json: { "code": "000", "message": "成功", "data": { "secretKey": "", "content": "{\"rule_result\":{\"risk_level\":\"\",\"reason_code\":[],\"hit ......
JSON JSON_QUERY JSON_VALUE SERVER QUERY

Mysq8l在Centos上安装后忘记root密码如何重新设置

场景 Mysql8在Windows上离线安装时忘记root密码: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/133809385 如果是在Windows上忘记密码可以参考上面。 如果在Centos中安装mysql可以参考下面。 ......
密码 Mysq8l Centos Mysq8 Mysq

Windows Server 2022 中文版、英文版下载 (updated Nov 2023)

Windows Server 2022 中文版、英文版下载 (updated Nov 2023) Windows Server 2022 正式版,2023 年 11 月更新 请访问原文链接:https://sysin.org/blog/windows-server-2022/,查看最新版。原创作品, ......
英文版 中文版 Windows updated Server