Software file sharing linux

Best File Sharing Software for Linux of 2023

Find and compare the best File Sharing software for Linux in 2023

Use the comparison tool below to compare the top File Sharing software for Linux on the market. You can filter results by user reviews, pricing, features, platform, region, support options, integrations, and more.

ONLYOFFICE

ONLYOFFICE Docs, an online office suite, offers a wide range of collaboration features. You can co-edit documents, spreadsheets, presentations and fillable forms in real-time with your team: you have two editing modes (real-time or paragraph-locking), commenting and built-in chat. You can also track changes, version history, compare documents and use the built-in chat. It can be integrated into existing platforms or used to replace an existing component. OnlyOffice Workspace allows you to create a web office from your own server. It includes ONLYOFFICE Docs and a range of business tools such as mail, CRM, document and task management, calendar, chat, polls, and more. The Community Edition is the best option for groups with up to 20 users. It is free of charge. Enterprise Edition is for larger businesses that require professional support and enhanced security options. ONLYOFFICE cloud service offers a cost-efficient business solution that includes online editors and a collaboration platform in the cloud. It can be accessed from anywhere and on any device.

MASV

MASV is the world’s fastest file transfer for video. MASV is a cloud-based file transfer solution for large files (20+GB). Easily send and receive massive files anywhere in the world. Trusted by remote video teams to share files fast, playing an important role in thousands of cloud-based workflows. Experience extremely powerful cloud file sharing that gets the job done. MASV is designed for massive files (up to 15TB), the volume that usually chokes other services. MASV is an ISO 27001-certified, SOC 2-compliant, HIPAA-compliant, and TPN-verified secure file transfer service trusted by global media organizations to deliver large files at incredibly fast speeds. With MASV, you can send large files anywhere in the world or receive large files with MASV Portals. MASV Portals are a fast, secure, and easy way to receive large files. Request, collect, and organize file deliveries from anyone. Integrate MASV within your existing workflow. With over 23 various cloud tool integrations, sync with cloud storage, asset management providers, messaging platforms, and more. MASV offers flexible pricing that best suits your workflow, from pay-as-you-go to monthly memberships and custom plans.

Читайте также:  Подключение к linux telnet

Filecamp

Filecamp is a cloud-based Digital Asset Management (DAM) software solution that helps marketing & creative teams organize and share their digital media such as images, videos, and brand guidelines. Filecamp comes with unlimited users, each user configured with their own set of user-, admin-, and folder permissions. Filecamp’s unique custom branding options will make sure your DAM system matches your brand guidelines. The built-in online proofing and commenting tools allow you to review and approve creative work. Prices start at only USD 29/month and their free 30-day trial allows you to test the solution with your files, teammates, and customers.

Files.com

6,000+ companies trust Files.com to automate and secure business critical transfers. We obsess about security, compliance, reliability, and performance so your critical business processes just work every time. Easily manage any transfer flow without writing scripts or code, and onboard workloads and partners effortlessly. We support standard file transfer protocols (FTP, SFTP, AS2) for working with external partners and also provide native apps for high performance internal transfers. As a fully Cloud-Native SaaS, there are no servers for you to buy or maintain, there is no installation required, and high availability and redundancy are built in and free. Our InfoSec Program is audited annually by Kirkpatrick Price, a leading information security CPA firm. Our audit covers the scope of the entire Files.com business (not just datacenter operations) and names Files.com specifically. Beware of smaller competitors who try to pass off someone else’s audit as their own. Technical capabilities include encryption at-rest and in-transit, four types of two-factor authentication, nine enterprise identity (SSO) integrations, configurable password and session policies, and a perfect “A+” score from Qualys SSL Labs.

Cleo Integration Cloud

In order to do business today, companies are exchanging large amounts of data while connecting to numerous systems and a variety of business and IT communities. It’s a complicated ecosystem that has to run 24/7. That’s why you have Cleo Integration Cloud (CIC), a cloud-based integration platform designed to build, operate and optimize critical EDI & API processes.

Читайте также:  See linux distribution command

MyBoardPacket

MyBoardPacket has been a trusted tool for thousands of customers since 2001. Online board meeting management tool, which allows for document management, voting online, and other features. MyBoardPacket.com allows you to create a board portal that is so flexible it can be deployed anywhere. You can also use it as an intranet or extranet solution.

CirrusPrint

CirrusPrint helps you manage and streamline your printing and document delivery across multiple networks. It solves cloud migration issues related to printing and provides the fastest and most direct way to deliver documents to users. With CirrusPrint, traditional network printing is still possible without any changes to operations. You can also print to your users, email your printers, and send a file from your smartphone to a printer anywhere in the country. CirrusPrint can be used on Windows or Linux, either in the cloud or at your own data center. It can accept print jobs and other documents, compress them, and deliver them to remote printers and users. It is easy to integrate with applications. You can print to it as any network printer, email files, drop files into the device, or use REST API. CirrusPrint jobs are sent quickly and securely to remote printers as exact duplicates of the original job.

