首页 > 系统相关 >Setting up development environment with Ubuntu 22.04

Setting up development environment with Ubuntu 22.04

时间:2023-09-28 22:14:02浏览次数:30  
标签:development 22.04 up environment Setting 登陆 https Ubuntu com

0.

Dont' use Snap & Ubuntu appliation store.

90%的问题可以通过重启解决

改了IP后需要,禁用网络后再开启才生效

 

1. Input:

https://shurufa.sogou.com/linux/guide

 

2. IDE:

https://www.jetbrains.com/toolbox-app/

https://code.visualstudio.com/

 

3. Remote Control:

 

3.1 Setting - Sharing - Remote Control

 

https://linuxhint.com/enable-remote-desktop-ubuntu-access-windows/

https://ubuntuhandbook.org/index.php/2023/07/share-extended-screen-gnome/

问题:Sogou输入法无法使用,密码每次重启都会重新生成

3.2 xrdp

Issue1: xrdp login failed for display 0 

Done: It is likely that you did not set the username/password correctly.  Change user.1  to user1

Issue2: Windows rdp密码用户名登陆后闪退

Done: 已经在电脑上登陆了无法继续再登陆, 需要注销后由client登陆

 

4. Password manager

https://bitwarden.com/  Chrome plugin

 

5. Personnal Data

ln -s source dest

 

6. WxWork

https://www.ubuntukylin.com/applications/108-cn.html

Issue: 无法使用截屏

标签:development,22.04,up,environment,Setting,登陆,https,Ubuntu,com
From: https://www.cnblogs.com/chinaniit/p/17736552.html

相关文章

  • 如何更新ubuntu18.04->20.04->22.04
    https://www.lsjlt.com/news/375465.html#usethiscommandtoupdatethesystemversionfrom18.04to20.04#justfollowthetutorial,andclick'yes'and'keepversion'etc..#thefirstselectionthesystemautopresents#ittakes1h......
  • 2023 ICPC 网络赛2 L Super-palindrome 字符串 border KMP dp
    传送门给出一个\(5000\)长的字符串判断有多少个连续子串是超级回文的。这里超级回文的定义是将字符串分成\(2k\)段每段按照回文对应相等。设\(f_{l,r}\)表示区间\(l,r\)是否是符合要求的。引入\(border\)的定义:最长的前缀和后缀匹配长度。容易想到我们如果暴力枚举每个区间来......
  • Ubuntu22.04安装AMBER22-串行+Cuda+并行版
       本人新采购了一台DELL工作站,准备作为计算平台。最近又听说AMBER22学术免费了,于是尝试在工作站上安装。安装过程主要参考的是Amber22的手册,*安装环境:Ubuntu22.04.3LTS,RTX4090,【gcc,g++,gfortran】10.5.0,CUDA11.2,cmake3.2.1一、......
  • qoj6735. Tree (The 1st Universal Cup. Stage 22: Shaanxi)
    https://qoj.ac/contest/1287/problem/6735考虑定一个根,然后把每个点的点权附属在父边权上,让每条边的边权变成一个pair。这样,一个符合条件的路径需要满足的条件是:路径内所有边的边权pair相同,以及路径根节点(lca)的颜色符合。对于当前树上每个边权相同的连通块分开考虑。对......
  • Begin of Upload
    wp上传的文件后缀有要求  这个看出来是简单的客户端检测,直接用bp抓包改后缀即可先将原来的.php改成.png上传再到bp改后缀名   放包直接蚁剑连接 根目录找到flag   正文题目很简单,主要想分享一下过程中遇到的坑 要加http就是连接蚁剑的时候网址......
  • nslookup测试网络命令
    C:\Users\rw>nslookupsettype=NSwww.baidu.comserver114.114.114.114www.baidu.comsetdebugwww.baidu.com#语法为nslookup-qt=类型目标域名指定的DNS服务器IP或域名[root@]#nslookup-qt=Awww.baidu.com192.168.1.2#nslookup域名域名服务器(用指定的域名服务器来查询)[......
  • 从Redmi Note 13系列发布看当前UP主身份立场
    RedmiNote 13系列发布了,不出意外,出现了很多UP主在吹捧这款手机,外观在线,有性价比,性能够用。这些UP基本都可以确定,和小米存在某种关系,要么是合作关系,要么是自来水。RedmiNote13系列,有人说缺点,就一大堆人在下面攻击UP。你说是偶然吗?我不相信。RedmiNote 13 我没用过,但是根......
  • CF957 Codeforces Round 472 (rated, Div. 2, based on VK Cup 2018 Round 2)
    CF957ATritonicIridescence如果原序列中有两个相同的字符,显然不合法。如果开头或者结尾为?,或者有两个连续的?,或者一个?两边的字符不同显然合法。否则一定不合法。#include<iostream>#include<cstdio>usingnamespacestd;constintN=105;intn;chars[N];intma......
  • CF1079 Codeforces Round 522 (Div. 2, based on Technocup 2019 Elimination Round 3
    CF1079AKitchenUtensils令\(c_i\)表示餐具\(i\)出现的数量,最小的餐具套数为\(t=\lceil\frac{\max\{c_i\}}{k}\rceil\),按照这个计算就好了。#include<iostream>#include<cstdio>#include<algorithm>usingnamespacestd;constintN=105;intn,k;inta[N]......
  • CF1072 Codeforces Round 517 (Div. 2, based on Technocup 2019 Elimination Round 2
    CF1072AGoldenPlate第\(i\)个矩形的周长为\(2(w-4(i-1))+2(h-4(i-1))-4\),枚举\(i\)求和。#include<iostream>#include<cstdio>usingnamespacestd;intn,m,k;intmain(){ scanf("%d%d%d",&n,&m,&k); intans=0; for(i......