ubuntu
木绿
这个作者很懒,什么都没留下…
展开
-
Ubuntu下不能复制粘贴文件的问题
1.先复制要粘贴的文件2.转到要粘贴的路径下,打开终端,输入sudo nautilus3.然后粘贴。原创 2020-06-02 23:25:17 · 7466 阅读 · 2 评论 -
FLS_so动态链接库,配置launch.json,tasks.json,c_cpp_properties.json
launch.json{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configuratio原创 2020-05-28 17:20:18 · 817 阅读 · 0 评论 -
linux中的so库里的符号名-mangle和demangle
mangle 但是我们今天关注的不是RTTI,而是关注与通过type_info获取到的名称信息,type_info有一个name()的方法,返回const char*,但是这个name到底是什么在C++规范中没有限定,因此不同编译器返回的结果不同,例如下面的代码:cout<<typeid(std::string)<<endl; 如果使用vc编译器进行编译,将返回:class std::basic_string<char,struct std::char_traits转载 2020-05-16 18:31:47 · 1533 阅读 · 0 评论 -
虚拟机共享文件夹不显示
安装vmtools后还是不显示执行以下操作//但是只有root权限才行1:输入命令 apt-get install open-vm-tools 安装工具2:输入命令 vmhgfs-fuse .host:/ /mnt/hgfs 完成设置3:输入命令 sudo gedit /etc/fstab: 在最后添加一行: .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_...原创 2020-05-01 20:53:12 · 708 阅读 · 0 评论 -
Ubuntu16.04 安装wine
步骤可参考这篇博客遇到的问题:1.执行sudo apt-get update 报错W: GPG 错误:https://dl.winehq.org/wine-builds/ubuntu xenial InRelease: 由于没有公钥解决方法原创 2020-05-01 15:16:04 · 578 阅读 · 0 评论