Install Gnome3 on FreeBSD 12

Clash Royale CLAN TAG#URR8PPP
According to the FreeBSD Handbook, Gnome can be installed as follows.
pkg install gnome3
This command results in the following error.
pkg: No packages available to install matching 'gnome3'
have been found in the repositories.
I attempted the following command to determine which package I need to install.
pkg search gnome
This yielded 155 results but I am not certain which one to use.
I am using FreeBSD 12.
I would rather not use the ports collection. I prefer to use pre-built binary packages.
gnome freebsd
add a comment |
According to the FreeBSD Handbook, Gnome can be installed as follows.
pkg install gnome3
This command results in the following error.
pkg: No packages available to install matching 'gnome3'
have been found in the repositories.
I attempted the following command to determine which package I need to install.
pkg search gnome
This yielded 155 results but I am not certain which one to use.
I am using FreeBSD 12.
I would rather not use the ports collection. I prefer to use pre-built binary packages.
gnome freebsd
add a comment |
According to the FreeBSD Handbook, Gnome can be installed as follows.
pkg install gnome3
This command results in the following error.
pkg: No packages available to install matching 'gnome3'
have been found in the repositories.
I attempted the following command to determine which package I need to install.
pkg search gnome
This yielded 155 results but I am not certain which one to use.
I am using FreeBSD 12.
I would rather not use the ports collection. I prefer to use pre-built binary packages.
gnome freebsd
According to the FreeBSD Handbook, Gnome can be installed as follows.
pkg install gnome3
This command results in the following error.
pkg: No packages available to install matching 'gnome3'
have been found in the repositories.
I attempted the following command to determine which package I need to install.
pkg search gnome
This yielded 155 results but I am not certain which one to use.
I am using FreeBSD 12.
I would rather not use the ports collection. I prefer to use pre-built binary packages.
gnome freebsd
gnome freebsd
asked Dec 13 at 3:33
Ben Key
1113
1113
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
There is a meta-port for Gnome 3. It is available on older systems:
$ uname -r
11.1-RELEASE
$ pkg -v
1.10.5
$ pkg search gnome3
gnome3-3.18.0_1 "meta-port" for the GNOME 3 integrated X11 desktop
gnome3-lite-3.18.0_1 The "meta-port" of the GNOME desktop slimmed down for only the basics
libproxy-gnome3-0.4.12 GSettings-based configuration plug-in for libproxy
pinentry-gnome3-1.1.0 GNOME 3 version of the GnuPG password dialog
If you cannot find it the first thing to try is to update the index:
sudo pkg update
You can also look online to see what binary packages are actually built:
https://pkg.freebsd.org/
You are using 12.0 which is only 2 days old. They might not be done building all the binary packages yet. If it is a new install then maybe consider using 11.2 and then upgrade a little later.
So update to make sure. If it is still not there - then build yourself - or simply wait.
I am not sure how updated the FreeBSD Gnome page is but it could be worth tracking that.
That is what I would recommend. If you cannot live with that - then you can use the old previously built packages. Find and download the package as a .txz file on https://pkg.freebsd.org/. I found gnome3-3.18.0.txz and gnome3-lite-3.18.0_1.txz for AMD64
Then you can do:
pkg add <pkgname.txz>
Be sure to check consistency afterwards using pkg check -d and pkg check -B.
I will however only recommend this approach for simpler packages than Gnome. But the option is there...
add a comment |
You can use pkg install gnome-desktop. Worked on my end. It seems that meta package for gnome desktop has changed in this release.
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
add a comment |
You may need to modify pkgng to point at the freebsd repo. but before that make a back up of FreeBSD.conf.
Actually you are going to change repository from
url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly" to
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest".
nano /etc/pkg/repos/FreeBSD.conf:
FreeBSD:
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest"
Mirror_type: "srv",
enabled: yes
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487688%2finstall-gnome3-on-freebsd-12%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is a meta-port for Gnome 3. It is available on older systems:
$ uname -r
11.1-RELEASE
$ pkg -v
1.10.5
$ pkg search gnome3
gnome3-3.18.0_1 "meta-port" for the GNOME 3 integrated X11 desktop
gnome3-lite-3.18.0_1 The "meta-port" of the GNOME desktop slimmed down for only the basics
libproxy-gnome3-0.4.12 GSettings-based configuration plug-in for libproxy
pinentry-gnome3-1.1.0 GNOME 3 version of the GnuPG password dialog
If you cannot find it the first thing to try is to update the index:
sudo pkg update
You can also look online to see what binary packages are actually built:
https://pkg.freebsd.org/
You are using 12.0 which is only 2 days old. They might not be done building all the binary packages yet. If it is a new install then maybe consider using 11.2 and then upgrade a little later.
So update to make sure. If it is still not there - then build yourself - or simply wait.
I am not sure how updated the FreeBSD Gnome page is but it could be worth tracking that.
That is what I would recommend. If you cannot live with that - then you can use the old previously built packages. Find and download the package as a .txz file on https://pkg.freebsd.org/. I found gnome3-3.18.0.txz and gnome3-lite-3.18.0_1.txz for AMD64
Then you can do:
pkg add <pkgname.txz>
Be sure to check consistency afterwards using pkg check -d and pkg check -B.
I will however only recommend this approach for simpler packages than Gnome. But the option is there...
add a comment |
There is a meta-port for Gnome 3. It is available on older systems:
$ uname -r
11.1-RELEASE
$ pkg -v
1.10.5
$ pkg search gnome3
gnome3-3.18.0_1 "meta-port" for the GNOME 3 integrated X11 desktop
gnome3-lite-3.18.0_1 The "meta-port" of the GNOME desktop slimmed down for only the basics
libproxy-gnome3-0.4.12 GSettings-based configuration plug-in for libproxy
pinentry-gnome3-1.1.0 GNOME 3 version of the GnuPG password dialog
If you cannot find it the first thing to try is to update the index:
sudo pkg update
You can also look online to see what binary packages are actually built:
https://pkg.freebsd.org/
You are using 12.0 which is only 2 days old. They might not be done building all the binary packages yet. If it is a new install then maybe consider using 11.2 and then upgrade a little later.
So update to make sure. If it is still not there - then build yourself - or simply wait.
I am not sure how updated the FreeBSD Gnome page is but it could be worth tracking that.
That is what I would recommend. If you cannot live with that - then you can use the old previously built packages. Find and download the package as a .txz file on https://pkg.freebsd.org/. I found gnome3-3.18.0.txz and gnome3-lite-3.18.0_1.txz for AMD64
Then you can do:
pkg add <pkgname.txz>
Be sure to check consistency afterwards using pkg check -d and pkg check -B.
I will however only recommend this approach for simpler packages than Gnome. But the option is there...
add a comment |
There is a meta-port for Gnome 3. It is available on older systems:
$ uname -r
11.1-RELEASE
$ pkg -v
1.10.5
$ pkg search gnome3
gnome3-3.18.0_1 "meta-port" for the GNOME 3 integrated X11 desktop
gnome3-lite-3.18.0_1 The "meta-port" of the GNOME desktop slimmed down for only the basics
libproxy-gnome3-0.4.12 GSettings-based configuration plug-in for libproxy
pinentry-gnome3-1.1.0 GNOME 3 version of the GnuPG password dialog
If you cannot find it the first thing to try is to update the index:
sudo pkg update
You can also look online to see what binary packages are actually built:
https://pkg.freebsd.org/
You are using 12.0 which is only 2 days old. They might not be done building all the binary packages yet. If it is a new install then maybe consider using 11.2 and then upgrade a little later.
So update to make sure. If it is still not there - then build yourself - or simply wait.
I am not sure how updated the FreeBSD Gnome page is but it could be worth tracking that.
That is what I would recommend. If you cannot live with that - then you can use the old previously built packages. Find and download the package as a .txz file on https://pkg.freebsd.org/. I found gnome3-3.18.0.txz and gnome3-lite-3.18.0_1.txz for AMD64
Then you can do:
pkg add <pkgname.txz>
Be sure to check consistency afterwards using pkg check -d and pkg check -B.
I will however only recommend this approach for simpler packages than Gnome. But the option is there...
There is a meta-port for Gnome 3. It is available on older systems:
$ uname -r
11.1-RELEASE
$ pkg -v
1.10.5
$ pkg search gnome3
gnome3-3.18.0_1 "meta-port" for the GNOME 3 integrated X11 desktop
gnome3-lite-3.18.0_1 The "meta-port" of the GNOME desktop slimmed down for only the basics
libproxy-gnome3-0.4.12 GSettings-based configuration plug-in for libproxy
pinentry-gnome3-1.1.0 GNOME 3 version of the GnuPG password dialog
If you cannot find it the first thing to try is to update the index:
sudo pkg update
You can also look online to see what binary packages are actually built:
https://pkg.freebsd.org/
You are using 12.0 which is only 2 days old. They might not be done building all the binary packages yet. If it is a new install then maybe consider using 11.2 and then upgrade a little later.
So update to make sure. If it is still not there - then build yourself - or simply wait.
I am not sure how updated the FreeBSD Gnome page is but it could be worth tracking that.
That is what I would recommend. If you cannot live with that - then you can use the old previously built packages. Find and download the package as a .txz file on https://pkg.freebsd.org/. I found gnome3-3.18.0.txz and gnome3-lite-3.18.0_1.txz for AMD64
Then you can do:
pkg add <pkgname.txz>
Be sure to check consistency afterwards using pkg check -d and pkg check -B.
I will however only recommend this approach for simpler packages than Gnome. But the option is there...
edited Dec 13 at 9:56
answered Dec 13 at 9:36
Claus Andersen
1,614414
1,614414
add a comment |
add a comment |
You can use pkg install gnome-desktop. Worked on my end. It seems that meta package for gnome desktop has changed in this release.
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
add a comment |
You can use pkg install gnome-desktop. Worked on my end. It seems that meta package for gnome desktop has changed in this release.
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
add a comment |
You can use pkg install gnome-desktop. Worked on my end. It seems that meta package for gnome desktop has changed in this release.
You can use pkg install gnome-desktop. Worked on my end. It seems that meta package for gnome desktop has changed in this release.
answered Dec 13 at 9:59
LukeFox
211
211
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
add a comment |
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
Did you not install something else? If you look at the Freshports description it says: "This is a collection of APIs.". That is a strange description then. Would be nice if you could confirm. And the Gnome 3 port is still there.
– Claus Andersen
Dec 13 at 10:01
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
No, I've figured this out while I downloaded ports and searched for gnome-specific ports.
– LukeFox
Dec 13 at 10:15
add a comment |
You may need to modify pkgng to point at the freebsd repo. but before that make a back up of FreeBSD.conf.
Actually you are going to change repository from
url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly" to
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest".
nano /etc/pkg/repos/FreeBSD.conf:
FreeBSD:
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest"
Mirror_type: "srv",
enabled: yes
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You may need to modify pkgng to point at the freebsd repo. but before that make a back up of FreeBSD.conf.
Actually you are going to change repository from
url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly" to
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest".
nano /etc/pkg/repos/FreeBSD.conf:
FreeBSD:
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest"
Mirror_type: "srv",
enabled: yes
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You may need to modify pkgng to point at the freebsd repo. but before that make a back up of FreeBSD.conf.
Actually you are going to change repository from
url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly" to
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest".
nano /etc/pkg/repos/FreeBSD.conf:
FreeBSD:
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest"
Mirror_type: "srv",
enabled: yes
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You may need to modify pkgng to point at the freebsd repo. but before that make a back up of FreeBSD.conf.
Actually you are going to change repository from
url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly" to
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest".
nano /etc/pkg/repos/FreeBSD.conf:
FreeBSD:
url: "pkg+http://pkg.FreeBSD.org/$ABI/latest"
Mirror_type: "srv",
enabled: yes
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 2 days ago
mjr
1
1
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
mjr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487688%2finstall-gnome3-on-freebsd-12%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown