本文分类:news发布日期:2025/1/21 5:46:31
相关文章
Ubuntu server 24 (Linux) 安装部署samba服务器 共享文件目录 windows访问
1 安装
sudo apt update
sudo apt-get install samba
#启动服务
sudo systemctl restart smbd.service
sudo systemctl enable smbd.service
#查看服务 2 创建用户
#创建系统用户
sudo useradd test2
#配置用户密码
sudo smbpasswd -a test2
# smbpasswd:
-a添加用户
…
建站知识
2025/1/20 3:03:25
C语言 | Leetcode C语言题解之第151题反转字符串中的单词
题目: 题解:
void myResverse(char* s,int start,int end){while(start<end){char temp s[start];s[start] s[end];s[end] temp;start;end--;}
}
char* reverseWords(char* s) {int start 0;int end strlen(s)-1;myResverse(s,start,end);if(s[…
建站知识
2025/1/16 23:25:58
旅游网站(携程旅行网页学习 vue3+element)
旅游网站
1. 创建项目
在你要创建项目的路径下打开vscode,新建终端,然后输入vue ui,进入Vue项目管理器。选择“创建”,确定项目路径,并点击“在此创建新项目”。在项目文件夹中输入项目名称,点击下一步;选…
建站知识
2025/1/17 13:31:51
【技术】MySQL 8.4 免安装版配置
MySQL 8.4 免安装版配置 官网下载压缩包解压文件创建配置文件初始化数据库安装MySQL服务链接数据库修改密码 官网下载压缩包
从MySQL官网下载压缩包,官网:https://www.mysql.com/
头部菜单点击【DOWNLOADS】,跳转到下载页面。在页面底部点击…
建站知识
2025/1/15 16:54:28
《Brave New Words 》9.1 AI 世界中的就业
Part IX: Work and What Comes Next 第九部分:工作及其未来发展 The one who plants trees, knowing that he will never sit in their shade, has at least started to understand the meaning of life. —Rabindranath Tagore 种树的人,虽然知道他永远…
建站知识
2025/1/14 2:24:49
windows下的eclipse按Ctrl+Shift+F格式化代码不起作用的处理
1、先上张图: 上面Format:CtrlShiftF,按了以后不起作用。
2、这个快捷键不起作用的原因:可能是快捷键冲突了。
机器上装了Sougou输入法,将输入法切换为英文模式是起作用的。
那么应该就是这个原因了。
3、解决方法…
建站知识
2025/1/18 0:51:21
React项目配置路径别名“@”
React项目配置路径别名“”
首先安装craco
npm i craco/cracoalpha -D
npm i npm i craco-less创建craco.config.js
const path require(path)
const CracoLessPlugin require(craco-less)const resolve (dir) > path.resolve(__dirname, dir)module.exports {plugin…
建站知识
2025/1/16 21:05:28