ILD

using conda install tensorflow
2026-4-26
在fedora 43上,python的版本是3.14$ python --versionPython 3.14.4使用pip安装tensorflow$ pip install tensorflowDefaulting to user installation because normal site-

fedora get official site of a package
2026-4-29
使用dnf info命令可以查看一个package的详细信息,包括其URL$ dnf info libattr-develAvailable packagesName : libattr-develEpoch : 0Version : 2.5.2R

笔记:What is deep learning
2026-4-30
这一系列的文章,记录Deep Learning with Python 3rd edition这本书的学习笔记。代码仓库:https://github.com/fchollet/deep-learning-with-python-notebooks在线阅读:https://deeplearningw

debian学习笔记
2026-5-11
Debian是一个主流的Linux发行版。从Debian衍生出了很多其它的发行版,比如著名的Ubuntu。下面这个链接可以查看完整的Debian家族。https://upload.wikimedia.org/wikipedia/commons/6/69/DebianFamilyTree1210.sv

disable windows samba client cache
2026-5-11
最近安装了最新的ubuntu 26.04,开启samba后发现,新建文件不能同步,windows版本是windows 11。在虚拟机里面创建一个文件,在windows里面查看不到。经过研究后,发现需要关闭windows的缓存。以管理员权限打开powershell,执行下面3条命令,就ok了:Set-

docker modify container mount
2026-5-11
一个编译容器,需要添加/lib/modules的挂载点。但是容器在run之后,命令行似乎无法再添加挂载点。网上有一篇文章,可以通过修改配置参数来添加挂载点。找到容器的id,进入其目录。/var/lib/docker/containers/e75a1ffff3d58861e1252e0e25f996e

笔记:The mathematical building blocks of neural networks
2026-5-10
本文学习Deep Learning with Python 3rd edition的第二章。在线阅读:https://deeplearningwithpython.io/chapters/chapter02_mathematical-building-blocks/ A first look at

time api
2026-5-21
头文件time.h获取当前时间戳获取当前时刻距Epoch的秒数。Epoch:1970-01-01 00:00:00 +0000 (UTC)time_t time(time_t *_Nullable tloc);这是一个系统调用,如果失败,返回(time_t)-1.可以称为UTC时间戳。Broken-

qemu enable network
2026-5-27
最近想通过ssh开启远程终端。因此需要打开网络功能。1 guest内核开启相关选项开启TCP/IP+CONFIG_INET=y+# CONFIG_IPV6 is not set开启网卡驱动+CONFIG_NETDEVICES=y+CONFIG_VIRTIO_NET=m2 qemu命令行开启网络选项首

drop caches
2026-5-27
执行:echo 3 > /proc/sys/vm/drop_caches内核入口:fs/drop_caches.cdrop_caches_sysctl_handler()如果bit 1设置了,1或3。则表示清空page cache。为每个super block,调用下面的函数。static void

Copyright © linuxdev.cc 2017-2024. Some Rights Reserved.