SVM(1) User Contributed Perl Documentation SVM(1)NAME
svm - command line interface for remote Subversion repository mirroring
SYNOPSIS
# the svn repository for svm to use
% setenv SVMREPOS ~/svm
# set the path mirror/svn to mirror official subversion trunk
% svm init mirror/svn http://svn.collab.net/repos/svn/trunk
# run the actual mirroring
# flatten the changesets between revision 1 thru 6000
% svm sync mirror/svn 6000
# merge back changes in local branch
% svn cp file://$SVMREPOS/mirror/svn file://$SVMREPOS/svn-local
# make some changes and then merge back to source repository
% svm mergeback mirror/svn svn-local
DESCRIPTION
svm mirrors remote repository accissible via SVN::Ra interface to a local repository.
COMMANDS
init path url
Initialize the path in svm repository to mirror from url.
sync path [sync_to]
Invoke the synchronization of path in svm repository according the how it is initialized.
AUTHORS
Chia-liang Kao <clkao@clkao.org>
COPYRIGHT
Copyright 2003 by Chia-liang Kao <clkao@clkao.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>
perl v5.10.0 2008-09-12 SVM(1)
Check Out this Related Man Page
SVNPATH(1)SVNPATH(1)NAME
svnpath - output svn url with support for tags and branches
SYNOPSIS
svnpath
svnpath tags
svnpath branches
svnpath trunk
DESCRIPTION
svnpath is intended to be run in a Subversion working copy.
In its simplest usage, svnpath with no parameters outputs the svn url for the repository associated with the working copy.
If a parameter is given, svnpath attempts to instead output the url that would be used for the tags, branches, or trunk. This will only
work if it's run in the top-level directory that is subject to tagging or branching.
For example, if you want to tag what's checked into Subversion as version 1.0, you could use a command like this:
svn cp $(svnpath) $(svnpath tags)/1.0
That's much easier than using svn info to look up the repository url and manually modifying it to derive the url to use for the tag, and
typing in something like this:
svn cp svn+ssh://my.server.example/svn/project/trunk svn+ssh://my.server.example/svn/project/tags/1.0
svnpath uses a simple heuristic to convert between the trunk, tags, and branches paths. It replaces the first occurrence of trunk, tags, or
branches with the name of what you're looking for. This will work ok for most typical Subversion repository layouts.
If you have an atypical layout and it does not work, you can add a ~/.svnpath file. This file is perl code, which can modify the path in
$url. For example, the author uses this file:
#!/usr/bin/perl
# svnpath personal override file
# For d-i I sometimes work from a full d-i tree branch. Remove that from
# the path to get regular tags or branches directories.
$url=~s!d-i/(rc|beta)[0-9]+/!!;
$url=~s!d-i/sarge/!!;
1
LICENSE
GPL version 2 or later
AUTHOR
Joey Hess <joey@kitenet.net>
Debian Utilities 2013-12-23 SVNPATH(1)
Running Solaris 9 with SVM. I'm not that familiar with it, but metastat output gives "needs maintenance" message on 2 of the mirrors. There are no errors in /var/adm/messages. What do I need to do to fix this error? Thanks. (14 Replies)
Hi folks,
the following incident occured today:
by mistake one of our renowned administrators deleted the complete zoning for a 25K domain running solaris 10.
Thus the system lost all of it's external disks.
We've got oracle datafiles and oracle software residing on those lost... (6 Replies)
Hi All,
I have to remove the disk from SVM.
Kindly guide me or suggest me some link where in I can steps to remove SVM from Solaris 10 .Also I have one metaset which require deletion.
Thanks in anticipation! (10 Replies)
My company is running a solaris 2.7 machine. The machine is getting slow recently. I have no expert in solaris. Please help.
I checked the log in /var/adm/message:
I also checked with the command iostat -nE. It returns:
Metastat returns the followings:
What should i do now?... (10 Replies)
I am facing an issue with memory management in AIX 5.3. My Process crashes with malloc/calloc failure. But it is allocating and freeing all the memory when required. I have run svmon command for several times and found that pgsp value is growing continuosly. here is the output for two times taken... (6 Replies)
Hi all,
we have an existing system that was configured using just one of the (two) internal disks. I want to mirror the disk using SVM, but have realised there is no free slice for creating the metadb's. Is there a workaround I can use for this?
In the past we have always kept slice 7 free -... (8 Replies)
Hi ,
I am new to SVM .when i try to learn RAID 1 , first they are creating two RAID 0 strips through
metainit d51 1 1 c0t0d0s2
metainit d52 1 1 c1t0d0s2
In the next step
metainit d50 -m d51
d50: Mirror is setup
next step is
metaattach d50 d52
d50 : submirror d52 is... (7 Replies)
I am trying to set up a new server. It has 8 HD's in it. I am using 2 for the system disk. IE set one up mirror to the other. I am using the other 6 as data disks. For those I want to concat 3 together, mirror to the other 3 (also concated together of course) and then make various soft... (7 Replies)
Hi gurus
Im a newbie in solaris..I need to extend file system space in solaris 10 which is using SVM..I have a file system /pin02 which is 93% full n needs to be extended..only 3.6 gb avail space left..the file system is not mirrored...normal ufs file system only..can u please tel me t... (6 Replies)
I have setup mirroring for root disk.
As per Sun SVM process, there is no need to installbootblk
BigAdmin Submitted Tech Tip: Boot Disk Mirroring Using Solaris Volume Manager Software
But technically speaking, if we want to boot from 2nd disk which is mirrored, we have to install the... (7 Replies)
Hi All!
I'm running Solaris 10 and SPARC and using
Let me give a bit of background before asking my question:
I have created a RAID 0 (stripe) on 2 disks, I have the OS running on a third disk and I have now performed a ufsdump / ufsrestore from my third disk to the RAID 0 disks... (7 Replies)
Hi Friends,
I need your assistance, could someone assist....
Scenario:- Solaris 10, with zones and mounted file systems, using SAN.
SVM with metasets on it configured soft partitions on the meta device.
These soft partitions are mounted and file systems are being accessed.
We are now trying... (6 Replies)
Hello,
I recently patched my Solaris 10 box and found out that few of the apps are not working. Fortunately, I had detached the mirroring prior to patching, so I just booted into my secondary disk and found that my apps are working....
The problem is this was way back in last month....see... (14 Replies)
Hi Everyone
I am trying to detach sub mirror for /var/ filesystem not sure how to detach this sub mirror. someone please guide, I am removing all devices from using SVM.
metastat -p
bash-3.00#metastat -p
d3 -m d13 1
d13 3 1 c1t2d0s3 \
1 c1t2d0s5 \
1 c1t3d0s3... (6 Replies)
Hi
Please can you help me on replacing or removing a faulty disk drive on a SUN NETRA X4250server with 4 internal drives only.
the format comand show me the following:
format
Searching for disks...done
AVAILABLE DISK SELECTIONS:
0. c0t0d0 <drive type unknown>
... (9 Replies)