File and Web server

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
adriokmg
Level 1
Level 1
Posts: 15
Joined: Mon Sep 12, 2022 1:16 pm

File and Web server

Post by adriokmg »

Hello, is there anyway or software to start an easy file server to share files across local network and also the files that are .exe being executed when click under Windows?
Last edited by LockBot on Sun Mar 26, 2023 10:00 pm, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
hglee
Level 6
Level 6
Posts: 1422
Joined: Fri Jun 22, 2018 4:31 pm

Re: File and Web server

Post by hglee »

adriokmg wrote: Mon Sep 26, 2022 12:18 pm Hello, is there anyway or software to start an easy file server to share files across local network and also the files that are .exe being executed when click under Windows?

Such as Mint's Warpinator?

Also good for Linux-to-Android file sharing. Available as Flathub Warpinator for other Linux distros. Plus a Windows Warpinator port (64-bit & 32-bit).

Linux Mint 21 Vanessa, MATE 1.26.0, kernel 5.15.0*, Dell 2-in-1
AMD Ryzen 7 5825U / Barcelo iGPU - 14" WUXGA Touchscreen
MediaTek MT7921 WiFi-6 BT-5.2; 32GB DDR4@3200MHz; XPG 2TB-NVMe
adriokmg
Level 1
Level 1
Posts: 15
Joined: Mon Sep 12, 2022 1:16 pm

Re: File and Web server

Post by adriokmg »

hglee wrote: Mon Sep 26, 2022 2:22 pm
adriokmg wrote: Mon Sep 26, 2022 12:18 pm Hello, is there anyway or software to start an easy file server to share files across local network and also the files that are .exe being executed when click under Windows?

Such as Mint's Warpinator?

Also good for Linux-to-Android file sharing. Available as Flathub Warpinator for other Linux distros. Plus a Windows Warpinator port (64-bit & 32-bit).

Hi, not like that. More like setting a computer to hold files and browse in network by http.
User avatar
axrusar
Level 7
Level 7
Posts: 1512
Joined: Sat Jan 30, 2021 5:30 pm

Re: File and Web server

Post by axrusar »

Strictly HTTP?
1, Install apache and once installed open the server IP address in the other computers web browser's

Code: Select all

sudo apt update
sudo apt install apache2
sudo systemctl start apache2
sudo chown username:username /var/www/html (replace username with your actual username on that computer)
sudo rm /var/www/html/index.html
Allow port 80 on the firewall if needed
Copy whatever files you want to be seen on the server in the /var/www/html directory. You will get a plain text list with links to each file when browsing from the clients.

This is a bad idea if you want to "share" files but doable.

2. You can also Setup SSH instead on the server, and login from the other computers mounting any directory you want. My tutorial here viewtopic.php?f=42&t=367360

3. Or find altair4 guides on SAMBA, search the forum.
Linux Mint Una Cinnamon 20.3 Kernel: 5.15.x | Quad Core I7 4.2Ghz | 24GB Ram | 1TB NVMe | Intel Graphics
Image
adriokmg
Level 1
Level 1
Posts: 15
Joined: Mon Sep 12, 2022 1:16 pm

Re: File and Web server

Post by adriokmg »

axrusar wrote: Tue Sep 27, 2022 6:40 am Strictly HTTP?
1, Install apache and once installed open the server IP address in the other computers web browser's

Code: Select all

sudo apt update
sudo apt install apache2
sudo systemctl start apache2
sudo chown username:username /var/www/html (replace username with your actual username on that computer)
sudo rm /var/www/html/index.html
Allow port 80 on the firewall if needed
Copy whatever files you want to be seen on the server in the /var/www/html directory. You will get a plain text list with links to each file when browsing from the clients.

This is a bad idea if you want to "share" files but doable.

2. You can also Setup SSH instead on the server, and login from the other computers mounting any directory you want. My tutorial here viewtopic.php?f=42&t=367360

3. Or find altair4 guides on SAMBA, search the forum.
Thank you, I will take a look at those options.
Locked

Return to “Networking”