Linux下的trim支持叫discard,现在ext4和xfs都支持(btrfs应该也支持),内核需要>=2.6.37,xfs的支持在3.0才比较完善。具体需要设置这2个方面: 1.文件系统表 修改fstab文件,在挂载参数中加上discard;最好也同时加上noatime,如下 /dev/sda3   /   ext4   noatime,nodiratime,discard,errors=remount-ro 0 1 mount -t ext4 -o discard,defaults /dev/sdc …

2021年05月17日 0条评论 1642点热度 0人点赞 阅读全文

参考文章:https://www.storagereview.com/review/improve-cooling-for-better-chia-plotting-speed

2021年05月09日 0条评论 1761点热度 0人点赞 阅读全文

~/.chia/mainnet/log/debug.log 配置文件:mainnet/config/config.yaml 修改: log_level: __ to log_level: INFO

2021年05月09日 0条评论 1832点热度 0人点赞 阅读全文

https://github.com/ericaltendorf/plotman   备忘

2021年05月09日 0条评论 2306点热度 0人点赞 阅读全文

参考:https://yq.aliyun.com/ziliao/60450 https://www.cnblogs.com/dakewei/p/7253584.html 一、查看硬盘 lsblk 选择自己要挂载的硬盘,不要选错了 二、分区 sudo parted /dev/sdb #使用parted来对GPT磁盘操作,进入交互式模式 (parted) mklabel gpt # 将MBR磁盘格式化为GPT (parted) mkpart primary ext4 0% 100% 将所有容量分为一个主分区 (part…

2021年05月09日 0条评论 1758点热度 0人点赞 阅读全文

以centos为例: 先安装:cifs-utils等samba工具 yum install samba-client samba-common cifs-utils 然后对win10的共享目录进行mount mount.cifs //ip/win10的共享目录名称 /mnt/tmpfile -o rw,username=abc,password=abc 这里的abc账号和密码是在win10上事先配置好的,且对文件目录具有读写权限 如果需要开机就挂载好,则需要配置:/etc/fstab文件 //ip/win10的共享…

2021年04月08日 0条评论 1592点热度 0人点赞 阅读全文

通过ventoy安装debian,出现检测光盘无法通过的提示,无法继续安装 改为安装centos,发现在选择安装源的步骤仍然无法选择本地的安装iso文件,只能通过配置网络安装源:https://mirrors.aliyun.com/centos/8/BaseOS/x86_64/os/   (以最新的centos8.3为例) 配置后,安装可以继续  

2021年04月08日 0条评论 1614点热度 1人点赞 阅读全文

sudo apt-get purge openssh-server sudo apt-get install openssh-server sudo nano /etc/ssh/sshd_config 并通过设置禁止root登录 PermitRootLogin no 然后在它下面添加一行说: AllowUsers yourusername 如果要使用密码登录,请确保PasswordAuthentication设置为yes。 通过添加/修改禁用权限分离: UsePrivilegeSeparation no sudo …

2021年02月11日 0条评论 2555点热度 9人点赞 阅读全文

可用date检查一下当前的时间日期是否正常 如果异常,修改后再update

2020年08月16日 0条评论 3111点热度 3人点赞 阅读全文

mysql下show tables 需要有like,  用%模糊匹配查表名 hive下show tables  不需要用like ,用*模糊匹配查表名

2020年07月08日 0条评论 4998点热度 48人点赞 阅读全文