Projects tagged ‘file’ and ‘linux’


Jump to tag:

Projects tagged ‘file’ and ‘linux’

Filtered by Project Tags file linux

Refine results Project Tags windows (7) tools (5) c (4) unix (4) server (4) html (4) system (4) management (3) web (3) fs (2) osx (2) c++ (2)

[19 total ]

336 Users
   

Clam AntiVirus (ClamAV) is an anti-virus toolkit for Unix. The main purpose of this software is the integration with mail servers (attachment scanning). The package provides a flexible and scalable ... [More] multi-threaded daemon, a commandline scanner, and a tool for automatic updating via Internet. The programs are based on a shared library distributed with the Clam AntiVirus package, which you can use in your own software. [Less]
Created over 3 years ago.

290 Users
   

Filesystem in Userspace is a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. It also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations.
Created over 3 years ago.

9 Users
   

Owl is a multi-user document repository (knowledgebase) system written in PHP4 for publishing files/documents onto the Web.
Created over 3 years ago.

5 Users
 

TestDisk is a powerful free data recovery program! It was primarily designed to recover lost partitions, repair FAT/NTFS boot sector, NTFS MFT and Ext2/Ext3 superblock and/or make non-booting disks ... [More] bootable again when these symptoms are caused by faulty software, certain types of viruses or human error (such as accidentally deleting your Partition Table). PhotoRec is a File Recovery program designed to recover lost files; including video, documents and archives from Hard Disks, CDRom and lost pictures from digital camera memory (thus, its Photo Recovery name). PhotoRec ignores the filesystem and goes after the underlying data, so it can still find files even if your media's filesystem has been severely damaged or re-formatted (overwritten data, of course, can not be recovered). [Less]
Created about 1 year ago.

3 Users

DocMGR is a complete, web-based Document Management System (DMS). It allows for the storage of any file type, and supports full-text indexing of the most popular document formats. It is available in ... [More] many different languages and is easy to translate into new languages. DocMGR runs on PHP, the Apache webserver, and Postgresql. It optionally uses tsearch2 for full-text indexing which provides for faster search results and result ranking. DocMGR supports LDAP authentication, the ability to easily add and remove "objects" for storage in the system, document workflow, object subscriptions, WebDAV access, and an ever-growing set of features revolving around content storage. [Less]
Created about 1 year ago.

0 Users

Hello! This is a project for Roy Web.
Created 29 days ago.

0 Users

Versión en español About GtkFileSplitterGtkFileSplitter is a simple desktop application made to split files in smaller pieces, and to join file pieces to form the original files; its similar to ... [More] other programs such as Hacha (Axe) or HJSplit. Thanks to volunteers, it has language support for Czech, Dutch, French, Hebrew, Italian, Polish, Simplified Chinese, Spanish and Swedish. It requires Python, GTK and Glade, which come with default install on several Linux distros (ie. Ubuntu), but can even run on MS Windows (with GTK and Python installed). Currently I'm moving the hosting of the project to Canonical's Launchpad, see the Gtk File Splitter page on Launchpad You can use the following repositories: For Ubuntu 9.10 (Karmic) deb http://ppa.launchpad.net/denis-fuenzalida/ppa/ubuntu karmic main deb-src http://ppa.launchpad.net/denis-fuenzalida/ppa/ubuntu karmic main For Ubuntu 9.04 (Jaunty) deb http://ppa.launchpad.net/denis-fuenzalida/ppa/ubuntu jaunty main deb-src http://ppa.launchpad.net/denis-fuenzalida/ppa/ubuntu jaunty main The packages are signed with my key ID: C01243E3. To add the key to your trusted sources, run: $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C01243E3And then, you can install by running $ sudo apt-get update $ sudo apt-get install gtkfilesplitterScreenshotsEnglish locale on Ubuntu: French locale on Ubuntu: Polish locale on Ubuntu: An older version, running on Windows XP with Python and GTK+: [Less]
Created about 1 year ago.

0 Users

TSEditA editor for Linux with Syntax-highlighters in every important code-language.If an other program changes the file,TSEdit will warn you.TSEdit can also export your document with the ... [More] syntax-highlighting.It's written in Lazarus(FPC) and is available for Linux. The newest Version is:0.0.1 Syntax-HighlightingTSEdit comes already with a variety of different highlighters. Some of them are: HTML Java Pascal C++ PHP If you use a not included programming-language,just let us know and we do what we can do OR you search here:http://synedit.sourceforge.net/statedel.php TSedit has e new Home!TSedit has a new home here: https://sourceforge.net/projects/tsediteditor [Less]
Created 11 months ago.

