Software :: Subversion On Local File System?

Jan 21, 2011

I have downloaded several service GUIs to support work with subversion; the most developed one is "kdesvn". I also tried some CVS surfaces. It is always the same problem: I cannot connect to a repository in the local file system. This is weird! The greatest use of versioning in my practice it to work local, and it should not be difficult to program streaming with local files (WinCVS allowed me to do this.)

View 5 Replies


ADVERTISEMENT

Debian Configuration :: Can't Copy A File From SMB Share To The Local File System

Aug 17, 2015

There is this bug in the latest version of Ubuntu, which is also Jessie, which is:

Can't copy a file from SMB share to the local file system: Software caused connection abort

The problem, apparently, is that newer versions of Samba hit servers with multiple requests at the same time, and for some reason the Zyxel and Iomega boxes can't handle this. The best solution they've come up with is to modify the smb.conf file on your server to include this setting: "max mux = 1".

Here is the reference material on this bug: [URL] ....

People who develop samba have fixed it in the latest version but neither the ubuntu nor Debian have released the fixed version of nautilus, as of yet. Here, is the reference: [URL] ....

View 0 Replies View Related

Applications :: Install And Configure Subversion On System Box?

Apr 30, 2010

I want to know how to install and configure subversion on linux box. if it new subversion version

View 1 Replies View Related

General :: Error /usr/local/atlas Is Read Only File System

Sep 9, 2010

I have a computer in the university and I have root access to this pc. Iam trying to install Cblas library on it. But it gives me a starnge error /usr/local/atlas is read only file system. I tried doing mount -l and it gave me that appserver1:/export/d1/Linux/doe on /usr/local type nfs4 (ro,sec=.......) I think what it means that the main server directory is mounted to /usr/local and it is read only. So, how can I fix this problem to separate the two and make my /usr/local separate

View 13 Replies View Related

Ubuntu Servers :: Disc Mirroring Between Local And Remote File System

Nov 5, 2010

Is there any software that will do full mirroring between a local and a remote file system. I have a server (9.04) and a laptop (9.10). Each user has shared a shared directory on the server, and on the laptop. Updates to files may be done on either system. I want to keep both copies syncronised. Currently I use a script based on rsync (scheduled by cron) to keep the local and remote copies in sync.

The problem with this approach is that rsync only seems to be able to handle deletion of files if one file system is the master, which is not the case in my set-up. If I move a file to a different directory, rsync will reinstate the old file as well as copying the new one. I was hoping there was some software that could do proper mirroring between the 2 systems, but6 so far I cannot find anything.

View 3 Replies View Related

General :: How To Lock File Folder In A Repository In Subversion Server In Ubuntu

Aug 6, 2011

i have kown how to lock file in subversion,such as ' svn lock tree.jpg'
but i don't down how to lock file folder,
i create the repositoryroject1
project1/trunk
/tags
/branches
/branch_user1
/branch_user2
i need to lock a branch before merging
and how to unlock the branch after locked

View 4 Replies View Related

Programming :: Detecting Newly Created Folders / Files On Local File System?

Apr 16, 2010

Using C++, I want to process sub-folders on my home folder sequentially each with a special naming format and containing some binary files in it:

Code:
1/
2/
3/
4/
5/
6/
...

Give above folders, I will process files in 1/ at first, 2/ at second, 3/ at third, and so on.

For some n/ folder, if I realize that n/ actually does not exist in local file system, I do not want to wait for it. Hence I will keep processing (n+1)/ folder, and so on.

However, when processing some (n+m)/ folder, previously not processed n/ folder may have been created on local file system. In this case, I do not want to miss processing it, but somehow detect its creation and process it. After processing n/ folder, I want to continue from (n+m+1)/.

View 5 Replies View Related

Software :: Subversion "Can't Write To File : File Too Large"

Oct 4, 2010

Hardware: Sun T-2000 with Solaris 10 5/09 U7, ZFS root and RAID (what subversion is writing to)Software: Subversion 1.6.12, Apache 2.2.11, db-4.2.52 ( and all related dependencys of course)Everything was fine until today, I have someone come over and they are getting this error when doing an import: svn: Can't write to file /DATA/* : File too large After some testing it seems it does this on files larger than 2G in size, but after googling until I could not google anymore I could only find people having this issue with Apache 2.0 or using APR lower than 1.2 (mine is 1.3.3). Is there a files size limit inside Subversion?

View 2 Replies View Related

Server :: Log The Output Of "date" To A Particular File On Local System And NTP

Apr 6, 2011

Let's suppose there are "n" number of servers in a Linux cluster / network environment. We want to make sure that "date" on all those servers are in sync. How can we log the output of "date" to a particular file (log file, let's name it /tmp/date.log on our local system from where we are executing our command or script) run on every server one by one so that we can have a log of all the servers and their corresponding date vales in the following format:

[Code]....

View 5 Replies View Related

General :: Copy And Paste Between Local System And The Remote System When Using Rdesktop?

Dec 22, 2010

On Linux I do:

rdesktop remotepc

How do I copy and paste between my local system and the remote system?

