会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
tslam
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
50
下一页
2024年6月18日
header中Content-Disposition
摘要: Content-disposition其实可以控制用户请求所得的内容存为一个文件的时候提供一个默认的文件名
阅读全文
posted @ 2024-06-18 09:29 tslam
阅读(7)
评论(0)
推荐(0)
2024年6月17日
os.path.split
摘要: str1 = "/Users/krunal/Desktop/code/pyt/app.pyt"import osres = os.path.split(str1)res1 = os.path.splitext(str1)print(res)print(res1)"""('/Users/krunal/
阅读全文
posted @ 2024-06-17 22:16 tslam
阅读(8)
评论(0)
推荐(0)
remote: HTTP Basic: Access denied.
摘要: git clone 时遇到该错误 办法 执行 git config --system --unset credential.helper 然后再次执行git 操作, 输入正确的用户名密码即可.
阅读全文
posted @ 2024-06-17 11:21 tslam
阅读(42)
评论(0)
推荐(0)
2024年6月16日
关掉redis服务
摘要: 客户端敲shutdown 或kill -9 进程号
阅读全文
posted @ 2024-06-16 19:25 tslam
阅读(5)
评论(0)
推荐(0)
linux 查看修改主机名
摘要: 查看主机名 cat /etc/hostname 永久修改 hostnamectl set-hostname 新名字 执行完上面命令后 执行一下bash命令 # 则立即生效
阅读全文
posted @ 2024-06-16 16:56 tslam
阅读(16)
评论(0)
推荐(0)
判断SSH服务是否开启
摘要: systemctl status sshd
阅读全文
posted @ 2024-06-16 16:46 tslam
阅读(13)
评论(0)
推荐(0)
linux 目录结构
摘要: 图
阅读全文
posted @ 2024-06-16 16:31 tslam
阅读(5)
评论(0)
推荐(0)
文件系统挂载到目录
摘要: mount命令的功能是将文件系统挂载到目录。文件系统指的是被格式化过的硬盘或分区设备,进行挂载操作后,用户便可以在挂载目录中使用硬盘资源了。原文链接:https://www.linuxcool.com/mount 挂载的命令 mount [磁盘路径] [挂载的路径] 查看本机挂载的命令 [root
阅读全文
posted @ 2024-06-16 16:19 tslam
阅读(22)
评论(0)
推荐(0)
查看进程 杀死进程
摘要: 1、如查看vim进程 [root@localhost ~]# ps -ef | grep vim 2、杀死vim进程 [root@localhost ~]# kill -9 pid号
阅读全文
posted @ 2024-06-16 15:33 tslam
阅读(16)
评论(0)
推荐(0)
linux 监控文件内容变化
摘要: tail -f [要监控的文件]
阅读全文
posted @ 2024-06-16 12:36 tslam
阅读(8)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
···
50
下一页
公告