Re: Ubuntu, how to setup an IPV6 tunnel?

2020-10-27 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: Ubuntu, how to setup an IPV6 tunnel?

@4. Nothing really just experimenting for the most part lol.

URL: https://forum.audiogames.net/post/584012/#p584012




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Ubuntu, how to setup an IPV6 tunnel?

2020-10-26 Thread AudioGames . net Forum — Developers room : TextAdventurer via Audiogames-reflector


  


Re: Ubuntu, how to setup an IPV6 tunnel?

Oh cool, at least you found a solution.  What are you building, if you don't mind my asking?

URL: https://forum.audiogames.net/post/583651/#p583651




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Ubuntu, how to setup an IPV6 tunnel?

2020-10-25 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: Ubuntu, how to setup an IPV6 tunnel?

@2. Thanks I figured it out lol. Turns out I need to use netplan. 

URL: https://forum.audiogames.net/post/583339/#p583339




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Ubuntu, how to setup an IPV6 tunnel?

2020-10-25 Thread AudioGames . net Forum — Developers room : TextAdventurer via Audiogames-reflector


  


Re: Ubuntu, how to setup an IPV6 tunnel?

Hey @thetechguy,I haven't heard of this specific software, but this is a problem I've found with all kinds of things on Linux.  Now I'm not bashing Linux, and I'm actually a huge fan (writing this on Ubuntu myself) but holy guacamole do Linux software devs ever love their config files!  When I want to do something in Ubuntu, Raspbian or whatever distro I happen to be on, it seems like the config files I'm looking for rarely exist.  In those scenarios, here's what I usually do:1. Create the file myself, pasting in whatever code they want, then reboot.2. If that doesn't work, I like to review the docs again.  This could be my vision talking, but it seems every time I re-read API docs, I always stumble on something I didn't notice before.  Maybe it'll lead to some new clue, or some backup plan you can try, or something like that.3. If that doesn't work, I might also try uninstalling and reinstalling the software.  Ubuntu is a bit weird, because it has 4-5 different package managers.  At the command-line it has both apt and snap, and on desktops it has its own sort of app-store-like-thing (I think they just call it "Ubuntu Software" or something) and of course Synaptic (not to mention AppImage and probably some others I forget).  Maybe the developers of this software switched from apt to snap and you don't have the latest version.  Or maybe one of those other tools will include the missing file in its installation process. 4. Next obvious answer, Google it (well I prefer to Duck it, but to each his/her own).5. If I still can't get it working, haven't found any useful info on the interwebz, and can't get an answer on a forum or other resource, then I start thinking about alternatives.  One thing I love about Ubuntu, and Linux in general, is that it's built on mostly open source code.  This allows programmers to build whatever the heck they want, which means usually, there's more than one way to do what you want.  Like for audio, there are libraries like OpenAL, Sox, PortAudio, PulseAudio, Jack, and a ton of others, not to mention straight ALSA (driver API) calls.  And on the closed-source side of things you have IrrKlang, I think there was one called FMod or something like that, and the list goes on.  Now I don't know enough about server config to know what the options are, but I bet there are tons.Hope that helps. 

URL: https://forum.audiogames.net/post/583293/#p583293




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Ubuntu, how to setup an IPV6 tunnel?

2020-10-25 Thread AudioGames . net Forum — Developers room : TextAdventurer via Audiogames-reflector


  


Re: Ubuntu, how to setup an IPV6 tunnel?

Hey @thetechguy,I haven't heard of this specific software, but this is a problem I've found with all kinds of things on Linux.  Now I'm not bashing Linux, and I'm actually a huge fan (writing this on Ubuntu myself) but holy guacamole do Linux software devs ever love their config files!  When I want to do something in Ubuntu, Raspbian or whatever distro I happen to be on, it seems like the config files I'm looking for rarely exist.  In those scenarios, here's what I usually do:1. Create the file myself, pasting in whatever code they want, then reboot.2. If that doesn't work, I like to review the docs again.  This could be my vision talking, but it seems every time I re-read API docs, I always stumble on something I didn't notice before.  Maybe it'll lead to some new clue, or some backup plan you can try, or something like that.3. If that doesn't work, I might also try uninstalling and reinstalling the software.  Ubuntu is a bit weird, because it has 4-5 different package managers.  At the command-line it has both apt and snap, and in graphical desktops it has its own sort of app-store-like-thing (I think they just call it "Ubuntu Software" or something) and of course Synaptic.  Maybe you don't have the latest version, or maybe one of those other tools will include the missing file in its installation process (not to mention AppImage and probably some others I forget).  4. Next obvious answer, Google it (well I prefer to Duck it, but to each his/her own).5. If I still can't get it working, haven't found any useful info on the interwebz, and can't get an answer on a forum or other resource, then I start thinking about alternatives.  One thing I love about Ubuntu, and Linux in general, is that it's built on mostly open source code.  This allows programmers to build whatever the heck they want, which means usually, there's more than one way to do what you want.  Like for audio, there are libraries like OpenAL, Sox, PortAudio, PulseAudio, Jack, and a ton of others, not to mention straight ALSA (driver API) calls.  And on the closed-source side of things you have IrrKlang, I think there was one called FMod or something like that, and the list goes on.  Now I don't know enough about server config to know what the options are, but I bet there are tons.Hope that helps. 

URL: https://forum.audiogames.net/post/583293/#p583293




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Ubuntu, how to setup an IPV6 tunnel?

2020-10-23 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Ubuntu, how to setup an IPV6 tunnel?

Hi.So I went to Tunnel broker to try to setup an IPV6 tunnel. However, it tells me to paste a config thing to /etc/network/interfaces. However, I cant find it in my server. Where should I paste the configuration instead?

URL: https://forum.audiogames.net/post/582613/#p582613




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector