samba - 基于CentOS8搭建多用户文件共享服务
在CentOS8上搭建Samba服务,配置实现多用户之间的文件共享和权限隔离。
在CentOS8上搭建Samba服务,配置实现多用户之间的文件共享和权限隔离。
通过开发者工具捕捉登录过程及认证报文内容,用于进行报文分析,开发HTTP协议登陆/退出程序。
通过Python自带的socket
包提取本机IP地址的代码,在Windows上正常,但在Linux上得到的是127.0.1.1
。可以通过netifaces
包等方法解决。
"These violent delights have violent ends And in their triumph die, like fire and powder, Which as they kiss consume: the sweetest honey Is loathsome in his own deliciousness And in the taste confounds the appetite: Therefore love moderately; long love doth so; Too swift arrives as tardy as too slow."
- Shakespeare, Romeo and Juliet
"Have you ever questioned the nature of your reality? Did you ever stop to wonder about your actions? The price you'd have to pay if there was a reckoning? That reckoning is here."
- Westworld
axel是一款通过多线程加速下载的工具,实测比wget
、curl
显著更快。
基于Flask部署的PyTorch模型HTTP
API在debug模式下偶现死锁问题,无法被kill
掉,reboot
或shutdown
无法正常重启,nvidia-smi
无法调出。初步推测可能与debug
模式下创建的两套进程有关。
读取文件中的指定行,是经常需要用到的功能。通过Python的linecache模块,可以快速定位、读取文件中的指定行。
screen是Linux环境下的多窗口管理器,可以管理可后台运行的窗口。问题是,每次进入screen时,窗口就无法滚动查看先前输出的内容了。可以通过copy mode解决。