Unable to sync ports via svn on a 9.2-RELEASE-p1 system

I've been trying to sync ports on a 9.2-RELEASE-p1 VM (Hyper-V) and the system just crashes/reboots in the middle of syncing. I'm using the following commands:
Code:
rm -rf /usr/ports
svn co [url]https://svn0.us-east.freebsd.org/ports/branches/RELENG_9_2_0[/url] /usr/ports

I also tried pulling from https://svn0.us-east.freebsd.org/ports/head/ but that makes it crash also.

Is there any way to track what's happening?

Thanks! :D
 
Checking out the RELENG_9_2_0 branch of ports is probably a mistake. It should not crash, though. Please provide more details about the machine and setup.
 
The system is pretty generic.

Code:
FreeBSD hostname.domain.com 9.2-RELEASE-p1 FreeBSD 9.2-RELEASE-p1 #5 r257657: Tue Nov  5 09:07:20 EST 2013     [email]jacks@hostname.domain.com[/email]:/usr/obj/usr/src/sys/JackS  i386
The JackS kernel is basically GENERIC with the ident set to "JackS".

It's a Hyper-V virtual machine with a single disk dynamically expanding HDD, 1 GB of RAM and a legacy NIC. I was able to upgrade the VM from 9.1 to the current version using source without issues. Please let me know what other info you need.

@kpa, I tried your tunefs command in single user mode and rebooted after that but that didn't fix the issue.
 
Last edited by a moderator:
ph0enix said:
The system is pretty generic.

Code:
FreeBSD hostname.domain.com 9.2-RELEASE-p1 FreeBSD 9.2-RELEASE-p1 #5 r257657: Tue Nov  5 09:07:20 EST 2013     [email]jacks@hostname.domain.com[/email]:/usr/obj/usr/src/sys/JackS  i386
The JackS kernel is basically GENERIC with the ident set to "JackS".

It's a Hyper-V virtual machine with a single disk dynamically expanding HDD, 1 GB of RAM and a legacy NIC. I was able to upgrade the VM from 9.1 to the current version using source without issues. Please let me know what other info you need.

@kpa, I tried your tunefs command in single user mode and rebooted after that but that didn't fix the issue.

Soft update journaling is not the problem after all. Instead try the second link to the mailing list post I posted.
 
Last edited by a moderator:
kpa said:
Soft update journaling is not the problem after all. Instead try the second link to the mailing list post I posted.

That did the trick! Thank you! Should I add
Code:
vfs.unmapped_buf_allowed=0
to loader.conf?
 
wblock@ said:
Checking out the RELENG_9_2_0 branch of ports is probably a mistake. It should not crash, though. Please provide more details about the machine and setup.

Should I be using /ports/head instead? Is that branch stable?
 
There are no stable branches for FreeBSD ports, only the head branch. Those RELENG_* branches are just snapshots frozen in time (subversion makes no distinction between branches and snapshots, they are all copies alike). Use the head branch always.
 
Back
Top