摘要: 来自:https://help.ubuntu.com/community/LinuxFilesystemTreeOverview Main directories The standard Ubuntu directory structure mostly follows the Filesyste 阅读全文
posted @ 2023-10-09 00:29 脱缰的野猪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 在virtual box上安装了一个ubuntu server,版本是22.04.3 LTS,因为是server版,没有图形界面。 安装完了发现在virtual box中运行时,分辨率很低,估计只有640x480,虽然可以通过ssh连到服务器上,但是还是觉得把分辨率调高一点比较好,于是找到了下面这篇 阅读全文
posted @ 2023-09-23 23:19 脱缰的野猪 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 之前的安装攻略找不到了,只好再次试验了一下 参考资源:https://www.cnblogs.com/lanaiwanqi/p/10445717.html 但是这个参考不是每一步都执行成功 1. 先安装中文的pack Setting -> Region & Language -> Manage in 阅读全文
posted @ 2023-09-22 10:38 脱缰的野猪 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1. 显示Stop Flows按钮 修改配置文件settings.js runtimeState: { /** enable or disable flows/state endpoint. Must be set to `false` to disable */ enabled: true, /* 阅读全文
posted @ 2023-09-07 14:00 脱缰的野猪 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 原文地址 https://askubuntu.com/questions/15520/how-can-i-tell-ubuntu-to-do-nothing-when-i-close-my-laptop-lid#:~:text=How%20to%20Turn%20Off%20the%20Laptop 阅读全文
posted @ 2023-05-10 15:39 脱缰的野猪 阅读(94) 评论(0) 推荐(0) 编辑
摘要: using 的使用并不少见,但是最近看到这种用法还是觉得有些奇怪: 1 static IEnumerable<int> LoadNumbers(string filePath) 2 { 3 using StreamReader reader = File.OpenText(filePath); 4 阅读全文
posted @ 2023-05-04 16:28 脱缰的野猪 阅读(15) 评论(0) 推荐(0) 编辑
摘要: C# 中有一种简写方式叫做 expression body https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/statements-expressions-operators/expression-bodied-mem 阅读全文
posted @ 2023-04-08 21:42 脱缰的野猪 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 在sql server中执行一个嵌套查询,结果总是出错,查询语句如下: select count(1) from (select slabid, count(1) from SlabRuleResult group by slabid) 错误提示如下: Msg 102, Level 15, Stat 阅读全文
posted @ 2023-02-21 10:08 脱缰的野猪 阅读(166) 评论(0) 推荐(0) 编辑
摘要: asp.net 需要安装一个 Hosting Bundle,注意一定要装这个 Hosting Bundle,而不是旁边的 x64 下载完的文件应该类似:dotnet-hosting-6.0.10-win.exe 安装之前,IIS Modules 里的内容 安装之后多了一个AspNetCoreModu 阅读全文
posted @ 2022-10-19 10:22 脱缰的野猪 阅读(1268) 评论(0) 推荐(0) 编辑
摘要: 添加用户 sudo adduser admin 切换用户 su admin 修改 root 的密码 sudo passwd root 修改普通密码 passwd 阅读全文
posted @ 2022-10-17 11:37 脱缰的野猪 阅读(24) 评论(0) 推荐(0) 编辑