08:07 <+ddnet-discord> 2.3 Million players xD 08:18 <+ddnet-discord> alright alright ive followed the video 08:19 <+ddnet-discord> @Savander 08:19 <+ddnet-discord> but how do i know the server or putty will find its public key 11:06 <@deen> anyone know why sem_wait calls futex syscall all the time even when nothing is happening? 12:04 <+ddnet-discord> Ezy... Private key == .ppk file 12:04 <+ddnet-discord> public key you have to put on your server 12:06 <+ddnet-discord> inside ~/.ssh/authorized_keys 12:06 <+ddnet-discord> and done 12:06 <+ddnet-discord> if you did what i show you on video 12:06 <+ddnet-discord> you can just connect to server, 12:06 <+ddnet-discord> write username, for example root 12:07 <+ddnet-discord> depends on, which account you were logged in, while doing ~/.ssh/authorized_keys 12:07 <+ddnet-discord> and nothing more 12:19 <+ddnet-discord> Can i manual put key inside .ssh/authorized_keys 12:19 <+ddnet-discord> I have my public key in only .ssh i got no authorized_keys folder 12:19 <+ddnet-discord> yes, you have to create that file 12:20 <+ddnet-discord> and put that public key inside that file 12:20 <+ddnet-discord> you can do it straight from console 12:20 <+ddnet-discord> cat public_key_filename >> authorized_keys 12:29 < ddnet-commits> [ddnet] def- pushed 1 new commit to master: https://git.io/v5RdV 12:29 < ddnet-commits> ddnet/master 960143b def: semaphore instead of busy waiting in CJobPool 12:31 < ddnet-commits> [ddnet] def- force-pushed master from 960143b to e64e59a: https://git.io/vsyfY 12:31 < ddnet-commits> ddnet/master e64e59a def: semaphore instead of busy waiting in CJobPool 12:31 <@deen> I tried using pthread_cond_t but they are weird. why do they need a locked mutex and then unlock it? Would be more intuitive the other way around 12:43 <+ddnet-discord> @Savander how will it know the public key is the key that fits to the private one though 12:44 <+ddnet-discord> I don't know. You have to know that, to know that it works ? 12:44 <+ddnet-discord> didn't read about it 12:45 <+ddnet-discord> ename >> authorized_keys cat: public_key_filename: No such file or directory 12:45 <+ddnet-discord> do i make folder myself 12:45 <+ddnet-discord> Ezy, think a bit more 12:45 <+ddnet-discord> public_key_filaname 12:45 <+ddnet-discord> means, replace it with your name 12:45 <+ddnet-discord> of file 12:45 <+ddnet-discord> it was placeholder 12:45 <+ddnet-discord> to that command 12:46 <+ddnet-discord> xD 12:48 <+ddnet-discord> @Savander does >> stand for move this file in this directory 12:48 <+ddnet-discord> no 12:48 <+ddnet-discord> its full command 12:49 <+ddnet-discord> if you don't have .ssh directory 12:49 <+ddnet-discord> make one 12:49 <+ddnet-discord> i do 12:49 <+ddnet-discord> enter to that directory 12:49 <+ddnet-discord> copy there your public key 12:49 <+ddnet-discord> then do this command 12:49 <+ddnet-discord> cat %that_key_filename% >> authorized_keys 12:50 <+ddnet-discord> replace %that_key_filename% with filename of key 12:50 <+ddnet-discord> ohhhhhhhhhh 12:50 <+ddnet-discord> replace the whole thing 12:50 <+ddnet-discord> i thought only "filename" xD 12:50 <+ddnet-discord> :tw_bluestripe: 12:51 <+ddnet-discord> cat: public: No such file or directory 12:52 <+ddnet-discord> still getting this error 12:52 <+ddnet-discord> wait 12:52 <+ddnet-discord> nvm 12:52 <+ddnet-discord> i gotta cd first right? 12:52 <+ddnet-discord> yes 12:54 <+ddnet-discord> to .ssh right 12:54 <+ddnet-discord> yes 12:54 <+ddnet-discord> Anyway, somehow you have to put content of public key inside authorized_keys file 12:55 <+ddnet-discord> try, search etc 12:56 <+ddnet-discord> wait 12:57 <+ddnet-discord> how do i cd to cs: 12:57 <+ddnet-discord> C: 12:57 <+ddnet-discord> it tells me not found 12:57 <+ddnet-discord> C: 12:57 <+ddnet-discord> cd C: is what i did 12:58 <+ddnet-discord> what / 12:58 <+ddnet-discord> What are you trying to do 12:58 <+ddnet-discord> Linux don't have "C:" 12:58 <+ddnet-discord> linux has a bit different file system 12:58 <+ddnet-discord> than windows 12:59 <+ddnet-discord> y but i have to locate my C: folder first 12:59 <+ddnet-discord> You can't do this in that way 12:59 <+ddnet-discord> you have to upload file to server 12:59 <+ddnet-discord> SSH is just one-way bridge to your server 13:00 <+ddnet-discord> ok 13:01 <+ddnet-discord> how do i upload the files then? 13:01 <+ddnet-discord> you can use sftp 13:01 <+ddnet-discord> can you give me command 13:02 <+ddnet-discord> nope 13:02 <+ddnet-discord> https://winscp.net/eng/docs/free_sftp_client_for_windows 13:02 <+ddnet-discord> SSH File Transport Protocol 13:02 <+ddnet-discord> use client, for example that one 13:02 <+ddnet-discord> log in to server, like you would do via putty 13:02 <+ddnet-discord> and upload files 13:03 <+ddnet-discord> oh just ftp 13:03 <+ddnet-discord> yeah i can do that 13:03 <+ddnet-discord> wait 13:03 <+ddnet-discord> no 13:03 <+ddnet-discord> nvm 13:04 <+ddnet-discord> is sftp different that normal ftp 13:08 <+ddnet-discord> alright so i uploaded my .ssh folder to server 13:10 <+ddnet-discord> now my putty wont let me login 13:10 <+ddnet-discord> it just says nothing 13:11 <+ddnet-discord> i don't know what you did 13:11 <+ddnet-discord> figured it out 13:11 <+ddnet-discord> didnt start server 13:11 <+ddnet-discord> after ftp 13:11 <+ddnet-discord> ?????????? 13:11 <+ddnet-discord> nvm 13:12 <@deen> Ok, i understand why conditional variables work that way, but not so useful for me 13:12 <+ddnet-discord> @Savander alright im in .ssh directory 13:13 <+ddnet-discord> now cat command 13:13 <+ddnet-discord> deen: are you trying to fix Mac build ? 13:13 <+ddnet-discord> ezy:~/.ssh# cat public >> authorized_keys cat: public: No such file or directory wtf 13:15 <+ddnet-discord> that file has "public" name ? 13:16 <+ddnet-discord> y 13:16 <+ddnet-discord> You are doing something wrong, can't tell you what 13:16 <+ddnet-discord> don't see your server. Figure it out by yourself. Read messages 13:17 <+ddnet-discord> "no such file or directory" 19:20 <+ddnet-discord> flag shouldn't be updated after finishing map ? 21:19 <+ddnet-discord> Hi!, maybe it's off-topic a bit, but can I debug the connection more somehow? Lately I'm unable to connect to many game servers including any teeworlds server so the default time-out message is insufficient. :tw_twintri: 21:20 <+ddnet-discord> windows is retarded 22:10 <+ddnet-discord> alright ive configured the ssh key now 22:18 <+ddnet-discord> and ive transfered the linux ddnet client per ftp to the server 22:18 <+ddnet-discord> how do i execute ddnet server and change map rename and all that 22:19 <+ddnet-discord> does rename work like if i start lan server?