联合会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Carbon & Silicon
osoft
Carbon & Silicon
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
随笔:289 文章:33 评论:139 阅读:
66万
随笔分类 -
Linux
上一页
1
···
5
6
7
8
9
linux下简单制作iso,img镜像文件
摘要:1. 如果你是直接从cd压制iso文件的,执行sudo umount /dev/cdromdd if=/dev/cdrom of=file.iso bs=1024 2. 如果你要把某个文件或者目录压到iso文件中,需要使用mkisofs这个工具。这个工具非常强大,还可以压缩DVD格式的iso。你想改
阅读全文
posted @
2018-12-27 14:24
osoft
阅读(24013)
评论(0)
推荐(1)
编辑
linux简单快速启用web
摘要:Python的SimpleHTTPServer 需要先安装python,然后执行 $ python -m SimpleHTTPServer //当前目录为根目录,端口在8000的服务 $ python -m SimpleHTTPServer 9000 //当前目录为根目录,端口在9000的服务 为了
阅读全文
posted @
2018-12-27 13:58
osoft
阅读(1015)
评论(0)
推荐(0)
编辑
ubuntu软件管理
摘要:https://www.cnblogs.com/forward/archive/2012/01/10/2318483.html 一、Ubuntu中软件安装方法1、APT方式(联网安装, 需要联网下载软件仓库的软件)(1)普通安装:apt-get install softname1 softname2
阅读全文
posted @
2018-12-27 13:56
osoft
阅读(1387)
评论(0)
推荐(0)
编辑
ubuntu安装shadowsocks
摘要:Debian / Ubuntu:apt-get install python-pippip install shadowsocks sslocal -s 11.22.33.44 -p 50003 -k "123456" -l 1080 -t 600 -m aes-256-cfbsslocal -s
阅读全文
posted @
2018-12-25 21:40
osoft
阅读(2)
评论(0)
推荐(0)
编辑
Linux查看硬件信息
摘要:查看系统内核uname -a 查看CPUcat /proc/cpuinfo | grep model\ namelscpu 查看内存cat /proc/meminfo | grep MemTotal 查看显卡lspci | grep 'VGA' 查看声卡lspci | grep -i 'Audio'
阅读全文
posted @
2018-12-25 21:21
osoft
阅读(340)
评论(0)
推荐(0)
编辑
Linux中查看显卡硬件信息
摘要:Linux中查看显卡硬件信息 https://ywnz.com/linuxjc/67.html lspci -vnn | grep VGA -A 12lshw -C display 查看当前使用的显卡驱动sudo lshw -c video | grep configuration检查显卡驱动的详情
阅读全文
posted @
2018-12-25 20:19
osoft
阅读(32253)
评论(2)
推荐(0)
编辑
Linux压缩文件笔记
摘要:https://my.oschina.net/dongqianlin/blog/97168http://linux.it.net.cn/CentOS/fast/2017/0628/27029.htmlhttps://blog.csdn.net/yuyongpeng/article/details/1
阅读全文
posted @
2018-12-11 20:55
osoft
阅读(154)
评论(1)
推荐(0)
编辑
CentOS右键菜单添加新增文件命令
摘要:进入模板文件夹, 增加空白文件即可. cd /home/tom/Templatesvi text01.txt //新增一个名为text01的文本文件. :wq //保存退出. 另外可以用LibreOffice新增Word.doc, Excel.xls等空白文件, 复制到模板文件夹下即可. 注意, 这
阅读全文
posted @
2018-12-07 18:47
osoft
阅读(1331)
评论(0)
推荐(0)
编辑
yum小结
摘要:1、查看系统默认安装的yum# rpm -qa|grep yum2、卸载yum# rpm -e yum-fastestmirror-... yum-metadata-parser-... yum-3...3、重新安装yumhttp://yum.baseurl.org/wget http://yum.
阅读全文
posted @
2018-12-07 13:21
osoft
阅读(360)
评论(0)
推荐(0)
编辑
linux下使用小票打印
摘要:linux下使用小票打印 打印机: Xprinter XP-58IIH指令支持: ESC/POS接口: USB, 蓝牙 Linux系统: Centos7 蓝牙配对很快, 配对好后就是连接状态. 但很快变为断开, 且连接灰显, 无法点击. USB连接后, 设备下添加找不到该打印机. 命令可以访问. #
阅读全文
posted @
2018-11-30 19:52
osoft
阅读(3778)
评论(4)
推荐(0)
编辑
开源软件推荐
摘要:目前国内使用最广泛的操作系统Windows, 办公软件Microsoft Office, PhotoShop, 等等, 都是要购买的, 而且非常不便宜, 若全部买下来, 若再选择企业版, 专业版本等等, 比买电脑还要贵很多. 下面介绍这些开源软件, 都可以自由下载使用. 这些开源软件同时支持Wind
阅读全文
posted @
2018-11-12 19:09
osoft
阅读(866)
评论(6)
推荐(1)
编辑
CentOS7源码安装qbittorrent最新版本
摘要:CentOS的软件 yum 里 yum search qbittorrent yum info qbittorrent 找到的是3.37版本 官网最新的是4.12版本.但需要源码安装: 官网下载最新版本的压缩包:https://www.qbittorrent.org/qbittorrent-4.1.
阅读全文
posted @
2018-08-15 18:52
osoft
阅读(1782)
评论(0)
推荐(0)
编辑
CentOS下安装VirtualBox
摘要:VirtualBox在Ubtubu下的使用和Window下一样简单,下载安装包,安装运行即可.但在CentOS下需要折腾一下 1 下载相应的repo包:官网找到Centos7相应的repo文件https://www.virtualbox.org/wiki/Linux_Downloadshttps:/
阅读全文
posted @
2018-08-09 15:27
osoft
阅读(8781)
评论(0)
推荐(2)
编辑
上一页
1
···
5
6
7
8
9
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
公告
note
昵称:
osoft
园龄:
8年2个月
粉丝:
21
关注:
2
+加关注
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
最新随笔
1.锂离子电池
2.Diode
3.constant-current-diode
4.LED
5.ATX
6.MacOS-shell-PS1
7.MacOS-use-Stable-Diffusion
8.MacOS-Homebrew
9.MacOS-Setup-GenshinImpact
10.MacOS-Setup-App
我的标签
linux
(161)
arch
(39)
blender
(38)
3D
(37)
windows
(18)
centos
(17)
pacman
(14)
ubuntu
(11)
ffmpeg
(10)
English
(9)
更多
积分与排名
积分 - 366196
排名 - 2370
随笔分类
(260)
3D Print(7)
Android(9)
BI(1)
Blender 2.79b(33)
Blender2.80(3)
English(9)
hardware(7)
Linux(173)
Odoo(6)
SQL(6)
Windows(6)
随笔档案
(288)
2025年1月(1)
2024年4月(1)
2024年3月(2)
2023年8月(1)
2023年6月(1)
2023年5月(1)
2023年4月(2)
2023年3月(1)
2023年2月(1)
2022年10月(4)
2022年7月(1)
2022年2月(1)
2021年8月(1)
2021年7月(4)
2021年6月(11)
2021年5月(5)
2021年4月(1)
2021年2月(2)
2020年12月(1)
2020年11月(1)
2020年10月(1)
2020年9月(1)
2020年8月(2)
2020年7月(18)
2020年6月(9)
2020年5月(4)
2020年4月(5)
2020年3月(13)
2020年2月(8)
2020年1月(7)
2019年12月(2)
2019年11月(7)
2019年10月(4)
2019年9月(4)
2019年8月(4)
2019年7月(12)
2019年6月(12)
2019年5月(9)
2019年4月(15)
2019年3月(23)
2019年2月(12)
2019年1月(8)
2018年12月(14)
2018年11月(12)
2018年10月(14)
2018年9月(4)
2018年8月(5)
2018年7月(1)
2018年5月(1)
2018年1月(2)
2017年12月(1)
2017年10月(1)
2017年6月(2)
2017年2月(6)
2017年1月(1)
2016年12月(1)
更多
文章档案
(31)
2021年6月(1)
2020年4月(1)
2020年3月(2)
2019年9月(2)
2019年7月(3)
2019年6月(3)
2019年5月(12)
2019年4月(7)
阅读排行榜
1. 开启9008端口进入深刷模式(61471)
2. Linux中查看显卡硬件信息(32253)
3. Linux系统使用ss命令查看端口状态(25551)
4. linux下简单制作iso,img镜像文件(24013)
5. Arch Linux 软件包的查询及清理(23050)
评论排行榜
1. PC timeline(7)
2. 微处理器CPU 50年(7)
3. 开源软件推荐(6)
4. BlackArch-Tools(4)
5. 安装grub到U盘分区,实现多系统引导(4)
推荐排行榜
1. IRC(3)
2. Arch Linux 软件包的查询及清理(2)
3. CentOS下安装VirtualBox(2)
4. ip6tables-simple-stateful-firewall(1)
5. netdata(1)
最新评论
1. Re:MacOS-Homebrew
brew upgrade, 报错: Error: unknown or unsupported macOS version: :dunno 解决办法: brew update-reset...
--osoft
2. Re:MacOS-Homebrew
$ unset http_proxy $ unset ftp_proxy $ unset all_proxy $ unset https_proxy $ unset no_proxy...
--osoft
3. Re:MacOS-Homebrew
Update时,报错: fatal: unable to access '': Failed to connect to 127.0.0.1 port 1081 after 0 ms: Couldn'...
--osoft
4. Re:ffmpeg-metadata
ffmpeg -i Inside.Out.2.2024.mkv -i cn-tw.aac -i cn-zh.aac -map 0:0 -map 0:1 -map 0:2 -map 1:0 -map 2...
--osoft
5. Re:MacOS-Setup-GenshinImpact
--osoft
版权声明: (CC BY-NC-SA) 署名-非商业性使用-相同方式共享 | 本许可协议允许他人基于本文进行非商业性创作,只要他们标识您的姓名或名称,并以相同条款许可他们的新作品。
Except where otherwise noted, content on this blog is licensed under the following license:
CC BY-NC-SA
点击右上角即可分享