9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] Using 9front as a server
@ 2023-08-22 18:07 dusan3sic
  2023-08-23  4:52 ` ori
  2023-08-23 19:30 ` Sebastian Higgins
  0 siblings, 2 replies; 6+ messages in thread
From: dusan3sic @ 2023-08-22 18:07 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

I want to use my 9front booted from QEMU as a server, so i can transfer files from linux to 9front, but it wont open any ports. Help
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M8f4591713adaef40ef0cae4a
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

[-- Attachment #2: Type: text/html, Size: 854 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Using 9front as a server
  2023-08-22 18:07 [9fans] Using 9front as a server dusan3sic
@ 2023-08-23  4:52 ` ori
  2023-08-23  7:14   ` quiekaizam via 9fans
  2023-08-23 19:30 ` Sebastian Higgins
  1 sibling, 1 reply; 6+ messages in thread
From: ori @ 2023-08-23  4:52 UTC (permalink / raw)
  To: 9fans

Quoth dusan3sic@gmail.com:
> I want to use my 9front booted from QEMU as a server, so i can transfer files from linux to 9front, but it wont open any ports. Help

https://www.mikeash.com/getting_answers.html


------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-Mb3bcdf116284c0b3de40581c
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Using 9front as a server
  2023-08-23  4:52 ` ori
@ 2023-08-23  7:14   ` quiekaizam via 9fans
  0 siblings, 0 replies; 6+ messages in thread
From: quiekaizam via 9fans @ 2023-08-23  7:14 UTC (permalink / raw)
  To: 9fans

> https://www.mikeash.com/getting_answers.html

That was a nice refresher. Thank you far sharing!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Using 9front as a server
  2023-08-22 18:07 [9fans] Using 9front as a server dusan3sic
  2023-08-23  4:52 ` ori
@ 2023-08-23 19:30 ` Sebastian Higgins
  2023-08-23 21:34   ` hiro
  1 sibling, 1 reply; 6+ messages in thread
From: Sebastian Higgins @ 2023-08-23 19:30 UTC (permalink / raw)
  To: 9fans

i'm assuming you're using QEMU + drawterm. if you're using QEMU you might need to add command line arguments for port forwarding. here's mine after tons of trial and error:

> qemu-system-x86_64 -m 2048 -net nic,model=virtio,macaddr=00:20:91:37:33:77 -net user,hostfwd=tcp:127.0.0.1:17564-:564,hostfwd=tcp:127.0.0.1:17010-:17010,hostfwd=tcp:127.0.0.1:17019-:17019,hostfwd=tcp:127.0.0.1:17020-:17020 -device virtio-scsi-pci,id=scsi -drive if=none,id=vd0,file=9front.qcow2.img -device scsi-hd,drive=vd0

your mileage might vary.

________________________________________
From: dusan3sic@gmail.com <dusan3sic@gmail.com>
Sent: Tuesday, August 22, 2023 18:07
To: 9fans
Subject: [9fans] Using 9front as a server

I want to use my 9front booted from QEMU as a server, so i can transfer files from linux to 9front, but it wont open any ports. Help
9fans<https://9fans.topicbox.com/latest> / 9fans / see discussions<https://9fans.topicbox.com/groups/9fans> + participants<https://9fans.topicbox.com/groups/9fans/members> + delivery options<https://9fans.topicbox.com/groups/9fans/subscription> Permalink<https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M8f4591713adaef40ef0cae4a>

------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M4a19c21f41339a36bfcb0460
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Using 9front as a server
  2023-08-23 19:30 ` Sebastian Higgins
@ 2023-08-23 21:34   ` hiro
  2023-08-26  8:55     ` dusan3sic
  0 siblings, 1 reply; 6+ messages in thread
From: hiro @ 2023-08-23 21:34 UTC (permalink / raw)
  To: 9fans

why don’t you follow the fqa
these port forwarding sound tedious

On 8/23/23, Sebastian Higgins <bctnry@outlook.com> wrote:
> i'm assuming you're using QEMU + drawterm. if you're using QEMU you might
> need to add command line arguments for port forwarding. here's mine after
> tons of trial and error:
>
>> qemu-system-x86_64 -m 2048 -net nic,model=virtio,macaddr=00:20:91:37:33:77
>> -net
>> user,hostfwd=tcp:127.0.0.1:17564-:564,hostfwd=tcp:127.0.0.1:17010-:17010,hostfwd=tcp:127.0.0.1:17019-:17019,hostfwd=tcp:127.0.0.1:17020-:17020
>> -device virtio-scsi-pci,id=scsi -drive
>> if=none,id=vd0,file=9front.qcow2.img -device scsi-hd,drive=vd0
> 
> your mileage might vary.
> 
> ________________________________________
> From: dusan3sic@gmail.com <dusan3sic@gmail.com>
> Sent: Tuesday, August 22, 2023 18:07
> To: 9fans
> Subject: [9fans] Using 9front as a server
> 
> I want to use my 9front booted from QEMU as a server, so i can transfer
> files from linux to 9front, but it wont open any ports. Help
> 9fans<https://9fans.topicbox.com/latest> / 9fans / see
> discussions<https://9fans.topicbox.com/groups/9fans> +
> participants<https://9fans.topicbox.com/groups/9fans/members> + delivery
> options<https://9fans.topicbox.com/groups/9fans/subscription>
> Permalink<https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M8f4591713adaef40ef0cae4a>

------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M7f1be698af6d80f48a8f4d22
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Using 9front as a server
  2023-08-23 21:34   ` hiro
@ 2023-08-26  8:55     ` dusan3sic
  0 siblings, 0 replies; 6+ messages in thread
From: dusan3sic @ 2023-08-26  8:55 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

I just ran aux/listen and it worked lol
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T1eb6489031b3e452-M81edf4d8b035103775c95d7d
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

[-- Attachment #2: Type: text/html, Size: 761 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-08-26  8:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-22 18:07 [9fans] Using 9front as a server dusan3sic
2023-08-23  4:52 ` ori
2023-08-23  7:14   ` quiekaizam via 9fans
2023-08-23 19:30 ` Sebastian Higgins
2023-08-23 21:34   ` hiro
2023-08-26  8:55     ` dusan3sic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).