跳至内容
Fivyex's Blog
Fivyex's Blog

I did the right thing, didn't I? It all worked out in the end.

  • Portfolio
  • Archive
  • Site Admin
Fivyex's Blog
Fivyex's Blog

I did the right thing, didn't I? It all worked out in the end.

  • Portfolio
  • Archive
  • Site Admin

使用ssh-client登陆vps

发表评论 / Ubuntu / Fivyex / 13 2 月, 2020

ubuntu已默认安装ssh-client,可直接使用ssh命令连接vps。

用法:

详细用法见ssh -h

……

使用ssh-client登陆vps Read More »

turtlebot Simulation Tutorial Memo

发表评论 / ROS / Fivyex / 12 2 月, 2020

Preparation

Turtlebot Installation

Assumes ROS has been installed on your computer.

Simul……

turtlebot Simulation Tutorial Memo Read More »

php-fpm优化

发表评论 / Website building / Fivyex / 11 2 月, 2020

vps配置

  • SSD: 10 GB RAID-10
  • RAM: 512 MB
  • CPU: 1x Intel Xeon

问题

php-fpm常年占用过多内存(>60%)。

解决方法

……

php-fpm优化 Read More »

navigation Tutorial Memo #1: Basic

发表评论 / ROS / Fivyex / 11 2 月, 2020

Setting up your robot using tf

Transform Configuration

Writing Code

Broadcasting a Tr……

navigation Tutorial Memo #1: Basic Read More »

HTTP-Internal Server Error(HTTP-500)

发表评论 / Website building / Fivyex / 10 2 月, 2020

造成500错误常见原因有:ASP语法出错、ACCESS数据库连接语句出错、文件引用与包含路径出错(如未启用父路径)、使用了服务器不支持的组件如FSO等。

出错原因:nginx中的.user.in......

HTTP-Internal Server Error(HTTP-500) Read More »

actionlib Tutorials Memo

发表评论 / ROS / Fivyex / 9 2 月, 2020

Workspace Setup

Beginner Tutorials

This example action server generates a Fibonacci sequence……

actionlib Tutorials Memo Read More »

DS4Windows:电脑也能使用PS4手柄

发表评论 / Windows / Fivyex / 9 2 月, 2020

简介

DS4Windows是一款通过模拟Xbox360手柄来实现在电脑上也能使用PS4的DualShock 4手柄的功能的轻量软件。目前电脑上只有为数不多的游戏平台(Steam)上为数不多的游戏……

DS4Windows:电脑也能使用PS4手柄 Read More »

tf Tutorial Memo

一条评论 / ROS / Fivyex / 3 2 月, 2020

Platform: Ubuntu 14.04 & ROS Indigo

NOTICE! This is only a rough summary of ROS tf tutorials…….

tf Tutorial Memo Read More »

ROS Tutorials-Beginnner Level Memo

一条评论 / ROS / Fivyex / 12 1 月, 2020

Platform: Ubuntu 14.04 & ROS Indigo

NOTICE! This is only a rough summary of ROS tutorials. Fo……

ROS Tutorials-Beginnner Level Memo Read More »

WordPress 搬家:Apache to Nginx

一条评论 / Website building / Fivyex / 10 1 月, 2020

备份

网站数据:

  • 安装All-in-One WP Migration插件
  • export to file
  • 将备份文件保存至本地

配置文件(可选):

如果不打算更改数据库/ftp/密钥……

WordPress 搬家:Apache to Nginx Read More »

Ubuntu:grub2部分配置

发表评论 / Ubuntu / Fivyex / 9 1 月, 2020

GRUB_DEFAULT=0

设置默认启动项,按menuentry顺序。比如要默认从第四个菜单项启动,数字改为3。若改为 saved,则默认为上次启动项。

GRUB_TIMEOUT=”10……

Ubuntu:grub2部分配置 Read More »

Linux 下完全卸载Java

发表评论 / Ubuntu / Fivyex / 20 12 月, 2019

卸载原因

对一个内存只有512Mb的小小VPS,Java的内存占用过于恐怖了,直接吃掉了一小半,故考虑卸载

步骤

移除所有 Java相关包 (Sun, Oracle, OpenJDK……

Linux 下完全卸载Java Read More »

Traccar 记录你的足迹

发表评论 / Website building / Fivyex / 20 12 月, 2019

简介

Traccar官网: https://www.traccar.org/

Traccar是一款GPS跟踪平台。服务端支持Windows,Linux。客户端兼容大量支持GPS的设备(当……

Traccar 记录你的足迹 Read More »

为你的网站添加SSL证书

发表评论 / Website building / Fivyex / 15 12 月, 2019

环境

LAMP

  • Linux:Ubuntu 18.04
  • Apache2
  • MySQL
  • PHP

获取SSL证书

大多数网络运营商都会提供免费的SSL证书,我的是在阿里云上面申请的。……

为你的网站添加SSL证书 Read More »

Windows 延迟启动应用程序

发表评论 / Windows / Fivyex / 28 11 月, 2019

问题:

Windows启动项启动顺序无法自定义,哪个跑得快哪个先启动。

有线校园网认证程序经常落后于一些需要网络的程序(如TIM,微信等)启动,导致不能自动登录,要自己摁多几下,麻烦的很。……

Windows 延迟启动应用程序 Read More »

Linux+Windows双系统时间不一致

8条评论 / Ubuntu, Windows / Fivyex / 26 11 月, 2019

问题: Linux下时间显示是正常的,但是回到Windows下时间就会慢了8个小时

原因: 因为Windows默认使用硬件时钟,而Linux使用网络时间

在Linux下打开终端,输入命令……

Linux+Windows双系统时间不一致 Read More »

V2ray failed to handler mux client connection

2条评论 / Windows / Fivyex / 23 11 月, 2019

原因:

系统时间与服务器时间不对应

解决办法:

手动将系统时间更改正确。

查看和修改Linux的时区

查看当前时区

修改设置Linux服务器时区

查看……

V2ray failed to handler mux client connection Read More »

sudo免输入密码

发表评论 / Ubuntu / Fivyex / 12 11 月, 2019

使用sudo命令老是要输入密码很烦

将里面的%admin ALL=(ALL) ALL改为%admin ALL=(ALL) NOPASSWD: ALL

将里面的%sudo ALL=(AL......

sudo免输入密码 Read More »

连接机器人

发表评论 / 机器人操作与优化 / Fivyex / 11 11 月, 2019

插网线

实验室电脑后面一共有两条网线,一条连网,一条连机器人。

配置网络

法一:使用网络“双机连接”。

法二:新建网络,将ipv4地址改为192.168.0.xxx(xxx为空……

连接机器人 Read More »

ROS(indigo)当中的破事-实机操作

发表评论 / ROS / Fivyex / 23 10 月, 2019

电脑上运行得好好的代码,复制到新电脑就catkin_make不了。

原因:

复制到新电脑后,权限可能没有设置好。

解决方法:

检查包中文件权限,确认都更改为777,或r(可读)……

ROS(indigo)当中的破事-实机操作 Read More »

← Previous 1 … 13 14 15 Next →

Home Lab

  • auth
  • xray-ui
  • pve
  • syncthing
  • filebrowser
  • amp
  • vaultwarden
  • pbs
  • omnitools
  • Acceptable Use Policy
  • Cookie Policy
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

Copyright © 2026 Fivyex's Blog | Powered by Astra WordPress 主题