View 1 Replies View Related

Software :: Verify Directory On Remote System Available To Local System

May 5, 2009

The code listed below is an excerpt from a script that I am writing. The goal is to verify that a directory on a remote server is available to the local system. If that is not the case, a log file is written, and all filesystems that were previous unmounted, are remounted on the local system.

Code:
# # Unmount all NFS mounts prior to the archive process.
umount -a -t nfs
# Mount the remote directory (NFS) prior to running the make_net_recovery script.
# Make sure there is a <remote server> folder located in the /mnt directory. If it is
# not already there, create one.
mount <remote server>:/<local system> /mnt/<remote server>

# Verify the remote directory (NFS) is available. This directory is needed
# as it is the destination for the iso images. If it is not available, stop
# here, and write the results to a log file.
df |grep <remote server> > /dev/null
RC=$?
echo $RC

if [ ${RC} -eq 0 ]
then
echo successful
else
echo not successful >> /tmp/make_net_backup.log && mount -a
exit
fi
Is the syntax shown above correct?

View 1 Replies View Related

General :: Open Local File Error When Creating File Descriptor?

Sep 14, 2009

error message when I ran my program that I couldn't open my local file. I have two files first one is called client, second one is called server I am using named pipes to sent a message from client to the other file called server in client I used mknod() to create the two named pipes,one for read,one for write and created new thread in client using fork() spawned a child process that executed the server file both named pipes are opened the client file got the message from the user and sent it through the named pipes to the server file when the server receives the message , it needs to verfify it is correct in the server file, a local file descriptor is created to read and send this verifing message when it is not correct but I am getting an OPEN() error when I tried to open this shared local array buff and attach it to a file descriptor where the message is kept why do I get this error in server file

