Main > Free Download Search >

Free copy software for linux

copy

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1580
Copy To 0.3

Copy To 0.3


Copy To is an Amarok script that will copy selected track(s) to destination location. more>>
Copy To is an Amarok script that will copy selected track(s) to destination location.

Featuring kdialog so it can use kio_slaves, eg.: media://, fish://, ftp://, bluetooth://(?)

http://blog.neofreko.com/index.php/2007/01/04/amarok-script-copy-to/

Known bug(s):

Stopping the script doesnt remove custom menu from playlist.

<<less
Download (MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 downloads
Copy URL 1.0

Copy URL 1.0


Copy URL is an extension which adds an entry to the popup menu. more>>
Copy URL is an extension which adds an entry to the popup menu.

This extension adds an entry to the popup menu "Copy URL of this page". When selected, the URL of the current page will be copied to the system clipboard. The URL address should be in the clipboard for the use of other applications as well.

<<less
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
934 downloads
FTP Copy 0.2

FTP Copy 0.2


FTP Copy (fcp for short) is a program which currently has the ability to copy single files from your computer into any folder in more>>
FTP Copy (fcp for short) is a program which currently has the ability to copy single files from your computer into any folder in any ftp site via the command line. Its definetly not the best of its kind, but it gets the job done with minimal fuss. Both active and passive mode are supported.
Active and passive mode are supported. In the future the program may be extended to support wildcard copying, copying from the server, directory listings and other such features. If anyone wishes to add these features to the current codebase, mail me the new code and ill put it up.


To install the code under Linux (or possibly in other POSIX compatible environments), run the script compile.sh (sh compile.sh). That should compile the code into the executable file fcp.
<<less
Download (0.210MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1231 downloads
k9copy 1.1.2

k9copy 1.1.2


K9Copy is a small utility which allows the copy of DVD on Linux. more>>
K9Copy is a small utility which allows the copy of DVD on Linux. The DVD video stream is compressed by the program Vamps.
Copy without menus :
In this case, dvdauthor is used to create a new DVD structure. It is possible to choose the order in which the video sequences are played.
Copy with menus :
As dvdauthor does not make it possible to integrate the original menus, K9Copy reproduces the original structure of the DVD. The navigation packs as well as IFO files are modified to point on the compressed MPEG stream.
The creation of personalized menus has not been renewed in version 1.0.0.
Main features:
- The video stream is compressed to make the DVD fit on 4.7 Gb recordable DVD
- DVD Burning
- Creation of ISO images
- Possibility of selecting the audio tracks and subtitles to be copied
- Title preview (video only)
- Possibility of preserving the original menus
<<less
Download (1.5MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
512 downloads
ftpcopy 0.6.7

ftpcopy 0.6.7


ftpcopy is a FTP mirror software. more>>
ftpcopy is a simple FTP client written to copy files or directories (recursively) from a FTP server.
It was written to mirror FTP sites which support the EPLF directory listing format, but it also supports the traditional listing format (/bin/ls) And may also be used to simply copy files.
ftpls is a FTP client which generates directory listings, either in plain text or HTML.
Only support passive mode FTP. There is no plan to support active mode.
Enhancements:
- fix compile time problem with gcc 3.4 and the gcc-3.3.3 of SuSE 9.1.
<<less
Download (0.13MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
Clever Copy 2.0a

Clever Copy 2.0a


Clever Copy is a free, fully scalable web site portal and news posting system. more>>
Clever Copy is a free, fully scalable web site portal and news posting system. You can run it as a very simple blog or ramp it up to a full Content Management System.

It is easy to setup, use and maintain requiring no previous knowledge of web portals, blogs, php, Cmss or databases.

It uses a self optomizing database meaning that it always runs as fast as possible and works extremely well in a high traffic environment. It has been designed with the following in mind - first time users, experienced users, long term users.

Because its a dynamic site, anything you want it to, its only limited by your own imagination. If youre not sure about how to run a CMS, set it up as a blog first and then expand it later.

Use it as a news posting site, a blog, a clan site, an informational site or a fun site - its entirely up to you. With full instructions on use built in to the admin panel, whatever you have in mind you can do it with Clever Copy.
<<less
Download (0.51MB)
Added: 2005-09-20 License: Freeware Price:
835 downloads
DB Copy Plugin 1.0

DB Copy Plugin 1.0


DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. more>>
DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. DB Copy Plugin makes it possible to copy and paste tables from one session to another and between different databases and includes primary key and foreign key constraints for copied tables, and uses Hibernate 3.0 internally to perform database object type mappings.
It supports Firebird, Oracle, Sybase, MS SQL Server, MySQL, HyperSonic, Pointbase, and PostgreSQL, and allows the user to select a Hibernate dialect for the destination database if one couldnt be determined automatically.
Enhancements:
- Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed
<<less
Download (2.5MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1108 downloads
Copy as HTML Link 1.1

Copy as HTML Link 1.1


Copy as HTML Link is a Firefox extension that creates an HTML link to the current page using the selected text and copies it. more>>
Copy as HTML Link is a Firefox extension that creates an HTML link to the current page using the selected text and copies it (into the clipboard) for pasting into other applications.

<<less
Download (0.008MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
910 downloads
File::Copy::Link 0.080

File::Copy::Link 0.080


File::Copy::Link is a Perl extension for replacing a link by a copy of the linked file. more>>
File::Copy::Link is a Perl extension for replacing a link by a copy of the linked file.

SYNOPSIS

use File::Copy::Link;
copylink file.lnk;

use File::Copy::Link qw(safecopylink);
safecopylink file.lnk;

copylink

reads the filename linked to by the argument and replaced the link with a copy of the file. It opens a filehandle to read from the link, deletes the link, and then copies the filehandle back to the link.

safecopylink

does the same as copylink but without the open-and-delete manouvre. Instead, it uses File::Spec::Link to find the target of the link and copies from there.

This module is mostly a wrapper round File::Spec::Link::linked and File::Copy::copy, the functionality is available in a command line script copylink.

<<less
Download (0.007MB)
Added: 2007-04-26 License: Perl Artistic License Price:
915 downloads
XML Copy Editor 1.1.0.1

XML Copy Editor 1.1.0.1


XML Copy Editor is an XML editor with DTD/XML Schema/RELAX NG validation. more>>
XML Copy Editor is an XML editor with DTD/XML Schema/RELAX NG validation, XSLT, XPath, pretty-printing, syntax highlighting, folding, tag completion/locking and lossless import/export of Microsoft Word documents.
Enhancements:
- This release fixes a number of bugs and introduces support for CSS.
<<less
Download (3.9MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
866 downloads
File::Copy::Recursive 0.31

File::Copy::Recursive 0.31


File::Copy::Recursive is a Perl extension for recursively copying files and directories. more>>
File::Copy::Recursive is a Perl extension for recursively copying files and directories.

SYNOPSIS

use File::Copy::Recursive qw(fcopy rcopy dircopy fmove rmove dirmove);

fcopy($orig,$new[,$buf]) or die $!;
rcopy($orig,$new[,$buf]) or die $!;
dircopy($orig,$new[,$buf]) or die $!;

fmove($orig,$new[,$buf]) or die $!;
rmove($orig,$new[,$buf]) or die $!;
dirmove($orig,$new[,$buf]) or die $!;

This module copies and moves directories recursively (or single files, well... singley) to an optional depth and attempts to preserve each file or directorys mode.

<<less
Download (0.010MB)
Added: 2007-04-26 License: Perl Artistic License Price:
913 downloads
Hot Copy (hcp) for Linux 3.1.0

Hot Copy (hcp) for Linux 3.1.0


Snapshots of any Linux Block Device Hot Copy creates an instant point-in-time of any block device while the system is running without interrupting applications. Consistent Point-in-Time Snapshots Hot more>> <<less
Download (3074kb)
Added: 2009-04-10 License: Freeware Price:
197 downloads
Copy file or directory path 0.2

Copy file or directory path 0.2


Copy file or directory path is a service menu that can copy the full path of file or directory to klipper. more>>
Copy file or directory path is a service menu that can copy the full path of file or directory to klipper.

<<less
Download (MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1059 downloads
Molphin - DVD Copy 2006-03-31_0.7.2

Molphin - DVD Copy 2006-03-31_0.7.2


Molphin - DVD Copy makes it easy to backup your DVDs from your home TV-DVD-Recorder to your PC. more>>
Molphin - DVD Copy makes it easy to backup your DVDs from your home TV-DVD-Recorder to your PC.

<<less
Download (0.025MB)
Added: 2006-03-31 License: GPL (GNU General Public License) Price:
1316 downloads
KKopy 1.05

KKopy 1.05


KKopy - copy, cut and paste tool for Word that selects sections of text in one click more>>
KKopy is an award winning copy, cut and paste utility for Microsoft Word that selects sections of text or in one click. It avoids the need to highlight the text you want to copy and works out for itself what needs to be copied purely from where you place your cursor on your document. A valuable time saving tool which complements the standard Word Copy and Cut tools. It is extremely easy to use. One quick read of the included help file and you will be using it immediately.
<<less
Download (2.30MB)
Added: 2009-04-27 License: Freeware Price:
184 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5