0 Users

Automagically open files
Created 10 months ago.

0 Users

The castcopy project implements file copy operations for the Linux platform using UDP over multicasted IP networks. OverviewThe castcopy project is an attempt at creating multicast file transfer ... [More] software for Linux. It is written in perl, and coincidentally, is the author's first foray into the perl language. The project consists of a perl module (lib/CastCopy.pm) providing functionality to the programs visible at the user-level: cast, and get-cast. DetailsDownloadscastcopy 0.1 InstallationDownload the latest archive from above. Proceed with the following steps: Extract the archive: tar jxf castcopy-0.1.tar.bz2 Build it: cd castcopy-0.1 perl Makefile.PL && make && make test Install it, as root (sudo is fine): make install Setup a standard configuration: cp config/castcopy.cfg /etc/castcopy.cfg chmod 644 /etc/castcopy.cfg ConfigurationThe standing configuration can be changed by editing the /etc/castcopy.cfg file. The example castcopy.cfg file is reproduced and explained here. [net] data_address=239.1.1.1 data_port=22000 control_address=239.1.1.1 control_port=22001 [options] blocksize=1024The data_address and data_port lines control the IP address and port number used for the data portion of castcopy. The data portion of castcopy contains the actual file contents being transferred over the network. The control_address and control_port lines control the IP address and port number used for the control portion of castcopy. The control portion of castcopy contains the commands and information necessary for cast clients to extract files relayed by the sender. Finally, the blocksize line controls the payload of each UDP packet. The maximum payload of a UDP packet is 65507 bytes. The default here is 1024 bytes. Be aware that the packets will be segmented according to MSS, or Maximum Segment Size, for a given network. Usagecast: transfers files from the sending machine to the network address specified in the configuration file /etc/castcopy.cfg, or alternatively, a file specified with the --config option. get-cast: receives files from the network address specified in the configuration file /etc/castcopy.cfg, or alternatively, a file specified with the --config option. Each program consists of a number of options. The options for cast are as follows (from cast --help): Usage: /usr/bin/cast [OPTION]... [FILENAME] Send FILENAME to the multicast channel. Example: /usr/bin/cast /home/nick/.bashrc Options: --help, -H Displays this help. --verbose, -V Verbose mode. --config, -C Configuration file, defaults to '/etc/castcopy.cfg'.The options for get-cast are as follows (from get-cast --help): Usage: /usr/bin/get-cast [OPTION]... [FILENAME] Get FILENAME from the multicast channel. Example: /usr/bin/get-cast /home/nick/.bashrc Options: --help, -H Displays this help. --verbose, -V Verbose mode. --config, -C Configuration file, defaults to '/etc/castcopy.cfg'. --no-overwrite, -NO Prevent overwriting existing files. --md5-overwrite, -MO Overwrite when MD5 checksums differ. Advanced Options: --localfile (-L) [FILENAME]: Override filename in cast with the specified filename. --iteration (-I) [1-n]: Defines the number of iterations get-cast will execute searching for the specified file before giving up.Two specific options are of importance. The --md5-overwrite option can be used to allow file download to only occur when the checksum of an incoming file is different. The desired effect being that downloads should only occur when the sender (caster) is sending something different. The second option, --localfile, allows the get-cast download program to override the file specified by the sender with a user-specified one. For example, if the sender (caster) was sending /home/user/.bashrc, an overridden form might be --localfile /home/user/.bashrc2. At which point, the files could be compared or otherwise operated on. Example Sessionscast# cast ~/54MBfile [Using configuration file... /etc/castcopy.cfg] [Computing checksum... 5b26b79fe987a35d307c2e69754ffb28] [Determining filesize... 56307268] [Computing packets... 54988] [Sending checksum... ok.] [Sending packet count... ok.] [Sending block size... ok.] [Sending CTS signal... ok.] [Writing 54988 packets... ok.]get-cast# get-cast -V -MO --localfile 54MBcopy 54MBfile [File to receive... 54MBfile] [MD5 mismatch downloads... yes] [Remote filename overrides... yes, 54MBcopy] [Computing checksum... n/a] [Waiting to receive checksum... 5b26b79fe987a35d307c2e69754ffb28] [Waiting to receive packet info... 54988] [Waiting to receive block info... 1024] [Waiting to receive CTS signal... 54MBfile] [Waiting for transfer to start... ok.] [Computing checksum of received file... 5b26b79fe987a35d307c2e69754ffb28] [Less]
Created 11 months ago.