
服务器
文章平均质量分 68
阿尔发go
这个作者很懒,什么都没留下…
展开
-
ubuntu24
【代码】ubuntu24。原创 2024-08-18 23:13:01 · 470 阅读 · 0 评论 -
数据服务器之raid1使用
服务器怎么做raid1原创 2022-06-27 14:39:14 · 3105 阅读 · 0 评论 -
Ubuntu之常用命令
ubuntu常用命令原创 2017-11-21 09:44:06 · 973 阅读 · 0 评论 -
ubuntu18之ffmpeg
源码编译ffmpeg官网下载源码下载好的文件为 ffmpeg-*.tar.xz,解压ffmpeg-*.tar.xz到自定义文件夹下,我这里是/home/aaxz -d ffmpeg-*.tar.xztar -xvf ffmpeg-*.tar.xz –C /home/ffmpeg安装编译ffmpeg依赖的包sudo apt-get install yasm编译ffmpegcd /home/aa/ffmpeg# 如果编译静态库执行以下命令./configure --pre原创 2020-07-23 12:16:02 · 1175 阅读 · 1 评论 -
常用makefile模板
makefile常用模板# 指令编译器和选项# GCC编译选项CFLAGS参数# 选项 说明# -c 用于把源码文件编译成 .o 对象文件,不进行链接过程# -o 用于连接生成可执行文件,在其后可以指定输出文件的名称# -g 用于在生成的目标可执行文件中,添加调试信息,可以使用GDB进行调试# -Idir 用于把新目录添加到include路径上,可以使用相对和绝对路径,“-I原创 2021-12-17 16:04:01 · 875 阅读 · 0 评论 -
ubuntu之opencv
opencv参考:OpenCV各版本差异与演化,从1.x到4.0install# download opencvcd ~/git clone https://github.com/opencv/opencv.gitcd opencvgit clone https://github.com/opencv/opencv_contrib.git# compilingcmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/lo原创 2021-12-03 12:30:50 · 1036 阅读 · 0 评论 -
bash shell之语法使用记录
Bash Shell教程forfor中的循环条件必须是双括号,如果for中需要执行多个语句,需要使用do…done包含起来。for ((i=0;i<10;i++)); do echo $i printf -v ii '%03d' &i #格式化输出ii echo $iidonelist对于无规律的一组元素时使用list,比较方便for调用。list="aa bb cc dd"for ii in $list; do echo $iidone...原创 2021-11-19 16:59:13 · 264 阅读 · 0 评论 -
ubuntu之tools
ubuntu18工具原创 2019-11-30 11:32:56 · 1925 阅读 · 1 评论 -
ubuntu18之wine
参考wikireference11. Check installed architectures1.1 Verify 64-bit architecture. The following command should respond with “amd64”.dpkg --print-architecture1.2 See if 32-bit architecture is installed. The following command should respond with “i386”.原创 2021-03-27 14:09:04 · 1050 阅读 · 1 评论 -
ubuntu之串口
参考安装sudo apt-get install cutecom问题:cutecom permission deniedmethod 1# method 1ls -l /dev/ttyS*# First verify if the user does belong to the dialout group using the “id” command.id -Gn jesin #假设当前用户名为jesinjesin adm cdrom sudo dip plugdev lpadmin原创 2021-01-28 14:25:21 · 521 阅读 · 1 评论 -
ubuntu之matlab
https://www.jianshu.com/p/2648a5c5c691原创 2020-02-10 22:36:49 · 1519 阅读 · 0 评论 -
ubuntu之用户及权限
sudo用户组添加/删除新用户参考:https://www.howtoing.com/adding-user-as-sudoers-in-ubuntu将用户添加到组的指令https://cnzhx.net/blog/linux-add-user-to-group/https://linux.cn/article-10768-1.html...原创 2020-07-13 16:14:27 · 226 阅读 · 0 评论 -
ubuntu18之ZSH shell
参考:https://linuxhint.com/install_zsh_shell_ubuntu_1804/sudo apt-get install zshzsh --versionwhereis zshsudo usermod -s /usr/bin/zsh $(whoami)sudo rebootsudo apt-get install powerline fonts-pow...原创 2020-04-29 18:57:12 · 324 阅读 · 0 评论 -
系统启动U盘制作
YUMI使用视频教程YUMI工具下载原创 2019-02-22 15:12:44 · 1998 阅读 · 0 评论 -
ubutnu系统维护
说到分区方案,/boot根本不需要,只会带来更多麻烦。初学者建议空闲空间只分两/三个分区,/和home就足够了。swap如果内存大就不要。/efi:200M~500,采用Logical Partition,用于boot安装到此efi分区,(本人采用1G存储大小)/:128G大小,采用Primary Partition/home: 剩余存储安装ubuntu系统时安装到efi分区...................................................原创 2020-04-07 11:38:09 · 3055 阅读 · 0 评论 -
Ubuntu之driver,cuda,cudnn,video codec sdk
prepare envnouveau模式#Disable the Nouveau Driverssudo vim /etc/modprobe.d/blacklist-nouveau.conf#Add the following two lines to the fileblacklist nouveauoptions nouveau modeset=0#Regenerate the ...原创 2019-12-06 10:36:07 · 2168 阅读 · 0 评论 -
pgyvpn使用
文章目录简介使用步骤1. 手机客户端2. 本地windows系统远程登录2.1 登录远程桌面2.2. ssh远程登录3. 本地ubuntu18系统远程登录简介参考蒲公英官网使用步骤首先使用手机客户端进行登录,修改固定登录密码,方便后续步骤登录使用,然后是windows桌面/ssh远程登录和linux桌面/ssh远程登录。1. 手机客户端官方下载地址下载根据自己的手机系统类型(an...原创 2020-02-10 22:33:16 · 7720 阅读 · 1 评论 -
ubuntu18远程桌面
https://zhuanlan.zhihu.com/p/40937988原创 2019-11-08 16:39:01 · 3820 阅读 · 0 评论 -
ubuntu18磁盘扩容(vmware或exsi)
官方网站:https://techexpert.tips/zh-hans/vmware-zh-hans/%E5%9C%A8vmware-esxi%E4%B8%8A%E8%B0%83%E6%95%B4linux%E8%99%9A%E6%8B%9F%E6%9C%BA%E7%A3%81%E7%9B%98%E7%9A%84%E5%A4%A7%E5%B0%8F/csnd网站参考:https://blo...原创 2019-10-30 16:23:09 · 884 阅读 · 0 评论 -
ubuntu18之ssh服务
参考:https://www.jianshu.com/p/91420fa105f6service sshd start //启动 SSHD 服务 #如果出现Service不存在的情况,说明sshd服务未安装#安装并启用sshdsudo apt-get install openssh-serverservice sshd start...原创 2019-10-23 16:30:23 · 432 阅读 · 0 评论 -
Centos7之GitLab服务器搭建,维护(开启自启,自动定时备份,还原恢复)
环境要求:windows系统VMware Workstation Pro 12版本及以上Centos7 系统镜像iso安装文件待续原创 2019-02-22 11:50:41 · 1914 阅读 · 0 评论 -
虚拟化esxi6.7安装和维护+安装ubuntu18
参考:http://zhuanlan.51cto.com/art/201703/536043.htm原创 2019-10-23 19:28:07 · 4471 阅读 · 0 评论 -
centos7 共享文件(samba)及定时自动同步备份
https://my.oschina.net/u/3783115/blog/1919892?from=timeline原创 2019-02-28 14:07:14 · 3379 阅读 · 0 评论 -
ubuntu文件服务器:samba
sudo apt-get install samba samba-common #安装samba服务器sudo mkdir /home/samba/share #创建一个用于分享的samba目录sudo chmod 777 /home/samba/share #给创建的这个目录设置权限sudo smbpasswd -a xxx #添加xxx用户,之后会需要设置samba的密码su...............原创 2019-09-29 10:11:54 · 960 阅读 · 0 评论 -
ubuntu18之硬盘
硬盘管理原创 2019-10-11 15:39:22 · 2527 阅读 · 0 评论 -
ubuntu18搭建Gitlab服务
安装sudo apt-get install -y postfix #选择 Internet Sitesudo apt-get install curlcurl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh|sudo bashsudo apt-get install g...原创 2019-10-11 17:16:23 · 920 阅读 · 0 评论 -
ubuntu文件服务器:NFS
NFS服务搭建和使用原创 2019-09-05 00:18:20 · 1715 阅读 · 0 评论