首页 > 其他分享 >Freebsd

Freebsd

时间:2023-01-11 18:58:25浏览次数:37  
标签:... FreeBSD repository up pkg Freebsd date

Problem

root@freebsd13:~ # pkg-static install intellij
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating ustc repository catalogue...
ustc repository is up to date.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Updating FreeBSD repository catalogue...
^C
root@freebsd13:~ # pkg-static upgrade pkg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating ustc repository catalogue...
ustc repository is up to date.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
Checking integrity... done (0 conflicting)
Your packages are up to date.
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating ustc repository catalogue...
ustc repository is up to date.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
Checking integrity... done (0 conflicting)
Your packages are up to date.
Updating FreeBSD repository catalogue...

 

 

Resloution

pkg-static bootstrap -f

root@freebsd13:~ # pkg-static bootstrap -f
pkg(8) is already installed. Forcing reinstallation through pkg(7).
The package management tool is not yet installed on your system.
Do you want to fetch and install it now? [y/N]: y
Bootstrapping pkg from pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/FreeBSD:13:amd64/quarterly, please wait...
Installing pkg-1.19.0...
package pkg is already installed, forced install
Extracting pkg-1.19.0: 100%
root@freebsd13:~ # pkg-static install intellij
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating ustc repository catalogue...
ustc repository is up to date.
All repositories are up to date.
Updating database digests format: 100%

 

标签:...,FreeBSD,repository,up,pkg,Freebsd,date
From: https://www.cnblogs.com/passedbylove/p/17044647.html

相关文章

  • freebsd 开启snmp
    参考配置https://blog.csdn.net/gaga_yan/article/details/38512937这个里面有个生成默认snmp配置的挺好使snmpconf-gbasic_setup按照说明生成配置文件遇到的......
  • FreeBSD下开发Python插件并使用nuitka打包
    承接前面的文章https://www.cnblogs.com/passedbylove/p/16759512.htmlhttps://www.cnblogs.com/passedbylove/p/16756063.html自定义Python插件的setup.pyfromdistu......