Источник

Как сделать общую сетевую папку в Linux (настройка SMB в Linux)

Начните с установки пакетов samba и smbclient.

В Debian, Linux Mint, Ubuntu, Kali Linux и их производных для установки samba выполните команду:

sudo apt install samba smbclient

В Arch Linux, BlackArch и их производных выполните команду:

sudo pacman -S samba smbclient

Следующая команда не сработает, если отсутствует файл /etc/samba/smb.conf. Если у вас тоже нет этого файла, то создаёте его заглушку — к настройке самого файла smb.conf мы вернёмся позже:

sudo touch /etc/samba/smb.conf

Теперь нужно добавить пароль для пользователя Samba. Действует следующее правило: имя пользователя должно быть таким же, как у вашего текущего пользователя, а пароль можно установить иной, отличный от вашего системного пароля.

Для установки пароля Samba, выполните следующую команду:

Если вы хотите, чтобы у пользователя не было пароля, то укажите опцию -n.

Создайте папку, которая станет совместно используемой:

Узнаем абсолютный путь до папки ~/linuxshare:

Откройте для редактирования файл /etc/samba/smb.conf:

sudo gedit /etc/samba/smb.conf

Добавьте туда строки вида:

[ИМЯ_ПАПКИ] comment = Samba на Linux path = /home/ИМЯ_ПОЛЬЗОВАТЕЛЯ/ИМЯ_ПАПКИ valid users = ИМЯ_ПОЛЬЗОВАТЕЛЯ read only = no browsable = yes

Обратите внимание, что все пробелы в строках выше являются обязательными.

Читайте также:  Lenovo s110 драйвера linux

Для моих данных это строки:

[linuxshare] comment = Samba на Linux path = /home/mial/linuxshare valid users = mial read only = no browsable = yes

Теперь запустим службу SMB:

sudo systemctl start smb.service

Для добавления службы в автозагрузку выполните:

sudo systemctl enable smb.service

Для подключения к этой общей сетевой папке на Linux нужно использовать IP адреса компьютера Linux.

Создадим файл, чтобы сетевая папка не была пустой:

echo "Документ на Linux" > ~/linuxshare/document.txt

Посмотрите локальный IP адрес компьютера, на котором запущена Linux:

У меня этим IP является 192.168.0.89, а папку, как мы помним, я создал с именем linuxshare, тогда в Windows я перехожу в проводнике во вкладку «Сеть» и подключаюсь к этой папке следующим образом:

Вводим учётные данные (которые мы установили командой smbpasswd):

Видим содержимое совместно используемой папки, размещённой на Linux с помощью SMB:

Для подключения к сетевой папке из консоли Linux, запустите команду вида:

sudo smbclient //IP_АДРЕС/Папка -U ПОЛЬЗОВАТЕЛЬ
sudo smbclient //192.168.0.89/linuxshare -U mial

После ввода пароля нам становится доступным содержимое сетевой папки.

Источник

Обмен файлами

Программы для Linux для обмена файлами по интернет и по сети. Клиенты пиринговых сетей, P2P, Bit Torrent клиенты, Direct Connect (DC) и другие.

KTorrent

KTorrent

KTorrent — торрент-клиент, разрабатываемый проектом KDE. Поддерживает все основные возможности по скачиванию торрентов.

rTorrent

rTorrent

rTorrent — консольный torrent-клиент. Использует текстовый интерфейс (ncurses). rTorrent отличает высокая производительность.

NitroShare

NitroShare

NitroShare — кроссплатформенная программа для пересылки файлов и директорий между компьютерами внутри локальной сети.

Vuze (Azureus)

Vuze (Azureus)

Tixati

Tixati

Tixati — бесплатный torrent-клиент для Linux. Разработчики заявляют, что программа использует ультра-быстрые алгоритмы для загрузки торрентов и сверхэффективный выбор пиров.

aMule

aMule

aMule — бесплатный, кроссплатформенный файлообменный клиент P2P сети eDonkey. Программа была создана на основе популярного клиента eMule и имеет схожий интерфейс.

Tribler

Tribler

Tribler — бесплатный torrent-клиент, который позволяет скачивать торренты без регистрации на сторонних сайтах. Его еще называет децентрализованным. Поиск торрентов можно осуществить по файлам, которые раздают другие пользователи программы Tribler.

qBittorrent

qBittorrent

Deluge

Deluge

Deluge — открытый бесплатный кроссплатформенный торрент-клиент. С помощью программы можно скачивать и раздавать контент в торрент-сетях, создавать свои torrent-файлы. Очень богатый выбор функций и настроек.

EiskaltDC++

EiskaltDC++

EiskaltDC++ — бесплатный DC (Direct Connect) клиент для Linux. Поддерживается многопоточное скачивание файлов, полноценный чат, изменение скорости закачки и отдачи, расширенный поиск и другое.

Источник

Оцените статью
Adblock
detector