No

Linux操作系统 no.5

虚拟机配置网络 一. 1.bridge桥连接模式 2.NATV模式 3.host-only仅主机模式 二. 网络配置 1.配置ip地址等信息在/etc/sysconfig/network-scripts/ifcfg-ens33文件里做如下配置 BOOTROTO里面要改为静态(static) 添加ip ......
系统 Linux no

Linux操作系统 no.4

1.SUID权限 普通用户可以通过SUID提权,使用chmod命令给user增加SUID权限 2.SGID权限 在一个程序上添加SGID,用户执行过程中会获得改程序用户组的权限 3.Sticky权限 添加Sticky权限后,在该目录下建立的文件或目录,仅有自己与root有权限删除 4.文件属性cha ......
系统 Linux no

Linux操作系统 no.3

ACL基本用法: getfacl查看ACL权限 setfacl设置ACL权限 setfacl -m u:alice:rw /home/test.txt -m :修改ACL权限 -x :可以删除用户对文件的所有权限 -b :可以删除所有的扩展ACL权限,回到UGO基本权限 ACL高级特性: 最大有效权 ......
系统 Linux no

ModuleNotFoundError: No module named 'google_drive_downloader'&&No matching distribution found for google_drive_downloader

安装 googledrivedownloader (adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>python main.py --fusion_method cluster_and_aggregate Traceback ......

UnauthorizedError: No authorization token was found

后端express-jwt没有设置白名单,设置白名单后即可 app.use( expressjwt({ secret: "sdfsd156f2", algorithms: ["HS256"] }).unless({ path: ["/test/login"],//白名单,不需要进行验证的接口 }) ......

/var/lib/docker/overlay2/41a765b3cfaa278a67414c5b89234adfdebac7182d4bcd1e7c8a2c6ac250dfb7-init/merged: no such file or directory 异常处理

现象:Error: Error response from daemon: error creating overlay mount to /var/lib/docker/overlay2/41a765b3cfaa278a67414c5b89234adfdebac7182d4bcd1e7c8a2c6 ......

Centos7 报No suitable device found for this connection错误,无法启动网卡

# 先备份网卡配置文件 [root@xiaojing ~]# cd /etc/sysconfig/network-scripts/ [root@xiaojing network-scripts]# cp ifcfg-ens33 ifcfg-ens33.bak #生成新的UUID,并追加到网卡配置文件 ......
网卡 connection suitable 错误 Centos7

文件 inode 与 no space left on device 异常

转载请注明出处: 文件inode 在 Linux 文件系统中,每一个文件或目录都会有一个 inode,它是一个数据结构,用于存储文件的元数据,比如文件的权限、所有者、大小、创建和修改的时间等。inode 不包含文件的实际内容,只包含文件的元数据。当你在文件系统中创建、修改或者删除文件时,实际上是在修 ......
文件 device inode space left

./rmblastn: error while loading shared libraries: libzstd.so.1: cannot open shared object file: No such file or directory

001、问题, ./rmblastn 命令报错如下: ./rmblastn: error while loading shared libraries: libzstd.so.1: cannot open shared object file: No such file or directory 0 ......
shared file directory libraries rmblastn

编译安装zabbix时遇到configure: error: no acceptable C compiler found in $PATH 问题解决

./configure --prefix=/usr/local/zabbix --enable-agent no acceptable C compiler found in $PATH,代表你没有安装C编译器 解决办法如下: 安装GCC软件套件 ......
acceptable configure compiler zabbix 问题

Try `--no-discard-stderr' if option outputs to stderr

001、报错如下: 002、解决方法 在3694行 的末尾加上 --no-discard-stderr sed -i '3694 s/$/ --no-discard-stderr /' Makefile ## 在3694末尾添加上--no-discard-stderr, -i表示在原文中添加 003 ......

解决failure: repodata/repomd.xml from kubernetes: [Errno 256] No more mirrors to try

解决方法:出现这个问题的主要原因是阿里的国内yum源出现问题了,应该是文件换路径或升级了,或者原来的文件不存在了;提示提供1-5种解决方案,此时,只需要修改/etc/yum.repos.d/kubernetes.repo的gpgcheck和repo_gpgcheck参数,要求变为0,见下: cat ......
kubernetes repodata failure mirrors repomd

【python】-bash: /usr/local/bin/pip: /usr/bin/python: bad interpreter: No such file or directory的问题解决

安装单独的第三方库时没有问题 pip install pandas但是一旦使用requirement.txt批量安装第三方库时就会出现 -bash: /recorddata/rebuydata/hppy/soft/python3/bin/pip3: /usr/local/source/hppy/so ......
python interpreter bin directory usr

【Bug解决】Can‘t perform a React state update on an unmounted component. This is > a no-op, but it...

在 React 应用程序中我们遇到以下警告消息: Can’t perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your applica ......
component unmounted perform update React

Python:报错——ModuleNotFoundError: No module named 'encodings'

运行Python报错:Fatal Python error: Py_Initialize: unable to load the file system codecModuleNotFoundError: No module named 'encodings' 处理步骤: 1.Files >>>Se ......

linux启动mysql数据库,报错mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory

如下 原因: 解决方案: 1、在/usr/lib64目录里面找一个差不多名称版本的文件进行链接 # 软连接出一个新的文件 sudo ln -s /usr/lib64/libtinfo.so.6.1 /usr/lib64/libtinfo.so.5 若本服务器没有相近版本的文件 2、从其他服务器下载一 ......
shared mysql file directory libraries

docker安装msyql5.7报错:mysqld: Can't read dir of '/etc/mysql/conf.d/' (Errcode: 2 - No such file or directory)

安装mysql5.7时使用 #docker拉取镜像命令 docker pull mysql:5.7 #docker安装MySQL命令 docker run -p 3306:3306 --name mysql -v /mydata/mysql/log:/var/log/mysql -v /mydata ......
directory 39 Errcode docker msyql5

linux输入yum后提示: -bash: /usr/bin/yum: No such file or directory的解决方法

https://blog.csdn.net/moveym/article/details/125569233 一、首先了解Linux系统下这两个命令的区别 yum: 属于:RedHat系列 常见系统有:Redhat、Centos、Fedora等 apt-get: 属于:Debian系列 常见系统:D ......
directory yum 方法 linux bash

Linxu解决systemctl启动服务失败,Error: No space left on device【转】

查看磁盘空间实际占用情况 查看磁盘inodes占用情况 这两部发现都没有问题。要是哪里发现被沾满了,直接删除解放空间。此篇是讲另一种情况。 查看默认inotify的max_user_watches值 [root@VM-4-4-centos nginx]# sysctl fs.inotify fs.i ......
systemctl device Linxu Error space

Git报错“no branch, rebasing master”

本次出现这个错误是因为本地提交了commit但是未push成功,所以使用git pull --rebase,由于远程仓库和本地的commit有冲突,Git无法自动解决冲突时,会切换到一个匿名分支,然后使用git branch发现报错“no branch, rebasing master”。 解决办法 ......
rebasing branch master Git

1418 -This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration

今天在mysql中创建函数的时候,报错如下: ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is ......
DETERMINISTIC declaration SQL function READS

Python 潮流周刊#24:no-GIL 提案正式被采纳了!

你好,我是猫哥。这里每周分享优质的 Python、AI 及通用技术内容,大部分为英文。标题取自其中两则分享,不代表全部内容都是该主题,特此声明。 微信 | 博客 | 邮件 | Github | Telegram | Twitter 本周刊的源文件归档在 Github 上,已收获 777 star 好 ......
提案 周刊 潮流 Python no-GIL

解决Python报错ImportError: No module named ‘xxxx‘问题

BASE_DIR = os.path.dirname(os.getcwd())#用来从jupyter默认地址中脱离出来 import sys sys.path.append(BASE_DIR) sys.path.append('E:\CV_Paper_fuxian\lesson\B_VGG')#把文 ......
ImportError Python module 问题 named

Linux操作系统 no.2

一. 用户/组: 1.创建用户、组: useradd groupadd 2.删除用户: userdel 3.修改用户密码: passwd 二.文件权限: chowm:修改文件属主,属组。 chgrp:修改文件属组。 chmod: 修改文件权限。 chowm :改变文件属性 chmod : 改变文件访 ......
系统 Linux no

python ModuleNotFoundError_ No module named 'xxx'的解决方案

本文主要针对的自己写的包无法正常import的情况,如果是第三方包的话正常来说没有问题。 第三方包 主要考虑没有安装对应的版本以及包名写错了等奇葩情况,具体可参考ModuleNotFoundError: No module named ‘xxx’可能的解决方案大全 自建的包 如果是自己的包,可按照下 ......

No supported authentication methods available (server sent: publickey)错误解决

No supported authentication methods available (server sent: publickey)错误解决Putty, WinScp或者Filezilla在远程登录的时候出现No supported authentication methods availa ......

Pycharm安装第三方库时报错 no such option: --build-dir

参考资料Link: https://blog.csdn.net/weixin_56321113/article/details/122737501 一、遇到的问题 pycharm 2020.1 python 3.9 pip 22.1 无论安装任何第三方包都会报错 no such option: -- ......
第三方 build-dir 时报 Pycharm option

MySQL报'Access denied for user 'root'@'localhost' (using password: NO)'错误的解决--九五小庞

当在命令提示符下执行该命令时,报下列错误 [root@clvn]# mysqladmin -u root password "sorry"mysqladmin: connect to server at 'localhost' failederror: 'Access denied for user ......
39 localhost password 错误 Access

动态库加载失败:error while loading shared libraries: xxx.so: cannot open shared object file: No such file o

ldd main | grep not 由0.1 动态库的工作原理可知,只要把动态库libcalc.so的绝对路径添加到动态载入器ld-linux.so的搜索路径中,那么动态载入器就可以获取到动态库libcalc.so的绝对路径,接着就可以找到动态库文件libcalc.so,将动态库文件载入内存,然 ......
shared file libraries loading 动态

cypress 无法启动No version of Cypress is installed in: /Users/xxx/Library/Caches/Cypress/13.3.3/Cypress.app

使用npx cypress open 启动cypress 提示 No version of Cypress is installed in: /Users/xxx/Library/Caches/Cypress/13.3.3/Cypress.app npx cypress open No versio ......
Cypress installed cypress Library version