Solved Difficulties with downloading the source code. Help me!

Code:
root@gateway:/home/podlom # svn checkout https://svn0.us-west.FreeBSD.org/base/stable/10/ /usr/src
Error validating server certificate for 'https://svn0.us-west.freebsd.org:443':
- The certificate is not issued by a trusted authority. Use the
   fingerprint to validate the certificate manually!
Certificate information:
- Hostname: svnmir.ysv.FreeBSD.org
- Valid: from Jul 29 22:01:21 2013 GMT until Dec 13 22:01:21 2040 GMT
- Issuer: clusteradm, FreeBSD.org, CA, US(clusteradm@FreeBSD.org)
- Fingerprint: 1C:BD:85:95:11:9F:EB:75:A5:4B:C8:A3:FE:08:E4:02:73:06:1E:61
(R)eject, accept (t)emporarily or accept (p)ermanently? t
svn: E200029: Couldn't perform atomic initialization
svn: E200030: SQLite compiled for 3.8.8, but running with 3.8.7.2
 
Are you using the devel/subversion port? Did you compile locally or use a package? There appears to be a dependency mismatch. What does pkg check -B and pkg check -d return. Can you try just a plain pkg upgrade if you use the public repos or re-compiling the port if you are compiling yourself?
 
You should have this version of devel/subversion:
Code:
# svn --version --quiet
1.8.11
If you have an older version you need to update your Subversion package and probably others too. This can be done for all your packages with:
# pkg upgrade -y
If you want to upgrade Subversion package only do:
# pkg upgrade subversion
 
1)
I have!
Code:
root@gateway:~ # svn --version --quiet                               
1.8.11
2)
I made a pkg upgrade -y, and the source code began to be updated :)

3)
What is the difference between pkg upgrade -y ,and pkg upgrade ???
 
pkg upgrade compares the versions of the installed packages on your system with those available in the local ports tree/repository catalogue, lists the ones that have newer versions and asks you if you want to upgrade or not;
pkg upgrade -y begins the upgrade immediately.
 
3)
What is the difference between pkg upgrade -y ,and pkg upgrade ???

Again the manual is your friend:
# pkg help upgrade

OPTIONS
The following options are supported by pkg upgrade:
...
-y, --yes Assume yes when asked for confirmation before package installation.
Or in other words: you do not need to say yes manually each time when asked.
 
Back
Top