ubuntu 配置

ubuntu 配置

2022/9/1 配置了Ubuntu,用来学习《CSAPP》上面需要实践的代码。这篇博客是为了记住我究竟配置了什么,也为了方便下次在其他设备上配置Ubuntu。

VScode 下载和配置

下载的方法见官网,配置C/C++的方法网上的博客也很好搜到

Linux系统VsCode 配置C/C++环境_ZERO_pan的博客-CSDN博客_linuxvscode配置c++环境

接下来使将Open With Code 添加到右键菜单

这部分参考

ubuntu中为vscode添加右键菜单—网上没有—就自己做了个 - 洪豆豆的记录 - 博客园 (cnblogs.com)

其中修改了一点命令,将visual-studio-code 改成了code

$HOME/.local/share/nautilus/script/ 目录下新建一个文件,文件名就是显示在右键菜单上的名字。

接着将以下内容复制到新建的文件中

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
#!/bin/bash
#
# This script opens a gnome-terminal in the directory you select.
#
# Distributed under the terms of GNU GPL version 2 or later
#
# Install in ~/.gnome2/nautilus-scripts or ~/Nautilus/scripts
# You need to be running Nautilus 1.0.3+ to use scripts.
# When a directory is selected, go there. Otherwise go to current
# directory. If more than one directory is selected, show error.
if [ -n "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" ]; then
set $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
if [ $# -eq 1 ]; then
destination="$1"
# Go to file's directory if it's a file
if [ ! -d "$destination" ]; then
destination="`dirname "$destination"`"
fi
else
zenity --error --title="Error - Open terminal here" /
--text="You can only select one directory."
exit 1
fi
else
destination="`echo "$NAUTILUS_SCRIPT_CURRENT_URI" | sed 's/^file://////'`"
fi
# It's only possible to go to local directories
if [ -n "`echo "$destination" | grep '^[a-zA-Z0-9]/+:'`" ]; then
zenity --error --title="Error - Open terminal here" /
--text="Only local directories can be used."
exit 1
fi
cd "$destination"
exec code "$destination"

最后运行命令chmod +x 刚才创建的文件名

对文件或文件夹右键就可以看到刚才添加的右键菜单了。

下拉式终端Yakuka

这里 找到 Ubuntu 根据提示安装。

如果安装失败可能要换清华源,如下:

更换清华源

参考:https://blog.csdn.net/weixin_49700990/article/details/122005001

首先使用lsb_release -a 查看自己的Ubuntu版本

我们要更改的文件是 /etc/apt/sources.list,

首先使用命令对这个文件进行备份

sudo cp /etc/apt/sources.list /etc/apt/sources_save.list

接着 进入清华源网站 ,找到Ubuntu的源 ,选择合适的版本,根据提示手动替换即可。

设置应用开机启动

在Ubuntu自带的 “启动应用程序” 里配置

更改磁盘大小

参考 https://blog.csdn.net/Shine_Su/article/details/124630751

首先在VMware里扩容,接着根据上面的博客,在Ubuntu里手动配置。

将虚拟机的内容复制到虚拟机外

参考:https://blog.csdn.net/u013554213/article/details/124061526

依次执行以下命令,最后重启Ubuntu

1
2
3
4
5
# 删除原来安装过的文件
sudo apt autoremove open-vm-tools
# 输入安装命令:
sudo apt install open-vm-tools
sudo apt install open-vm-tools-desktop

截图软件

https://zhuanlan.zhihu.com/p/415011610

sudo apt install flameshot

查看安装路径

which flameshot

在设置中,添加键盘快捷键

命令是/usr/bin/flameshot gui