int main()
{
/*both named pipes are open*/
rfd=open(IFIO1,0);
wfd=open(IFIO2,1);

[code]....

View 1 Replies View Related

Ubuntu :: Error Creating File System: Helper Exited With Exit Code 1: Cannot Open /dev/mmcblk0p1: Read-only File System

May 2, 2010

I bought a new SD card which I intend to put some MP3s on - except that I can't write to it because it tells me the destination is Read Only. No-probs thinks I: I'll just reformat it.

"Error creating file system: helper exited with exit code 1: cannot open /dev/mmcblk0p1: Read-only file system"

Various chmod commands all result in Read-only file system. I tried umount then mount commands, but it couldn't find it to mount once I'd unmounted it using the same /media/ file path (I assume it's the only one).

View 9 Replies View Related

Ubuntu / Apple :: Failed To Create File '/root/.local/share/recently-used.xbel.AC7YXV': No Such File Or Directory

Jun 22, 2011

I have iMac 2.4GHz with rEFIT installed. I installed Unity on one of the partition. Kernel is still 2.6.38.8. I am getting error message when I run the command
sudo gedit /etc/x11/xorg.conf

The error message is

(gedit:2139): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.AC7YXV': No such file or directory

(gedit:2139): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: No such file or directory

View 3 Replies View Related

Red Hat :: File System Corruption - Super Block Could Not Be Read Or Don't Describe A Clear Ext2 File System

Jul 12, 2010

My Redhat Enterprise Linux 4 with 6x partitions (/, /boot,/home, /usr, /var, /tmp) of 6.0 GB IDE Hardisk was working quite fine. I decided to create LVM on /home and /var partitions but due to some errors occured and I delete the /home partitions. That's why partition table altered. I then delete 4,5,and 6th partitions (/home, /var, /tmp) partitions and now try to create one by one but following error is coming:-

[Code]....

The Super block could not be read or do not describe a clear ext2 file system. E2fsck b 8193 <device> I have tried following commands,but could not successful:- e2fsck -p /dev/hda7 (where hda7 was created but afterthat it was deleted) e2fsck -a /dev/hda7

View 2 Replies View Related

OpenSUSE Install :: Get A 64 Bit File System To Read 32 Bit File System Drives?

Feb 2, 2010

Have just assembled a new computer and thought I would install the 64 bit version of openSUSE 11.2 in a "Windows free zone". After a hiccup or two I have managed to get a system of sorts running but on trying to copy files from my old computer(via a memory stick) it tells me that Vfat is an unknown file system.On my old computer I am running 32 bit openSUSE 11.2 as a dual boot system with Windows XP and have no problems moving files between the two different file systems.Is it possible to get a 64 bit file system to read 32 bit file system drives and if so how do I do it?

View 7 Replies View Related

OpenSUSE :: Subversion Client - How To Use GUI

Nov 2, 2010

I would like to implement some code for R and I want to use subversion (as this is used by my company). I need to know how to use gui for svn.

View 1 Replies View Related

General :: Can't Install Subversion Over Yum

Jul 16, 2011

How to install using yum? Because when I tried this: yum install gcc gmake make libcpp libgcc libstdc++ gcc4 gcc4-c++ gcc4-gfortran subversion ruby ncurses-devel -y Subversion did not install, I tried this:

[Code]...

View 1 Replies View Related

General :: Subversion - How To Clone A Tag

Apr 7, 2010

I'd like to be able to clone a tagged module, but have not succeeded with this attempt:

Code:

Does anyone know if it is possible to clone/copy tags like this at all? Or must I find another way of doing this?

View 1 Replies View Related

Networking :: Can I Use NAT And Some Local Hosts Without It On System Box

Aug 7, 2010

I'm using NAT on an AP with linux. Is it possible to route an OUTGOING host not over NAT?

I'm using SNAT but could also use MAQUERADING I think. Because both are in POSTROUTING table and this table is the last one I don't think there is a solution or is there any solution?

Background:
I'm using a local VoIp client which I want to have an own ip for routing question in my network but don't want all other local machines as seperate ip's because if done so i.e. without NAT the routing table is very complicated ...

View 1 Replies View Related

Debian :: Does Subversion Have Specific Meanings About U

Jun 26, 2011

I use subversion to check out some small projects and small games from time to time. Sometimes I see the 'U' which means upgrading coming in different places or even coming twice 'UU' . Now I always wondered if there is some specific reason why it comes out that. Here's an example of the check-out done from a game called dawn-rpg. As the name suggests its a role-playing game . dawn-rpg.sourceforge.net Anyway here's the checkout :-

[Code]...

Now see that all the deviations of U from third line as to how they appear ? Put simply 'A' is for addition of new files and 'U' is for upgrading/new version of somefile but do not undertand why it behaves/d that way. I have seen this in some others svn also.

View 1 Replies View Related

Ubuntu :: Accessing Subversion Repository From Svn + Ssh

May 23, 2010

I am accessing my subversion repository from svn+ssh:// I set up a new group called for the repository, and then I added two users to this group, harry and sally. Here is the problem. harry logs in and commits a file After commit a ton of the files have been saved by harry, and have the new owner and group:

group: harry
owner: harry

sally no longer has access to the repository! Is there any way to prevent the group from changing when harry commits a file? I tried just writing a file with VIM after logging in via ssh with one of the users, and this does NOT change the group. subversion is doing something special that changes the permissions.

View 1 Replies View Related

Server :: Subversion Web Access Will Not Allow To Log In With Web Browser

Sep 7, 2009

I'm running Fedora 10 with apache and I installed mod_dav_svn so that I could set up a secured remote code repository. It appeared to be working ok until I turned on SSL and basic Authentication.I even verified in my subversion.conf httpd configuration file that it is pointing to the correct password file. When I attempt to access it from my web browser, it prompts me for a user name and password, but it will not let me log in. I tried to disable SSL thinking that that might have been the problem, but I get the same results either way. Can anyone please help me resolve this problem?

View 4 Replies View Related

Software :: Subversion: How To Checkin Executables

Jun 22, 2010

I have C/C++ source codes and the corresponding binaries in proj/src and proj/bin.I have `import`ed both directories into my svn project and then `checkout`ed both. Later I made changes to the source code and hence new executables, but I'm not able to `checkin` the executables back to the svn project.`svn status` ignores the executables in the proj/bin directory. What should I do to `checkin` executables?

View 1 Replies View Related

Software :: Subversion Over Apache2 Appearance

Jun 15, 2010

I have my subversion setup over apache already, so that isn't my question. My question is in regards to the appearance of my repo over the http(s) protocol.

View 2 Replies View Related

Software :: Where To Download Subversion Server?

Mar 22, 2011

I'm on their site, looking for the subversion server 1.6 download, and all I see is the client.

View 5 Replies View Related

Programming :: Subversion: How To Checkin Executables

Jun 22, 2010

(cross-posted in LQ>Forums>Linux>Software)I have Subversion 1.6.6 on Linux.I have C/C++ source codes and the corresponding binaries in proj/src and proj/bin.I have `import`ed both directories into my svn project and then `checkout`ed both. Later I made changes to the source code and hence new executables, but I'm not able to `checkin` the executables back to the svn project.`svn status` ignores the executables in the proj/bin directory. What should I do to `checkin` executables?

View 3 Replies View Related

CentOS 5 :: Subversion - Libsvn_fs_base-1.so.0 Not Found

Mar 30, 2009

I'm trying to compile and install Subversion 1.5.6 on Centos 5.2.

I did:

And it seems to all go well, but when I run "svn" or "svnadmin" I get the error:

svn: error while loading shared libraries: libsvn_fs_base-1.so.0: cannot open shared object file: No such file or directory

I can't locate this file on my system, and I'm wondering where I can find this.

View 5 Replies View Related

General :: FTP From Remote Host To Local System?

Sep 27, 2010

I'm using Windows XP. I'm connecting to a UNIX box using putty SHH(ksh). Now I want to copy a text file present in remote host to my local system.

View 5 Replies View Related

Ubuntu :: System Clock Will Not Set To Local Time

Aug 15, 2010

Try as I might I cannot seem to get the system clock to display local time. It looks like it's stuck on GMT. In the System>Administration>Time and Date I have my local time zone set correctly and also set to update automatically with an appropriate time server selected. It still displays my local time +5 hours (I'm central time, USA).

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved