首页 > 其他分享 >改变IntelliJ IDEA 中的system和config/plugins的默认C盘的路径

改变IntelliJ IDEA 中的system和config/plugins的默认C盘的路径

时间:2024-08-12 17:28:03浏览次数:5  
标签:IntelliJIdea IntelliJ idea IDEA config system

1,问题,在为idea在线安装插件时,如JProfiler,会默认安装到C盘,而本人则是希望安装到软件所在的D盘目录下,那么如何修改呢:

C:\Users\xxx.IntelliJIdea\config\plugins
2,修改方法:

打开IntelliJ IDEA的安装目录,如本人的为 D:\JetBrains\IntelliJ IDEA 2018.2

然后在bin目录下找到 idea.properties 文件,

分别修改如下的两行配置代码:

# idea.system.path=${user.home}/.IntelliJIdea/config
# idea.system.path=${user.home}/.IntelliJIdea/system

去掉注释,修改后为

idea.config.path=D:/JetBrains/IntelliJ IDEA 2018.2/.IntelliJIdea/config
idea.system.path=D:/JetBrains/IntelliJ IDEA 2018.2/.IntelliJIdea/system

 

3,重新启动idea,如果想使用原来的配置和下载的插件,可以将原来C盘(C:\Users\xxx.IntelliJIdea)对应的文件

拷贝到D盘(idea.config.path=D:/DevEnv/JetBrains/IntelliJ IDEA 2018.2/.IntelliJIdea)即可






标签:IntelliJIdea,IntelliJ,idea,IDEA,config,system
From: https://www.cnblogs.com/Fooo/p/18355421

相关文章

  • IDEA插件-Translation
    简介Translation是一个为IntelliJIDEA和其他基于JetBrains的IDE(如PyCharm、WebStorm等)设计的插件。这个插件的主要功能是帮助开发者在编写代码或文档时快速翻译文本。它集成了谷歌翻译、微软翻译、DeepL翻译、OpenAI翻译、有道翻译等众多翻译引擎官网https://intellij-tra......
  • C# System.DateTime.Now 的一些用法
    C#中的日期处理函数     //2007年4月24日     this.TextBox6.Text=System.DateTime.Now.ToString("D");     //2007-4-24     this.TextBox7.Text=System.DateTime.Now.ToString("d");     //2007年4月24日16:30:15     this.TextBox8......
  • 环境配置:如何在IntelliJ IDEA中安装和修改JDK版本配置(以Windows为例)
    环境配置:如何在IntelliJIDEA中安装和修改JDK版本配置(以Windows为例)为了在Java开发中使用最新的功能和优化,升级和配置JDK版本是必不可少的。本文将详细介绍如何下载、安装、配置最新的JDK版本,并在IntelliJIDEA中正确设置项目的JDK版本,确保你的开发环境能够支持最新的Java......
  • Ideas of Problems in Aug. 2024
    \(\text{LuoguP1552[APIO2012]派遣}\)前置芝士:可并堆(左偏树)或斜堆或启发式合并。本题题意概括为:给定一颗以\(1\)为根的树,每个点有权值\(L_i\),花费\(C_i\),可以选择一个以某个结点为根的子树,并从其中选出一个点集\(T\)满足\(\sum_{i\inT}C_i\leqM\),那么此次的价......
  • IDEA 错误 找不到或无法加载主类---完美解决方法
    问题报错找不到或无法加载主类问题截图猜测:1,未能成功编译;尝试:菜单—》Build—》RebuildProdject结果:启动服务仍然报同样的错误2,缓存问题;尝试:菜单—》File—》InvalidateCaches/Restart选择InvalidateandRestart或者只是Invalidate,清除掉缓存,然后>RebuildPr......
  • JetBrains IntelliJ IDEA 2024.2 (macOS, Linux, Windows) - 领先的 Java 和 Kotlin I
    JetBrainsIntelliJIDEA2024.2(macOS,Linux,Windows)-领先的Java和KotlinIDE请访问原文链接:https://sysin.org/blog/jetbrains-idea/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.orgJetBrainsIntelliJIDEA-领先的Java和KotlinIDE使开发更高效、更......
  • 使用WIN7 CMD 时出现了“The system cannot write to the specified device”
    使用WIN7CMD时出现了“Thesystemcannotwritetothespecifieddevice”(1)输入chcp可以查看cmd的编码(2)常见编码编号:65001:utf-820936:GB2312936:GBK437:美国英语(3)修改cmd的编码:chcpXXXX(编码编号) 1、右键点击Bat批处理,选择编辑,然后打开,重新另存为编码选择ANSI......
  • System has not been booted with systemd as init system (PID 1). Can't operate on
    昨天为了安装mariadb,不小心可能安装了sysinit的东西,在启动gogs服务时报了这个错'Systemhasnotbeenbootedwithsystemdasinitsystem(PID1).Can'toperate'找到了解决方案:我的理解是这样的linux系统大致有两种管理服务的方式,一种是sysinit一种是systemctl ......
  • IDEA Sonar 扫描
    1.修改SonarQube-7.7\conf\sonar.properties数据库配置2.启动SonarQube-7.7\bin\windows-x86-64\StartSonar.bat,打开localhost:9000,账密admin/admin3.pom文件配置:<profiles><profile><id>sonar</id><properties>......
  • System to practice
    1、Linux中哪个系统调用可以用于设置一个定时器,当时间到时,发送一个信号给进程?(B)a)setitimer()b)alarm()c)timer_create()d)time()tips:timer_create()是一个用于创建定时器的系统调用函数,定义在POSIX标准中,属于Linux系统的时间管理功能。它用于创建一个定时器对象,并......