摘要: 第三十三届台湾金曲奖(2022)提名名单如下: > **获奖者以黑体加粗体现** | 奖项 | 提名 | | | | | 年度歌曲奖 |《灭人山》﹙演唱者:黄连煜、桑布伊﹚《Bluebirds》﹙演唱者:蔡健雅﹚《奶奶》﹙演唱者:魏如萱﹚《如果可以》﹙演唱者:韦礼安﹚**《爱情你比我想的阁较伟大》﹙ 阅读全文
posted @ 2023-03-18 21:26 林東雨 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 根目录挂在 /dev/sda6,某空闲目录挂在 /dev/sda7; 现在想要该空间目录的空间扩展根目录空间; umount /dev/sda7 fdisk 删除 /dev/sda 分区 7 growpart /dev/sda 6 resize2fs /dev/sda6 阅读全文
posted @ 2022-12-28 21:40 林東雨 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 欧式筛法求素数 def euler_primary(n): """ 记录[0,n)之间的素数 """ is_primary = [1]*(n+1) is_primary[0] = is_primary[1] =0 primary = [] for num in range(2, n): if is_ 阅读全文
posted @ 2022-07-31 14:34 林東雨 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 问题描述 E: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/pool/universe/x/x264/libx264-155_0.155.2917+git0a84d98-2_amd64.deb Connection failed [IP: 阅读全文
posted @ 2022-07-09 12:48 林東雨 阅读(1742) 评论(0) 推荐(0) 编辑
摘要: 系统:MacOS 1,网页中输入地址:ipp://xx.xx.xx.xx/ipp/print 2,添加打印机即可 阅读全文
posted @ 2022-06-28 17:21 林東雨 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 安装 sudo apt-get install tmux 创建 tmux new -t name 上下分屏 tmux split 切换屏幕 control + B 然后按小键盘上或者下,实现上下屏幕的切换 暂时退出 control + B 然后按下 Z 查看 tmux 列表 tmux ls 重新进入 阅读全文
posted @ 2022-06-28 10:16 林東雨 阅读(70) 评论(0) 推荐(0) 编辑
摘要: $ useradd -r -m -s /bin/bash ldy $ passwd ldy New passwd: Retype new passwd: passwd: password updated successfully 批量添加用户 1, 参照 /etc/passwd 格式编写 user. 阅读全文
posted @ 2022-06-27 21:45 林東雨 阅读(1075) 评论(0) 推荐(0) 编辑
摘要: 1,command + space打开终端 2,shell -> 新建远程连接 3,服务 -> 安全文件传输(sftp) 填写:用户 填写:sftp 用户@ip address 上传文件:put {local_address} {server_address} 上传文件夹:put -r {local 阅读全文
posted @ 2022-06-24 10:21 林東雨 阅读(806) 评论(0) 推荐(0) 编辑
摘要: TLDR: 更新v1 不要安装 pytorch 和 python,直接安装 fedml 即可 0. 排坑 fedml 中有一个包 MNN==1.1.6 只支持 Python 3.9/3.8/3.7/3.6/3.5,另一个包 mpi4py 只支持 Python 3.8/3.7/3.6 因此创建环境的整 阅读全文
posted @ 2022-06-14 22:42 林東雨 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 1. 根据 Pytorch 版本选择相应的 Cuda 版本 https://pytorch.org/get-started/locally/#linux-prerequisites-2 如果原先是10.2版本,升级到11.x版本的时候,建议升级到11.3,避免与Pytorch不兼容的情况 2. 安装 阅读全文
posted @ 2022-06-14 16:40 林東雨 阅读(10793) 评论(0) 推荐(0) 编辑