Search found 18 matches
- Sat Aug 18, 2018 3:57 pm
- Forum: General support
- Topic: Disk Encryption
- Replies: 0
- Views: 3882
Disk Encryption
I know that FreeBSD includes an option to encrypt a drive (with GELI?). But, does GhostBSD offer the same thing? I'm fairly new to BSDs, so if it isn't offered in a simple GUI, I'll probably mess it up. Ideally even if the root partition isn't encrypted, my /home partition should be. I use 'encfs' a...
- Sun Aug 05, 2018 11:56 pm
- Forum: Announcements
- Topic: First GhostBSD dev release of with TrueOS base system.
- Replies: 11
- Views: 19512
Re: First GhostBSD dev release of with TrueOS base system.
The release looks great! Everything works nicely, except for DHCP under Linux KVM. I hope I'm not being too picky. Once I run 'dhclient vtnet0' things work great, but the live image never seems to pull an IP automatically.
- Sat Aug 04, 2018 6:50 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
Would you mind sharing some of your info? If you can run this command, it'll pump out all your installed packages to a file. pkg info > my-installed-packages.txt It should work for any shell. Either attach it to your post, which is easier, or copy/paste the contents which may not work depending now ...
- Sat Aug 04, 2018 5:05 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
I'm glad to help. I hope that I am actually helping. :mrgreen: "foreach" is what you need if you are using the default root shell, csh, which, I guess is actually tcsh. To find out what shell you are using, once you are the root user , because it can change, type: echo $SHELL CSH If it ret...
- Sat Aug 04, 2018 12:32 pm
- Forum: Feedback
- Topic: Installation 11.1 and Latest - Dual Boot
- Replies: 1
- Views: 3327
Re: Installation 11.1 and
TL;DR I created a VM and used 'dd' to put it onto the partition of my choice. The installer doesn't work sometimes, and I'm not smart enough to figure out why. When using 'dd', just copy the partition, not the whole disk. LONG version with directions: https://forums.ghostbsd.org/viewtopic.php?f=59&a...
- Fri Aug 03, 2018 10:39 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
I thought that csh and ksh were the main shells Solaris folks used. I'd love to learn them, but bash has been the default on everything I've used in earnest until now.
- Fri Aug 03, 2018 3:37 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
Yes, it was a bit of a jumble. Sorry about that. Do these, 4 things in order, as root: pkg update -f pkg check -d pkg check -s |& cut -d: -f1 |grep -v Checking |uniq > /tmp/sad-packages.txt foreach i (`cat /tmp/sad-packages.txt`) echo " " echo $i pkg install -fy $i end This should have...
- Fri Aug 03, 2018 2:42 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
Outstanding! I'm glad it worked!!
- Fri Aug 03, 2018 2:19 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
I just checked and both open just fine for me.
- Fri Aug 03, 2018 1:36 pm
- Forum: General support
- Topic: Upgrade Borked System
- Replies: 38
- Views: 37595
Re: Upgrade Borked System
If you want to see if something is out of place and may resolve itself, you could run pkg update -f to force an update of the repo metadata, then pkg check -d as root. It will check dependencies and install missing ones (according to the man page). The package 'sqlite3' appears to be a dependency fo...