Shadow_7 2017-03-02 05:45:25
a lot of hosters just do :8080 for http
Shadow_7 2017-03-02 05:45:49
You need like a business line connection to host lower ports
Milchy 2017-03-02 05:46:03
so how do i make it so when people type in my ip they would go where i want
Milchy 2017-03-02 05:46:12
fine ill leave it on 1025
Milchy 2017-03-02 05:46:25
but how do i make it so people wont have to type in that 1025
jhutchins_wk 2017-03-02 05:46:33
!rt8111
Shadow_7 2017-03-02 05:46:43
you could pay for hosting services. Or some other middle man that forwards to a usable port.
Shadow_7 2017-03-02 05:47:44
Milchy: 8080 would be a more "expected" port
Milchy 2017-03-02 05:47:56
yes but you dont normaly type in google.com:8080
Milchy 2017-03-02 05:48:03
or anysite:8080 for that mater
jhutchins_wk 2017-03-02 05:48:31
Milchy: If you changed 80 to 1025 apache would no longer listen on 80.
Shadow_7 2017-03-02 05:48:33
Milchy: then you'll need some middle man thing on the other side of your ISP connection
jhutchins_wk 2017-03-02 05:49:55
Milchy: You would have to have something listening on 80 that forwarded to 1025. It could theoretically be on the same server, they do that a lot with java webapps.
Shadow_7 2017-03-02 05:50:14
Milchy: perhaps some guides and hints on sites like noip, dyndns, and whatevers
jhutchins_wk 2017-03-02 05:50:23
Milchy: It's possible to listen on multiple ports (ie 80/http & 443/https).
Milchy 2017-03-02 05:50:51
my problem is that debian doesnt let people past <1024 ports to my apache
Milchy 2017-03-02 05:51:11
yet this 101 internet, people install apache and make it work 24/7
Milchy 2017-03-02 05:51:33
im either missing something or... i dont know...
Shadow_7 2017-03-02 05:51:49
Milchy: could be a firewall thing. If it works on 1025, it should work on 80
Shadow_7 2017-03-02 05:52:08
or a vm thing or however your have your thing configured
jhutchins_wk 2017-03-02 05:52:32
Milchy: No, it's not debian.
Milchy 2017-03-02 05:52:51
i changed it to 1025 and it worked?
jhutchins_wk 2017-03-02 05:53:02
Milchy: If you're running a firewall that could be blocking 80.
Milchy 2017-03-02 05:53:13
80 is in the iptables
Shadow_7 2017-03-02 05:53:42
or the ISP is blocking it
jhutchins_wk 2017-03-02 05:53:50
Milchy: I would ASK the provider, probably check their FAQ first.
jhutchins_wk 2017-03-02 05:54:45
Milchy: Also look at the logs and see if there's some reason apache is not liking port 80 - like it's defined twice and "already in use". apachectl -t is useful to check your config files.
jhutchins_wk 2017-03-02 05:55:15
Milchy: You could pastebin your IPTables rules and let us check them.
Milchy 2017-03-02 05:56:08
http://pastebin.com/feksrmdb
Milchy 2017-03-02 05:56:58
i even forgot to type in 1025
Milchy 2017-03-02 05:57:00
which is working fine
jhutchins_wk 2017-03-02 05:59:03
Milchy: Yeah, I'm pretty rusty, but I don't see a rule that would allow 1025, which suggests that your script isn't working.
troulouliou_div2 2017-03-02 05:59:46
hi here is my syslinux pxe entry for debian ; it boots but then it complains that it can't fnd the cdrom; is there a trick to mount dthe NFS partition as a cd ?
troulouliou_div2 2017-03-02 05:59:46
https://bpaste.net/show/7a5f889ba5e5
Milchy 2017-03-02 06:00:10
what does -A INPUT -s 127.0.0.1/32 -j ACCEPT
Milchy 2017-03-02 06:00:11
mean ?
mdim 2017-03-02 06:00:50
hi all
Shadow_7 2017-03-02 06:00:56
troulouliou_div2: if it just wants that to get the .deb. You could just pre-emptively copy the .debs to /var/cache/apt/archives/
mdim 2017-03-02 06:01:11
how do I find out when was this package the last time in Debian Stretch? https://packages.debian.org/sid/libui-dialog-perl
troulouliou_div2 2017-03-02 06:01:20
Shadow_7, no i want to have a bootable over pxe dvd
jhutchins_wk 2017-03-02 06:01:22
Milchy: I believe it means that if the source is 127.0.0.1 (localhost) accept all.
mdim 2017-03-02 06:01:31
I'm aware of snapshot.debian.org, but I'm not sure how to find this information there
jhutchins_wk 2017-03-02 06:02:27
Milchy: I also don't see a rule that would allow 80 from anything but 10.0.2.15 - but 1025 would also be allowed from 10.0.2.15
Milchy 2017-03-02 06:05:04
so if i add
Milchy 2017-03-02 06:05:17
-A INPUT -s 0.0.0.0/0 -j ACCEPT
Milchy 2017-03-02 06:05:22
would that fix my problems?
Shadow_7 2017-03-02 06:05:39
allow anything from everything ?
Milchy 2017-03-02 06:06:07
yes
Milchy 2017-03-02 06:06:19
if that doesnt work, what other options do i have lol
Shadow_7 2017-03-02 06:06:36
the /# thing is the netmask. it would be effectively the same as iptables -X && iptables -F
Shadow_7 2017-03-02 06:07:11
plus that for all the -t ???? things
Milchy 2017-03-02 06:07:26
-A INPUT -s 0.0.0.0/0 -j ACCEPT, didnt help
raynold 2017-03-02 06:08:21
ahh it's a wonderful day
Shadow_7 2017-03-02 06:08:56
unemployed with a big fat severence?
Milchy 2017-03-02 06:11:15
so if my apache is listening on 1025
Milchy 2017-03-02 06:11:24
and now i see theres something listening on 80
Milchy 2017-03-02 06:11:29
how do i find out what that something is
somiaj 2017-03-02 06:11:42
Milchy: netstat -a will list all open ports
somiaj 2017-03-02 06:11:52
note it lists sockest as well, there are ways to isolate it to just tcp
Milchy 2017-03-02 06:12:29
i want to know whats listening on :80. -an told me that
Shadow_7 2017-03-02 06:12:55
Milchy: netstat -tulpan
Milchy 2017-03-02 06:14:11
nginx.conf
Milchy 2017-03-02 06:14:54
wait, 1025 is also nginx.conf
Milchy 2017-03-02 06:14:57
what the...
Skandalist 2017-03-02 06:15:20
I use Thunar and I can see video thumbnails except mpg files. What could it be?
kingkong 2017-03-02 06:16:04
what's the mpfr package name ? libmpfr4-dbg ?
jhutchins_wk 2017-03-02 06:16:10
Milchy: You can also flush all the rules and run with nothing.
jhutchins_wk 2017-03-02 06:16:45
Milchy: I think netstat -anp shows PID or process name.
Shadow_7 2017-03-02 06:16:53
kingkong: libmpfr4 ...in debian jessie
jhutchins_wk 2017-03-02 06:17:27
Skandalist: Whatever is extracting the thumbnails doesn't have the MPEG codec, probably for license reasons.
Milchy 2017-03-02 06:18:13
ok so, 1025 opens my webpage, netstat is telling me this: apache is on 8080, and nginx.conf is on 1025 AND 80
kingkong 2017-03-02 06:18:30
Shadow_7: thanks. 4 refers to version 4 ?
Skandalist 2017-03-02 06:18:43
can additional plugin packages help? I can play mpg in mplayer, for example
jhutchins_wk 2017-03-02 06:18:56
,v libmpfr4
judd 2017-03-02 06:18:59
Package: libmpfr4 on amd64 -- wheezy: 3.1.0-5; jessie: 3.1.2-2; sid: 3.1.5-1; stretch: 3.1.5-1
riccoo_ 2017-03-02 06:19:17
Shadow_7?
jhutchins_wk 2017-03-02 06:19:35
Skandalist: Not sure what Thunar uses to extract the images. You'd have to look at their docs.
jhutchins_wk 2017-03-02 06:20:00
Skandalist: It probably uses something else rather than extracting them itself.
kingkong 2017-03-02 06:20:02
ok thanks
Skandalist 2017-03-02 06:20:29
thanks anyway
Shadow_7 2017-03-02 06:20:30
Perhaps it nees mjpegtools to get thumbnails
jhutchins_wk 2017-03-02 06:20:54
I wouldn't go just throwing random packages at it.
Shadow_7 2017-03-02 06:21:13
strace and other methods to see what it's looking for.
jhutchins_wk 2017-03-02 06:22:46
Shadow_7: Or documentation.
Shadow_7 2017-03-02 06:23:17
Where's the adventure in that?
altyr 2017-03-02 06:23:28
mdim: https://tracker.debian.org/pkg/libui-dialog-perl
contrapunctus 2017-03-02 06:39:57
I'm using the Cinnamon DE on Debian. How may I 1. configure it to have every window start as maximized? 2. disable sticky keys "latchlock" behaviour? (i.e. enabling sticky keys but not having modifiers 'lock' when pressed twice consecutively; Cinnamon does not provide that through a GUI, and using the relevant CLI commands in e.g. ~/.xsessionrc gets overriden)