-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
58 lines (49 loc) · 5.16 KB
/
Copy pathindex.xml
File metadata and controls
58 lines (49 loc) · 5.16 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>DQ的博客</title>
<link>https://luwanjia.github.io/</link>
<description>Recent content on DQ的博客</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Thu, 21 Mar 2019 14:29:59 +0800</lastBuildDate>
<atom:link href="https://luwanjia.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Linux常用软件</title>
<link>https://luwanjia.github.io/post/linux%E5%B8%B8%E7%94%A8%E8%BD%AF%E4%BB%B6/</link>
<pubDate>Thu, 21 Mar 2019 14:29:59 +0800</pubDate>
<guid>https://luwanjia.github.io/post/linux%E5%B8%B8%E7%94%A8%E8%BD%AF%E4%BB%B6/</guid>
<description>1 办公软件 1.1 WPS For Linux 下载地址:http://wps-community.org/downloads 下载最新版并安装字体(wps/ttf-wps-fonts/)
1.2 邮箱客户端Thunderbird Thunderbird虽然比较庞大,但还是蛮好用的
2 下载工具 wget、curl
3 音视频软件 4 开发工具 4.1 KDevelop(C++开发IDE) 下载地址:https://www.kdevelop.org/download
4.2 VSCode(微软出品) 下载地址:https://code.visualstudio.com/
4.3 Qt5(C++开发IDE) 下载地址:http://download.qt.io/
4.3 Typora(Markdown编辑器) 下载地址:https://www.typora.io/
4.4 Remarkable(Markdown编辑器) 下载地址:&lt;http://remarkableapp.github.io/
5 远程桌面 5.1 Teamviewer 下载地址:https://www.teamviewer.com/zhcn/download/linux/
5.2 VNC 6 翻墙工具 6.1 Shadowsocks-qt5 下载地址:https://github.com/shadowsocks/shadowsocks-qt5</description>
</item>
<item>
<title>Linux云主机搭建个人Leanote云笔记平台</title>
<link>https://luwanjia.github.io/post/linux%E4%BA%91%E4%B8%BB%E6%9C%BA%E6%90%AD%E5%BB%BA%E4%B8%AA%E4%BA%BAleanote%E4%BA%91%E7%AC%94%E8%AE%B0%E5%B9%B3%E5%8F%B0/</link>
<pubDate>Thu, 21 Mar 2019 14:21:28 +0800</pubDate>
<guid>https://luwanjia.github.io/post/linux%E4%BA%91%E4%B8%BB%E6%9C%BA%E6%90%AD%E5%BB%BA%E4%B8%AA%E4%BA%BAleanote%E4%BA%91%E7%AC%94%E8%AE%B0%E5%B9%B3%E5%8F%B0/</guid>
<description>1 安装Golang语言环境 2 安装MongoDB数据库 2.1 下载 # wget -c http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.6.tgz 2.2 安装 # tar -xvf mongodb-linux-x86_64-4.0.6.tgz # mv mongodb-linux-x86_64-4.0.6 /opt/ 在/etc/profile中追加环境变量: /opt/mongodb-linux-x86_64-4.0.6/bin
2.3 定义数据库存储路径 自定义路径为:/root/mongodb_data
#mkdir /root/mongodb_data 2.4 启动mongodb nohup mongod --dbpath /root/mongodb_data &amp; 3 安装Revel Web框架 # go get github.com/revel/cmd/revel 4 安装Leanote 4.1 下载 #wget -c https://sourceforge.net/projects/leanote-bin/files/2.6.1/leanote-linux-amd64-v2.6.1.bin.tar.gz 4.2 安装 自定义安装到/root目录下
# tar -xvf leanote-linux-amd64-v2.6.1.bin.tar.gz # mv leanote /root/ # cd /root/ 4.</description>
</item>
<item>
<title>Linux下maven安装</title>
<link>https://luwanjia.github.io/post/linux%E4%B8%8Bmaven%E5%AE%89%E8%A3%85/</link>
<pubDate>Thu, 21 Mar 2019 14:06:43 +0800</pubDate>
<guid>https://luwanjia.github.io/post/linux%E4%B8%8Bmaven%E5%AE%89%E8%A3%85/</guid>
<description>1. 下载 下载地址http://maven.apache.org/download.cgi
$wget -c http://mirrors.hust.edu.cn/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz 2. 安装 解压到安装目录/opt
#tar -xvf apache-maven-3.6.0-bin.tar.gz -C /opt 3. 配置环境变量 #vi /etc/profile export MAVEN_HOME=/opt/apache-maven-3.6.0 export PATH=$PATH:$MAVEN_HOME/bin 4. 配置仓库路径 配置依赖包存储路径:
#vi /opt/apache-maven-3.6.0/conf/settings.xml &lt;localRepository&gt;/opt/repo-maven-3.6.0/&lt;/localRepository&gt; 配置本地maven私服:
#vi /opt/apache-maven-3.6.0/conf/settings.xml &lt;!-- 指定maven私服 --&gt; &lt;profile&gt; &lt;id&gt;mynexus&lt;/id&gt; &lt;repositories&gt; &lt;repository&gt; &lt;id&gt;nexus_public&lt;/id&gt; &lt;url&gt;http://172.31.134.221:8081/nexus/content/groups/public/&lt;/url&gt; &lt;releases&gt; &lt;enabled&gt;true&lt;/enabled&gt; &lt;/releases&gt; &lt;snapshots&gt; &lt;enabled&gt;true&lt;/enabled&gt; &lt;/snapshots&gt; &lt;/repository&gt; &lt;/repositories&gt; &lt;pluginRepositories&gt; &lt;pluginRepository&gt; &lt;id&gt;nexus_public&lt;/id&gt; &lt;url&gt;http://172.31.134.221:8081/nexus/content/groups/public/&lt;/url&gt; &lt;releases&gt; &lt;enabled&gt;true&lt;/enabled&gt; &lt;/releases&gt; &lt;snapshots&gt; &lt;enabled&gt;true&lt;/enabled&gt; &lt;/snapshots&gt; &lt;/pluginRepository&gt; &lt;/pluginRepositories&gt; &lt;/profile&gt; &lt;activeProfiles&gt; &lt;activeProfile&gt;mynexus&lt;/activeProfile&gt; &lt;/activeProfiles&gt; 4.</description>
</item>
</channel>
</rss>