Tag: source

在kubuntu 18.04上安装kmymoney 4.8.1

我安装了Kubuntu 18.04和Kmymoney 5.0。 现在我发现了一个bug。 我看不到你在这里看到的股票报价https://docs.kde.org/stable4/en/extragear-office/kmymoney/details.investments.securities.html 。 现在我知道4.8.1中没有错误。 现在我的问题是:如何从源头通过https://download.kde.org/stable/kmymoney/4.8.1/src/在Kubuntu 18.04中安装kmymoney 4.8.1。 谢谢您的帮助!

如何制作Krusader的项目

我的一般问题的一个例子https://askubuntu.com/questions/485242/an-introduction-to-translating-and-debugging-source-code :我安装了’Qt 4 Designer’,我已经下载了krusader- 2.4.0-beta3.tar.bz2文件。 在打包文件中,我看到包含的CMakeLists.txt project(krusader) INCLUDE(CPack) set(VERSION “2.4.0-beta3” ) set(RELEASE_NAME “Single Step”) find_package(KDE4 REQUIRED) include(KDE4Defaults) include_directories( ${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) set(CMAKE_VERBOSE_MAKEFILE OFF) add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) add_definitions( “-DKRARC_ENABLED” ) find_package(ACL) if(ACL_FOUND) add_definitions(-DHAVE_POSIX_ACL) endif(ACL_FOUND) \#include(ConfigureChecks.cmake) add_subdirectory(krusader) add_subdirectory(pics) add_subdirectory(doc-extras) add_subdirectory(krArc) add_subdirectory(iso) add_subdirectory(doc) \#add_subdirectory(krfiledialog) – not used \#add_subdirectory(virt) – not used \#add_subdirectory(tar) – not used message(STATUS “${CMAKE_CURRENT_SOURCE_DIR}: skipped […]

打开终端时为什么没有.profile来源?

刚刚安装了Ubuntu 14.04.1 LTS。 根据.profile, # ~/.profile: executed by the command interpreter for login shells. # This file is not read by bash, if ~/.bash_profile or ~/.bash_login exists. 没有〜/ .bash_profile或〜/ .bash_login。 打开终端时似乎没有源.profile。 打开终端时为什么不来源.profile? 如果没有来源,为什么.profile在那里? 如何知道/控制新终端打开时的来源? 打开新终端时,它是否会“登录”? 在我的路径中添加$ HOME / bin的好地方在哪里? .bashrc中? 这会导致问题,因为.profile具有相同的代码吗?

打开终端时为什么〜/ .bash_profile没有获取来源?

问题 我有一个Ubuntu 11.04虚拟机,我想建立我的Java开发环境。 我做了如下 sudo apt-get install openjdk-6-jdk 在〜/ .bash_profile中添加了以下条目 export JAVA_HOME=/usr/lib/jvm/java-6-openjdk export PATH=$PATH:$JAVA_HOME/bin 保存更改并退出 再次打开终端并输入以下内容 echo $JAVA_HOME (blank) echo $PATH (displayed, but not the JAVA_HOME value) 没有发生任何事情,比如JAVA_HOME的导出和它对PATH的补充从未完成。 解 我不得不去〜/ .bashrc并在文件末尾添加以下条目 #Source bash_profile to set JAVA_HOME and add it to the PATH because for some reason is not being picked up . ~/.bash_profile 问题 为什么我必须这样做? […]