1110326425 M * Bertl no idea what kernel that is, but I doubt it will have good SMT support 1110326439 M * Bertl the 2.4 kernels do not natively support SMT very well 1110326451 M * jd86 how do i make sshd start up with debian? 1110326464 M * Bertl DukeGangsta|aw: but I guess it will work out of the box anyways ... 1110326505 M * DukeGangsta|aw so i have to wait for a 2.6 vserver smt kernel for best performance? 1110326551 M * Bertl well, 'wait' sounds strange to me, but probably ... 1110326564 A * jd86 loves my 2.6 vserver kernel? 1110326585 M * Bertl I would just get it from kernel.org, patch and compile it ... but that's just me ;) 1110326611 M * DukeGangsta|aw i'm not very good in patching kernels ;) 1110326620 M * jd86 DukeGangsta|aw needs gentoo! 1110326633 M * Bertl DukeGangsta|aw: usually 'patch' does that for you ... 1110326639 M * DukeGangsta|aw it's really interesting, vserver with linux... i had some "ms virtual machines" and "vmware" with windows, but this is really different i think... 1110326658 M * Bertl yep, that's quite different ... 1110326685 M * DukeGangsta|aw testing at the weekend on my homebox with vservers, hope you are here to help me ;) 1110326696 M * jd86 how do i make something (sshd) start at bootup with debian? 1110326700 M * Bertl okay, folks, was nice chatting with you (all), but I'm off to bed now ... 1110326706 M * jd86 noooooo 1110326718 M * jd86 nite nite 1110326725 M * Bertl DukeGangsta|aw: I'm pretty sure somebody will be here to help 'ya ... 1110326735 M * Bertl night jd86, and good luck with the script 1110326736 M * DukeGangsta|aw jd86: rc? 1110326741 M * jd86 how tho? 1110326760 N * Bertl Bertl_zZ 1110326782 T * Bertl_zZ http://linux-vserver.org/ | latest stable 1.2.10, devel 1.9.5-rc2, ng9.2 -- He who asks a question is a fool for a minute; he who doesn't ask is a fool for a lifetime -- share the gained knowledge on the wiki, and we'll forget about the minute ;) 1110326827 M * DukeGangsta|aw in suse you start ssh if you place a start-script in "/etc/rc.d/rcX.d" where X is the runlevel 1110326860 M * daniel_hozac jd86: man update-rc.d IIRC. 1110326912 M * jd86 ancient rc systems. 1110327646 Q * ndim Ping timeout: 480 seconds 1110327715 J * ndim hun@helena.bawue.de 1110328010 Q * jsambrook Read error: Operation timed out 1110328967 J * mugwump_ ~samv@210-54-92-184.ipnets.xtra.co.nz 1110328980 Q * mugwump_ Quit: 1110329551 Q * prae Quit: Pwet 1110331008 J * Ale__ ~AAAAAAAA@micomisariato.telconet.net 1110331024 M * Ale__ someone can tell me where can I put a script to run when I shut down the machine?? 1110331051 M * mugwump /etc/init.d is where those scripts go 1110331064 M * mugwump then you make symlinks from rc0.d and rc6.d to those 1110331098 M * mugwump If you are using the "System V init script system" which most Linux distros do 1110331112 M * Ale__ so if I put some script at /etc/init.d when I turn off the machine it should work? right 1110331115 M * mugwump no 1110331123 M * mugwump you also need to make a symlink from /etc/rc0.d 1110331146 M * mugwump also, if you are using a laptop and want it to run when the system *suspends*, there is another place 1110331157 M * mugwump eg, /etc/apm/suspend.d on my laptop 1110331165 M * Ale__ and if logout is another place 1110331166 M * Ale__ ? 1110331206 M * mugwump that is a slightly more difficult problem... 1110331227 M * mugwump it depends on the login manager (eg, getty vs xdm/gdm/kdm) 1110331260 M * Ale__ mmmm 1110331261 M * mugwump also, the concept of what "logout" means is a bit hazy on Unix ;) 1110331276 M * Ale__ restart the session 1110331289 M * mugwump X session? terminal session? what about processes left behind, do they count? 1110331299 M * Ale__ X session 1110331401 M * Ale__ so I have to make a link of a script that I put on init.d to rc0.d 1110331413 M * mugwump there are multiple solutions, depending on whether you want the *system* or your *user only* to run a script on completion of the session 1110331439 M * mugwump for instance, xdm will run a file called .xsession in your home directory as your session 1110331488 M * mugwump if you put commands at the end of the file, then they will run when the script gets to the end. If you start your window manager without the "&" at the end, it will mean that once your window manager exits, the command will run 1110331513 M * mugwump unless you `killed' the X session, eg with Ctrl+Alt+BkSp 1110331610 M * mugwump There might be another way, by configuring an X login manager / greeter, such as xdm, gdm, kdm, wdm ... 1110331618 M * Ale__ If I put a command at the end of Xsession file it doesn't run 1110331646 M * Ale__ I've already did that 1110331799 M * mugwump something before it might be calling "exec xxx", which will end the script 1110331861 M * Ale__ but wait are we talknig about the Xsession file or some file on the rc0.d 1110331877 M * mugwump having your own custom .xsession file ($HOME/.xsession)is a good approach ime 1110331891 M * mugwump rcN.d is nothing to do with X sessions 1110331905 M * mugwump only "system runlevels" 1110331925 M * Ale__ and when I restart the session runs the .xsession to "logout" 1110331927 M * Ale__ ? 1110332043 M * mugwump it's the other way round. when your .xsession script finishes, the login manager will take that as meaning that your session is to be logged out. It then closes all open X11 connections to running applications, and re-displays the login screen. 1110332114 M * mugwump which is why Xsession scripts tradionally use "exec" 1110332138 M * mugwump but if you drop the "exec", you will have a place to run programs after the window manager exits (which is normally what "log out" will trigger) 1110332151 M * Ale__ and where is located .xsession , because I only found .xsession_errors 1110332196 M * mugwump try `locate Xsession' 1110332220 M * Ale__ oh it's Xsession not .xsession 1110332248 M * mugwump if you find the system default Xsession and read through it, you might see where it scans for ~/.xsession and runs it if it finds it. 1110332314 M * mugwump If you hadn't already realised, Unix is full of quaint little idiosynchronacies like this :-) 1110332501 M * Ale__ I just read the Xsession file, and it made reference to $HOME.xsession but I look for it and I doesn't see it 1110332508 M * Ale__ even if I do ls -la 1110333414 J * _espen aeldagrim@ti541110a080-1189.bb.online.no 1110333475 M * _espen hi, when i try to start my vserver i get several errors, like; 1110333478 M * _espen chgrp: getting attributes of `var/run/utmp': No such file or directory 1110333486 M * _espen and at last 1110333486 M * _espen Can't execute /etc/rc.d/rc (No such file or directory) 1110333525 M * _espen tried searching all over for something about it on the net but didnt find anything, anyone here got a link or something? :) 1110333620 M * mugwump sounds like it can't find the root path of your vserver... 1110333651 M * _espen mm, i installed the vserver via, that debiannewserver.sh script 1110333662 M * mugwump eg, your tools expect /vservers to be in /var/lib or something insane like that 1110333668 M * _espen oh 1110333678 M * _espen any file to change this ? 1110333700 M * _espen VROOTDIR='/var/lib/vservers' 1110333703 M * _espen found it :) 1110333731 M * _espen works 1110333733 M * _espen thanks alot 1110333736 M * mugwump np 1110333755 M * _espen what about this; 1110333755 M * _espen /usr/sbin/vserver: ulimit: cannot modify max user processes limit: Invalid argument 1110333756 M * _espen ? 1110333842 M * mugwump haven't run into that before... might have to pull the script apart or ask that question again later 1110333854 M * _espen ok 1110333870 M * mugwump ulimit won't work if it's called inside the vserver (ie, inside a chcontext wrapper) 1110333879 M * mugwump s/the vserver/a vserver/ 1110333897 M * mugwump configable behaviour iirc, but the vserver script should know that... 1110333929 M * _espen mm ok 1110333990 P * Ale__ Client Exiting 1110335796 J * _sebd ~sebd@lesdeveloppementsdurables.org 1110335796 Q * sebd Read error: Connection reset by peer 1110336026 J * sebd_ ~sebd@lesdeveloppementsdurables.org 1110336026 Q * _sebd Read error: Connection reset by peer 1110336087 Q * _espen Quit: 1110337697 J * chairuou ~chairuou@210.245.69.168 1110337909 J * _sebd_ ~sebd@lesdeveloppementsdurables.org 1110337909 Q * sebd_ Read error: Connection reset by peer 1110338164 J * _sebd__ ~sebd@lesdeveloppementsdurables.org 1110338164 Q * _sebd_ Read error: Connection reset by peer 1110338930 Q * _sebd__ Ping timeout: 480 seconds 1110339987 Q * stupidawy uranium.oftc.net quasar.oftc.net 1110339987 Q * meebey uranium.oftc.net quasar.oftc.net 1110339987 Q * bro uranium.oftc.net quasar.oftc.net 1110339987 Q * ndim uranium.oftc.net jupiter.oftc.net 1110339987 Q * DukeGangsta|aw uranium.oftc.net jupiter.oftc.net 1110339987 Q * monrad uranium.oftc.net jupiter.oftc.net 1110339987 Q * maharaja uranium.oftc.net jupiter.oftc.net 1110339987 Q * ciphernaut uranium.oftc.net jupiter.oftc.net 1110339987 Q * BobR_oO uranium.oftc.net jupiter.oftc.net 1110339987 Q * micah uranium.oftc.net jupiter.oftc.net 1110339987 Q * alexx uranium.oftc.net jupiter.oftc.net 1110339987 Q * sith uranium.oftc.net jupiter.oftc.net 1110339987 Q * tchan uranium.oftc.net jupiter.oftc.net 1110339987 Q * Bertl_zZ uranium.oftc.net jupiter.oftc.net 1110339987 Q * chairuou uranium.oftc.net kinetic.oftc.net 1110339987 Q * flock uranium.oftc.net kinetic.oftc.net 1110339987 Q * pusling uranium.oftc.net kinetic.oftc.net 1110339987 Q * BWare uranium.oftc.net kinetic.oftc.net 1110339987 Q * Loki|muh uranium.oftc.net kinetic.oftc.net 1110339987 Q * cc__ uranium.oftc.net kinetic.oftc.net 1110339987 Q * mugwump uranium.oftc.net kinetic.oftc.net 1110339987 Q * eyck uranium.oftc.net kinetic.oftc.net 1110339987 Q * jd86 uranium.oftc.net kinetic.oftc.net 1110339987 Q * aba uranium.oftc.net venus.oftc.net 1110339987 Q * berni uranium.oftc.net venus.oftc.net 1110339987 Q * nox uranium.oftc.net neutron.oftc.net 1110339987 Q * weasel uranium.oftc.net neutron.oftc.net 1110340000 J * stupidawy foo@you.wish.you.were.pimp.olicio.us 1110340000 J * meebey meebey@meebey.net 1110340000 J * bro ~vanity@lanparty.lv 1110340000 J * ndim hun@helena.bawue.de 1110340000 J * DukeGangsta|aw ~uefgangst@p548691D9.dip.t-dialin.net 1110340000 J * monrad ~monrad@213083190130.sonofon.dk 1110340000 J * maharaja maharaja@ipax.at 1110340000 J * ciphernaut ~a@61.88.18.130 1110340000 J * BobR_oO ~georg@MAIL.13thfloor.at 1110340000 J * micah micah@micha.hampshire.edu 1110340000 J * alexx ~alexx@82.225.136.176 1110340000 J * sith sith@aaronp.com 1110340000 J * tchan ~tchan@c-24-13-81-164.client.comcast.net 1110340000 J * Bertl_zZ ~herbert@janus.mc.tuwien.ac.at 1110340000 J * chairuou ~chairuou@210.245.69.168 1110340000 J * flock ~restless@l192-117-111-12.broadband.actcom.net.il 1110340000 J * pusling ~pusling@195.215.29.124 1110340000 J * BWare ~bware@office.intouch.net 1110340000 J * Loki|muh loki@satanix.de 1110340000 J * cc__ ~codecrusa@195.246.161.1 1110340000 J * mugwump ~samv@210-54-92-184.ipnets.xtra.co.nz 1110340000 J * eyck eyck@81.219.64.71 1110340000 J * jd86 ~jim@ip68-9-97-23.ri.ri.cox.net 1110340016 J * aba ~aba@sol.turmzimmer.net 1110340016 J * berni ~berni@svr01.mucip.net 1110340055 J * nox ~vps@213.39.207.222 1110340055 J * weasel ~weasel@weasel.noc.oftc.net 1110341051 J * anonymous-coward ~nwalsh@shaggy.internode.com.au 1110341292 J * shuri sjnesjd@dsl.speedline209.226.electronicbox.net 1110342591 Q * chairuou Read error: Connection reset by peer 1110342901 Q * shuri Read error: Connection reset by peer 1110343940 Q * nox Ping timeout: 480 seconds 1110343968 J * nox ~vps@213.39.207.114 1110347930 P * anonymous-coward adios 1110348097 Q * sannes Read error: Connection reset by peer 1110348258 N * Bertl_zZ Bertl 1110348263 M * Bertl morning folks! 1110350249 M * DaCa morning Bertl 1110350258 M * Bertl hey DaCa! 1110350269 J * DaPhreak ~DaPhreak@pc-outside.uni-greifswald.de 1110350468 M * Bertl welcome DaPhreak! 1110351632 J * nish ~nish@220.224.32.77 1110351652 M * nish goodmorning :) 1110351681 M * Bertl hey nish! 1110351993 J * erwan_ho ~erwan@lns-vlq-39f-81-56-133-136.adsl.proxad.net 1110352023 J * GenUX ~genux_@rrcs-24-199-44-118.west.biz.rr.com 1110352026 M * Bertl welcome erwan! 1110352037 M * Bertl hello GenUX! 1110352041 M * GenUX Hi bertl 1110352053 M * GenUX I have a question about vserver build command 1110352061 M * Bertl hmm? 1110352076 M * GenUX ok so here it is 1110352084 M * GenUX I did a command: 1110352126 J * IceTi 125@mw635449.rz.ruhr-uni-bochum.de 1110352135 M * GenUX vserver foo build -m skeleton --hostname foo --flags lock.nproc --initstyle gentoo --interface gentoo=eth0:10.0.0.1/16 1110352138 M * IceTi morging 1110352143 M * GenUX morning 1110352152 J * anonymous-coward ~nwalsh@shaggy.internode.com.au 1110352161 M * GenUX where the heck do I find info out on the flags, -m and initstyle? 1110352223 M * GenUX I just want to isolate a group of processes not boot another copy of linux 1110352285 M * GenUX anyone? 1110352295 M * Bertl vattribute --help 1110352302 M * GenUX ok 1110352339 M * GenUX but it doesn't tell me what the caps are 1110352385 M * Bertl http://linux-vserver.org/alpha+util-vserver 1110352470 Q * anonymous-coward Quit: adios 1110352508 M * GenUX hmm 1110352533 M * GenUX I still don't get it, the docs don't list the caps and thier descriptions, nor does it explain every option and its meaning 1110352578 M * IceTi how can i reboot a vserver when i´m in a vserver? 1110352584 M * Bertl sorry my network connection is just to bad atm ... 1110352625 M * Bertl GenUX: http://www.tu-chemnitz.de/~ensc/util-vserver/doc/conf/configuration.html <-- links to the caps/flags 1110352626 J * anonymous-coward ~nwalsh@shaggy.internode.com.au 1110352648 M * Bertl GenUX: ask me for the details in about 2 hours ... I should have a better connection then ... 1110352658 N * Bertl Bertl_oO 1110352665 M * GenUX ok 1110352667 M * IceTi but, how can i reboot a vserver when i´m in a vserver? 1110352717 M * DaCa GenUX: descriptions of capabilities are also in /usr/include/linux/capabilities.h 1110352717 N * GenUX GenUX_Away 1110352724 M * GenUX_Away ahh 1110352725 M * GenUX_Away thanks 1110352823 Q * erwan_ho Remote host closed the connection 1110352882 Q * nish Ping timeout: 480 seconds 1110354744 J * chairuou ~chairuou@210.245.69.168 1110354790 A * Doener yawns and begs for coffee 1110354795 M * Doener morning folks 1110354898 M * DaPhreak morning Doener :) 1110354927 M * DaPhreak Doener: coffee is hazardous ;P 1110355149 J * sannes ~ace@home.skarby.no 1110355829 J * sebd ~sebd@lesdeveloppementsdurables.org 1110357552 Q * flock Ping timeout: 480 seconds 1110358224 M * GenUX_Away what does --initstyle do? 1110358230 N * GenUX_Away GenUX 1110358236 M * Doener choose an initstyle ;) 1110358264 M * Doener plain = use init, sysv = switch to runlevel 3, gentoo = gentoo i guess ;) 1110358304 M * GenUX so its what inittab has? 1110358306 M * Doener you can also modify startup and shutdown commands to your needs 1110358316 M * Doener no, inittab is used by init 1110358335 M * Doener the initstyle determines the first process to be started in the vserver 1110358361 M * GenUX so if I want to launch a /linuxrc which would I use? 1110358390 M * Doener none of them, you would change the startup command yourself instead of using one of the predefined 1110358411 M * Doener http://www-user.tu-chemnitz.de/~ensc/util-vserver/doc/conf/configuration.html 1110358419 M * Doener section /etc/vservers/vserver-name/apps/init 1110358548 M * GenUX ok, reading that 1110358557 N * Bertl_oO Bertl 1110358565 M * Bertl greetings! 1110358565 M * Doener wb Bertl 1110358576 M * DaPhreak morning Bertl :) 1110358583 M * GenUX hi bertl 1110358598 M * Pazzo moinmoin bertl! 1110358598 M * DaPhreak <-- gonna do some customer engineering ;( 1110358607 M * Doener hf 1110358608 N * DaPhreak phreak_gone 1110358623 M * Bertl DaPhreak: customers are engeneered nowadays? 1110358642 M * phreak_gone lol ... not that much Doener :) cleaning up windows 2000 of worms, viruses ... you know .. 1110358646 M * Doener sure, they have to match your business perfectly! ;) 1110358652 M * GenUX so "--initstyle sysv" switch to runlevel 3 in the vserver 1110358653 M * phreak_gone yeah Bertl ;P they are engineered ;) 1110358682 M * Doener GenUX: with initstyle sysv the start command is /etc/init.d/rc 3 IIRC 1110358683 M * Bertl GenUX: yep, it will call the rc script to handle start and stop 1110358696 M * GenUX but it won't run init then? 1110358702 M * Doener right 1110358703 M * Bertl GenUX: nope 1110358716 M * Bertl GenUX: see now you have two answers to choose from ;) 1110358718 M * GenUX ok, now about the gentoo option what does that do? 1110358723 M * GenUX lol 1110358726 M * Doener good question ;) 1110358741 M * Bertl of course it handles the obscurities of gentoo startup ;) 1110358758 M * Doener (xgentoo) 1110358759 M * Doener INITCMD_START=( /sbin/rc default ) 1110358759 M * Doener INITCMD_STOP=( /sbin/rc shutdown ) 1110358760 M * Bertl *properly I forgot properly 1110358770 A * Doener hails to the powers of grep 1110358777 M * GenUX lol 1110358793 M * Bertl Doener: wow, you're a power user, right? 1110358798 M * GenUX so if I just want to launch a few daemons then putting them into /etc/init.d/rc would be the easiest 1110358803 M * Doener *lol* 1110358805 M * GenUX lol 1110358836 M * Bertl GenUX: easiest maybe, cleanest would be to make a runlevel script 1110358869 M * Bertl (could be as simple as a case/daemon statement) 1110358872 M * GenUX I am going to run them in a custom linux distro 1110358884 M * GenUX in vserver 1110358890 M * GenUX and Gentoo on the host 1110358897 M * Bertl well, of course, rc or minit or whatever will do 1110358900 M * GenUX but I don't want all the bootup crap 1110358927 M * Bertl right, don't do that bootup crap, well spoken, that is ;) 1110358944 M * GenUX lol 1110358950 M * GenUX Its like 1am here 1110358954 M * GenUX so I am a bit tired 1110358969 M * Bertl well, it's like 10am here so I'm tired too ;) 1110358975 M * GenUX lol 1110358982 M * GenUX your a euro then 1110358983 M * GenUX lol 1110359009 M * Bertl hmm .. guess you got me there ... 1110359048 M * GenUX 10am where your at should put you in europe right? 1110359075 M * Bertl yes, as I said, you're right on that ... 1110359105 M * GenUX ok got some ideas and I will see you guys in less then 24 hours 1110359106 M * GenUX night 1110359116 M * Bertl excellent! have fun! 1110359124 M * Bertl (or good night then ;) 1110359125 M * GenUX thanks for the help guys 1110359143 Q * GenUX Quit: Leaving 1110359592 M * Bertl IceTi: you around? 1110359613 M * IceTi around? 1110359625 M * Bertl so yes, you're here ... ;) 1110359629 M * IceTi yes 1110359632 M * IceTi but just 5 minutes 1110359638 M * IceTi the reboot problem! 1110359639 M * Bertl just because that's simpler than email 1110359645 M * IceTi yes 1110359661 J * rs ~rs@staff.fr.lyceu.net 1110359668 M * Bertl check the logs on the host, and make sure that your vserver has the required capabilities 1110359668 M * rs hi there 1110359673 M * Bertl hey rs! LTNS! 1110359676 M * rs morning Bertl 1110359677 M * IceTi ??? 1110359689 M * IceTi what required capabilities? 1110359698 M * Bertl /usr/include/linux/capability.h:#define CAP_SYS_BOOT 22 1110359725 M * IceTi -bash-2.05b# /usr/include/linux/capability.h:#define CAP_SYS_BOOT 22 1110359725 M * IceTi -bash: /usr/include/linux/capability.h:#define: No such file or directory 1110359809 M * Bertl well, that's not a bash command, that's an include file 1110359818 M * IceTi achso 1110359819 M * Bertl (you asked which capability you'd need) 1110359830 M * Bertl so it's CAP_SYS_BOOT 1110359857 M * IceTi ok 1110359859 M * IceTi ? 1110359875 M * IceTi i´ve togo now, at 12.00 i´am back 1110359883 M * IceTi can u write me that via mail` 1110359884 M * IceTi ? 1110359896 M * Bertl sure .. have fun! 1110359902 M * IceTi thank you 1110359915 M * Bertl you're welcome! 1110359916 M * IceTi no, no fun, boring besprechung ;-) 1110359927 M * IceTi bye see u later 1110359934 M * IceTi vai mail please ;-) 1110359937 M * IceTi --> away 1110360536 Q * DukeGangsta|aw Quit: ( www.nnscript.de :: NoNameScript 3.81 :: www.XLhost.de ) 1110361566 N * phreak_gone DaPhreak 1110361611 M * Bertl wb DaPhreak! 1110361628 M * DaPhreak thanks Bertl :) haha damn Antivirus is blocking smtp-port ... 1110361631 M * erwan_taf lo Bertl, DaPhreak 1110361643 M * Bertl hey erwan! 1110361658 M * DaPhreak morning erwan :) 1110363746 M * IceTi hey 1110363762 M * IceTi how can i add fc3 to my util tools 204 ??? 1110363772 M * IceTi i wanna build a fc3 vserver 1110363901 M * TheSeer didn't i tell you yesterday already? 1110364110 M * IceTi yes but there was i failure and we talked about the httpd server 1110364119 M * IceTi we don´t fix this ;-) 1110364189 M * Doener i think the error is SELinux related and i have no idea of that stuff... 1110364224 M * TheSeer Doener: it is disabled 1110364234 M * Doener did you check _his_ setup? 1110364253 M * TheSeer partly 1110364272 M * daniel_hozac with SELinux enabled, you'll get all sorts of funky errors. 1110364272 M * TheSeer getenforce => Permissive 1110364300 M * TheSeer in permissive mode it may warn in /var/log/messages but not interrupt anything 1110364322 M * TheSeer it was enabled before, but i made him change it 1110364381 M * Doener ok... then i've no idea what's going on ;) 1110364431 M * TheSeer what actually IS his problem anyway? 1110364464 M * Doener that his apache doesn't like his apache user... never thought you'd forget that one ;) 1110364524 M * TheSeer erm.. i believed we fixed that, didn't we?? 1110364528 M * TheSeer IceTi: ? 1110364591 M * Doener at least not on the channel... 1110364611 M * TheSeer yeah.. we did that i n a query 1110365728 Q * chairuou Quit: 1110366710 Q * DaPhreak Quit: leaving 1110366801 J * DaPhreak ~phreak@lms.rz.uni-greifswald.de 1110366809 Q * DaPhreak Quit: 1110366831 J * DaPhreak ~phreak@lms.rz.uni-greifswald.de 1110367653 M * Bertl off to dinner now ... 1110367657 N * Bertl Bertl_oO 1110369493 J * FEN_HIN ~JFOC@latarius.tkdgroup.com 1110370020 M * IceTi what is the context here: ?? 1110370021 M * IceTi vserver vs-fc3-3 build --force -m apt-rpm --hostname vs3.azubi.de --netdev eth0 --interface xxx.xxx.xxx.xxx/26 --context 42 -- -d fc3 1110370029 M * IceTi what mean that? 1110370036 M * TheSeer ? 1110370139 M * Doener IceTi: you already read http://linux-vserver.org/Linux-VServer-Paper ? 1110370146 M * IceTi mom 1110370167 M * TheSeer and i still have no idea why you insist on setting a static context 1110370231 M * Doener TheSeer: why not? static contexts are a Good Thing(tm) 1110370256 M * TheSeer Doener: and that is because of....? 1110370334 M * Doener for example with disk limits you'll have a lot of 'fun' with dynamic contexts 1110370368 M * TheSeer hmm.. okay.. good point ;) 1110370392 M * TheSeer Failed build dependencies: 1110370392 M * TheSeer xalan-j is needed by util-vserver-0.30.204-0.i386 1110370393 M * TheSeer wtf..? 1110370403 M * TheSeer what does util-vserver need xalan for?? 1110370405 M * IceTi yes? 1110370434 M * Doener IIRC it's needed for building the docs 1110370463 M * TheSeer [root@core master]# rpm -qa | grep xalan 1110370463 M * TheSeer xalan-j-2.4.1-14 1110370469 M * TheSeer hmm okay.. i have it installed ;> 1110371033 N * Bertl_oO Bertl 1110371043 J * FEN_HIN__ ~JFOC@latarius.tkdgroup.com 1110371196 Q * FEN_HIN__ Read error: Connection reset by peer 1110371364 Q * anonymous-coward Read error: Operation timed out 1110371413 Q * FEN_HIN Ping timeout: 480 seconds 1110371650 T * services.oftc.net http://linux-vserver.org/ | latest stable 1.2.10, devel 1.9.5-rc2, ng9.2 -- He who asks a question is a fool for a minute; he who doesn't ask is a fool for a lifetime -- share the gained knowledge on the wiki, and we'll forget about the minute ;) 1110372285 J * FEN_HIN__ ~JFOC@latarius.tkdgroup.com 1110372397 M * Doener Bertl: http://www.13thfloor.at/~doener/vserver/patches/diff-2.6.11.2-vs1.9.5-rc2-proc_mounts_rootfs_fix.diff 1110372423 M * Doener off for lunch now 1110372426 N * Doener Doener|gone 1110372470 N * FEN_HIN__ FEN_HIN 1110372995 N * Doener|gone Doener 1110373137 J * FEN_HIN__ ~JFOC@latarius.tkdgroup.com 1110373547 Q * FEN_HIN Read error: Connection reset by peer 1110373588 N * FEN_HIN__ FEN_HIN 1110374019 Q * DaPhreak Quit: leaving 1110374091 J * DaPhreak ~phreak@lms.rz.uni-greifswald.de 1110374621 Q * FEN_HIN Read error: Connection reset by peer 1110374676 J * FEN_HIN ~JFOC@latarius.tkdgroup.com 1110374790 M * Doener updated the patch, going to test boot that now 1110375318 Q * IceTi Quit: get satisfied! • :: ««« (Gamers.IRC) »»» www.gamersirc.net :: 1110375741 M * Bertl back now ... 1110375753 M * DaCa wb Bertl 1110375871 J * IceTi 125@mw635449.rz.ruhr-uni-bochum.de 1110375888 M * DaPhreak Bertl: ? 1110375892 M * IceTi hi 1110375920 M * IceTi I´ve build a fc2 vserver and I can start it and enter it but I can´t stop it. 1110375920 M * IceTi This error comes or it dont go on (i think it can´t shutdown that interface) But why ??: 1110375920 M * IceTi Loopback Interface herunterfahren: 1110376001 M * erwan_taf you've been answered on the mailing list 1110376028 M * Bertl DaPhreak: hmm? 1110376031 M * IceTi yeyes? 1110376047 M * IceTi i don´t understand that! 1110376060 M * IceTi what do i have to do? 1110376129 M * IceTi oh 1110376139 M * IceTi i have now shutdown network in the vserver 1110376143 Q * Pazzo Quit: Download Gaim: http://gaim.sourceforge.net/ 1110376149 M * IceTi and now its ok 1110376160 M * IceTi but can i still connect to the internet? 1110376235 M * IceTi where stand that the network have to run at startup? 1110376376 M * IceTi ?? 1110376573 Q * FEN_HIN Quit: JFOC Network v15 Professional Edition[FEN_HIN]: [- http://www.jfoc.net -] OFFLINE After 31mins 49secs 1110376615 Q * monrad Quit: Leaving 1110376654 M * Bertl Doener: hmm, is the 'rootfs' check required for vx_check_vfsmount() (well, probably, otherwise you would not have added it) 1110376672 M * Bertl but could you give me a short rationale on that, please? 1110376690 J * Doener_ ~knoppix@p5487EECE.dip.t-dialin.net 1110376721 M * Doener_ anyone good at restoring lvm vgs? 1110376730 M * Bertl hmm, you called? 1110376782 M * IceTi where stand that network start at start up? 1110376813 M * Bertl please rephrase ... 1110377127 M * Bertl Doener_: so how may I help you? 1110377134 M * IceTi my vserver can´t shutdown Loopback Interface 1110377158 M * Bertl well, it is not supposed to shutdown or manipulate any interfaces 1110377162 M * Doener_ i shut down the box and the vg wasn't correctly shutdown (probably i still had a vserver running) 1110377167 M * IceTi but when i sht ot down like that: vserver vs-fc2-2 exec service network stop 1110377231 M * Doener_ after reboot, no vg's were found anymore. atm I'm using Knoppix and its vgscan finds my volume group, but all other tools just scan hdaX and hdbX and complain that no vg was found, which is quite correct as they are on md1 1110377262 M * IceTi talkinf to me? 1110377280 M * Doener_ IceTi, no 1110377304 M * Bertl Doener_: do you have a backup of the vgs? 1110377319 M * Bertl (the lvm backup directory I mean) 1110377323 M * Doener_ data on the vgs, or lvm metadata 1110377336 M * Doener_ ok, yes, should be on md0... sec, checking 1110377352 M * Bertl is the raid marked autostart/detect? 1110377400 M * Bertl what does pvscan list, the md1? 1110377447 M * Doener_ backup: yes (guess/hope i didn't modify the lvm since november ;),raid: yes, pvscan: yes 1110377472 M * Bertl okay, great, after pvscan what does vgscan list? 1110377495 M * Doener_ vg1, i.e. still the same 1110377526 M * Bertl so the vg you're looking for is or is not listed? 1110377543 M * Doener_ is listed, but vgmknodes, vgdisplay etc. don't seem to find it 1110377560 M * Bertl okay, is it listed as active or inactive? 1110377599 M * Doener_ vgscan doesn't tell, vgdisplay doesn't work, so it can't tell you :( 1110377655 M * Bertl try vgchange -a y 1110377677 M * TheSeer http://linux-vserver.org/FedoraCore3_HowTo 1110377681 M * Doener_ doesn't work either 1110377682 M * TheSeer finally... ;-) 1110377706 M * Bertl Doener_: please show me the command and the output 1110377741 M * Bertl TheSeer: yours? 1110377766 M * Bertl obviously, thanks! 1110377769 M * Doener_ http://pastebin.com/251367 1110377801 M * Bertl Doener_: hrm hrm, LANG=C LC_ALL=C ;) 1110377825 M * TheSeer Bertl: yeah.. as promised like ages ago ;> 1110377839 M * Doener_ ah! tried with LANG_ALL=C all the time ;) 1110377843 M * Bertl Doener_: this is lvm2 so you have a config file which describes the 'pattern' where to look for ... 1110377869 M * Doener_ filter = [ "r|/dev/cdrom|" ] 1110377939 M * Bertl filter = [ "a/.*/" ] 1110377946 M * Bertl try that one ... 1110377970 M * Bertl and also 1110377971 M * Bertl md_component_detection = 1 1110378004 M * Doener_ that's set, mds are on hde/hdg 1110378026 M * Bertl okay, is that devfs or udev or none of those? 1110378043 M * Bertl do the md entries exist and is the raid started? 1110378058 M * Doener_ dev entries are there, md0 is even mounted 1110378073 M * Bertl md0 does contain lvm volumes? 1110378079 M * Doener_ no, md1 does 1110378085 M * Doener_ device node for md1 is also there 1110378098 M * Bertl and raid is active and started? 1110378108 M * Doener_ neither udev nor devfs 1110378137 M * Doener_ yes, md1 is also active 1110378203 M * Doener_ still doesn't care about md[01] with the new filter 1110378283 M * Bertl okay, let's try with a device list 1110378298 M * TheSeer darn... way to many typos ;> 1110378318 M * Bertl TheSeer: don't worry ... 1110378331 M * Bertl Doener_: what does /proc/partitions list? 1110378341 M * Bertl is proc mounted? 1110378357 M * Bertl and /proc/devices ? 1110378416 M * Doener_ http://pastebin.com/251373 1110378421 M * TheSeer Bertl: fixed a few already ;) 1110378432 M * TheSeer okay.. i hope i didn't write any crap in there.. 1110378445 M * Doener_ http://pastebin.com/251374 1110378500 M * Bertl okay, /dev/md1 as b 9 1 is verified, yes? 1110378510 M * Doener_ yes 1110378552 Q * IceTi Quit: get satisfied! • :: ««« (Gamers.IRC) »»» www.gamersirc.net :: 1110378570 M * Bertl okay, let's try vgscan -vvv (and please upload that if it's not conclusive) 1110378675 M * Doener_ /dev/md1: lvm2 label detected 1110378675 M * Doener_ Read vg1 metadata (8) from /dev/md1 at 12288 size 1757 1110378712 M * Doener_ Found volume group "vg1" using metadata type lvm2 1110378763 M * Bertl so that's fine, right? 1110378784 M * Bertl now what has lvscan to say? 1110378785 M * Doener_ yep, vgscan always found vg1, but none of the other tools do 1110378830 M * Bertl (again with -vv or -vvv) 1110378878 M * Doener_ http://pastebin.com/251380 1110378888 M * Doener_ erh, wrong paste 1110378907 M * Doener_ hm, doesn't matter, it's the same output 1110378934 M * Bertl ahem lvscan does say the same? 1110378954 M * Doener_ same as the output in the pastebin (from vgdisplay) 1110378970 M * Bertl hda does exist, right? 1110379025 M * Bertl if so, why does opening /dev/hda fail? 1110379048 M * Doener_ no, it should. just hdc/hdd/hde/hdg 1110379060 M * Doener_ hde/hdg are sata disks 1110379076 M * Bertl ahd hda? 1110379123 M * Doener_ no hda here... didn't care to plug the cd-drives to the primary ide channel when i replaced my old pata disks 1110379165 M * Bertl hmm, okay, well, it should be fine, unless your /dev contains those devices ... 1110379194 M * Bertl could you try to cleanup the dev (i.e. cp -va it and remove excessive stuff) 1110379235 M * Bertl well, best would be to mount devfs 1110379240 M * Bertl is it compiled in? 1110379253 M * Doener_ no 1110379358 M * Doener_ argh! 1110379371 M * Doener_ knoppix had a read-only lvm cahce 1110379373 M * Doener_ knoppix had a read-only lvm cache 1110379382 M * Bertl lol 1110379405 M * Bertl that's why I have my custom rescue partition/cd ;) 1110379433 M * Doener_ hmmm.... Unable to make device node for 'vg1-var' 1110379450 M * Bertl ro dev? 1110379462 M * Doener_ ro mapper in /dev .. 1110379643 M * Doener_ ok, could mount them all fine in knoppix, going back to real sys now... thanks Bertl! 1110379645 Q * Doener_ Quit: Verlassend 1110381324 M * Doener now i know what caused the problems :) vgdisplay and friends were dynamically linked against libdevmapper.so.1.00, but that was removed and replaced by libdevmapper.so.1.01 ... 1110381440 M * Doener hm, the updated patch doesn't do what it's supposed to do... 1110381737 M * Doener ah... 1110382244 M * Doener Bertl: updated the patch again... now it actually works :) 1110382250 M * Doener cat /proc/mounts 1110382250 M * Doener rootfs / rootfs rw 0 0 1110382250 M * Doener /dev/root / ext3 rw,noatime 0 0 1110382276 M * Doener with "/dev/root" being actually /dev/vg1/var 1110382341 M * Doener http://www.13thfloor.at/~doener/vserver/patches/diff-2.6.11.2-vs1.9.5-rc2-proc_mounts_rootfs_fix.diff 1110382348 J * shuri sjnesjd@dsl.speedline209.226.electronicbox.net 1110382353 M * shuri helllo 1110382359 M * Doener hi shuri 1110382444 M * shuri hey Doener do you kow how to start CentOS in a vserver 1110382455 M * shuri i get this erreor 1110382457 M * shuri root@primate:~# 1110382465 M * daniel_hozac oh, that error ;) 1110382466 M * shuri usr/local/sbin/vserver: line 795: 22868 Instruction illégale $NICECMD $CHBIND_CMD $SILENT $IPOPT --bcast $IPROOTBCAST $CHCONTEXT_CMD $SILENT $DISCONNECT $CAPS $FLAGS $CTXOPT $HOSTOPT $DOMAINOPT --secure $SAVE_S_CONTEXT_CMD /var/run/vservers/$1.ctx $CAPCHROOT_CMD $CHROOTOPT . $STARTCMD 1110382466 M * shuri root@primate:~# 1110382470 M * Doener that's not an error, that's a prompt ;) 1110382477 M * shuri sorry 1110382479 M * shuri :) 1110382491 M * daniel_hozac hmm, did you install centos for another architecture or something? 1110382512 M * Doener shuri: alpha tools? if so, please start with: vserver --debug start 1110382522 M * shuri no is stable tools 1110382528 M * shuri i will try with alpha.. 1110382548 M * Doener if it's no problem for you... 1110382570 M * Doener a major advantage is the debugging support of the alpha tools... (at least for those trying to debug anything :) 1110382578 M * shuri ok 1110382602 M * shuri no way to do this with the stable 1110382612 M * Doener oh, and it probably doesn't change anything if you stick with a legacy config (debugging wise) 1110382652 M * Doener you could also add -x to the shebang line of the vserver script to get some debug outpt 1110382658 M * Doener s/outpt/output/ 1110382716 M * shuri how to stay with legacy config with alpha? 1110382725 M * shuri compile option? 1110382739 M * Doener it still supports them (by simply using the stable tools ;) 1110382772 M * shuri ok alpha kernel but stale tool 1110382800 M * Doener hm, kernel shouldn't matter... 1110382865 M * shuri ok so i got to use the new sheme of config 1110382886 M * Doener not worth the trouble just to debug that... 1110382906 M * shuri yes 1110382907 M * Doener just open the vserver script with your favorite editor and append -x to the first line 1110383137 M * Doener then try to start the vserver and provide the output 1110383141 M * shuri ok 1110383291 M * Bertl Doener: excellent ... 1110384370 M * shuri usr/local/sbin/vserver: line 1: -x: command not found 1110384409 M * shuri ha set -x 1110384436 M * Doener you should've appended -x not used it as the first line ;) 1110384448 M * Doener should be something like: #!/bin/bash -x 1110384476 M * shuri ok good it work 1110384628 M * shuri i see debug 1110384923 J * monrad ~monrad@x1-6-00-09-6b-3f-ee-63.k138.webspeed.dk 1110385053 M * SiD3WiNDR Doener: err, no, that is an error :p 1110385414 M * Bertl okay, leaving now, back later (3-4 hours) 1110385428 N * Bertl Bertl_oO 1110386746 N * DaPhreak phreak_gone 1110386763 N * phreak_gone phreak_detached 1110387052 M * Doener shuri: solved your problem? 1110388501 M * virtuoso hey guys 1110388521 M * Doener hi virtuoso 1110388712 N * BobR_oO BobR 1110388849 N * BobR BobR_oO 1110392081 J * flock ~restless@l192-117-111-12.broadband.actcom.net.il 1110392391 Q * monrad Quit: Leaving 1110396421 J * monrad ~monrad@x1-6-00-09-6b-3f-ee-63.k138.webspeed.dk 1110398505 J * click click@dsl-static-122-208.aal.tiscali.no 1110399617 J * prae ~prae@sherpadown.net 1110400370 N * Bertl_oO Bertl 1110400380 M * Bertl evening folks! 1110400414 M * Doener wb Bertl! 1110400427 M * Bertl hey Doener! tx! 1110400509 J * DukeGangsta|aw ~uefgangst@p548694A6.dip.t-dialin.net 1110400548 M * prae hi 1110400596 M * DukeGangsta|aw hi 1110400602 M * Bertl evening DukeGangsta|aw! prae! 1110400640 M * prae :) 1110401442 M * Doener Bertl: regarding my bogus(?) comment on the ngnet todo list, how do you trigger the host's interface to go down? 1110401496 M * Bertl hmm, no idea ... 1110401617 M * Bertl http://linux-vserver.org/?action=diff&page=ToDo+List+NGNet&ver2=2&ver1=1 1110401669 M * Bertl (so I guess just ns.mosaix.net knows ;) 1110401688 M * Bertl never observed that, so I guess we can scrap that pretty soon ... 1110401729 M * Bertl uh-oh .. looks like a nap attack here ... ;) 1110401737 M * Doener ah, so i did remember right that there was a question mark, guess i removed that accidently 1110401752 M * Doener happy napping ;) 1110401753 M * Bertl back in a few hours (probably) 1110401760 M * Bertl Doener: thanks! 1110401765 N * Bertl Bertl_zZ 1110402179 J * erwan_ho2 ~erwan@lns-vlq-39f-81-56-133-136.adsl.proxad.net 1110402180 J * erwan_ho ~erwan@lns-vlq-39f-81-56-133-136.adsl.proxad.net 1110402180 Q * erwan_ho2 Quit: 1110402259 J * brc bruce@200165199114.user.veloxzone.com.br 1110402369 M * brc hello 1110402540 M * Doener welcome brc 1110402562 M * brc Is there any CAP i could enable so that i would be able to use bind without recompiling it ? 1110402571 M * brc of course without compromising security 1110402572 M * brc :) 1110402623 M * daniel_hozac CAP_SYS_RESOURCE 1110402624 M * Doener rumours say CAP_SYS_RESSOURCE allows to do so, but that would of course allow to override ressource limits 1110402725 M * brc so that wouldn't be safe. right? 1110402854 J * erwan_ho2 ~erwan@lns-vlq-39f-81-56-133-136.adsl.proxad.net 1110402935 M * daniel_hozac well, obviously you'd let that vserver do a bit too much. 1110402962 Q * erwan_ho Read error: Connection reset by peer 1110403020 J * yarihm ~yarihm@80-218-5-227.dclient.hispeed.ch 1110403251 M * maharaja which protocol does snmp use? 1110403387 M * Doener http://www.isi.edu/in-notes/rfc3417.txt 1110403482 M * maharaja mhm 1110403489 M * maharaja i somehow fail to see the snmp connect in iptables 1110403514 M * Doener probably since udp is connection-less ;) 1110403529 M * maharaja i've got a -j LOG 1110403562 M * maharaja i see an nmap -sU -p 161 ipax.at 1110403569 M * maharaja means udp scan on port 161 1110403586 M * maharaja Mar 9 22:26:05 ipax kernel: IN=eth0 OUT= MAC=00:0e:a6:1b:3b:e3:00:12:79:10:32:00:08:00 SRC=80.109.78.221 DST=213.158.115.2 LEN=53 TOS=0x00 PR 1110403586 M * maharaja EC=0x00 TTL=54 ID=32900 DF PROTO=UDP SPT=1029 DPT=53 LEN=33 1110403594 M * Doener what does your rule look like? 1110403605 M * maharaja iptables -t nat -A PREROUTING -d 213.158.115.2 -j LOG 1110403623 M * maharaja and then i do a "tinysnmpwalk 213.158.115.2 public" 1110403690 M * Doener nat: 1110403690 M * Doener This table is consulted when a packet that creates a new 1110403690 M * Doener connection is encountered 1110403701 M * Doener try with table filter 1110403716 M * Doener chain INPUT 1110403753 M * maharaja i see the ping there :) 1110403756 M * maharaja so i think its allright 1110403761 M * maharaja and i see the portscan too 1110403768 M * maharaja and what i want to do is forward - dnat/snat 1110403792 M * maharaja so i think its correct 1110403796 M * maharaja no drop rule 1110403861 M * maharaja ah 1110403863 M * maharaja other tool 1110403866 M * maharaja -> no i see something 1110403870 M * maharaja maybe they do not use udp/tcp 1110403873 M * maharaja but something strange 1110403911 M * maharaja mhm 1110403912 M * maharaja or not 1110403913 M * maharaja bla 1110403916 M * maharaja damned tool :) 1110403917 M * maharaja +s 1110404021 M * Doener uhm wait... is the snmp server on the same box? 1110404093 M * maharaja no 1110404099 M * maharaja its a remote box 1110404111 M * maharaja switch to be precise 1110404146 M * maharaja the only way i get the snmp information is from a directly attached box 1110404205 M * Doener brb 1110404210 N * Doener Doener|gone 1110404708 Q * erwan_ho2 Quit: Leaving 1110405011 Q * prae Quit: leaving 1110405246 N * Doener|gone Doener 1110405873 M * brc Is it possible to limit the memory per vserver? What about processor? If so, where can i find info about it ? 1110406340 M * Doener 2.4 or 2.6? 1110406363 M * brc 2.6 1110406507 M * Doener memory can be limited through rlimits (see flower page). cpu usage can be limited using the token bucket scheduler 1110406533 M * Doener http://linux-vserver.org/Linux-VServer-Paper-06 section 06.3 1110406577 M * brc Nice!! Thanks a lot doener. 1110407055 Q * monrad Ping timeout: 480 seconds 1110407176 M * jd86 ok i have fedora vserver how i make it so it doesnt crap all over the place when stopping it (which init script in where does it?) 1110407258 Q * nox Quit: I shouldn't really be here - dircproxy 1.0.5 1110407292 M * daniel_hozac rm -f /etc/rc.d/rc0.d/S01halt /etc/rc.d/rc6.d/S01reboot 1110407504 Q * yarihm Quit: Leaving 1110407525 M * jd86 yay 1110407538 M * jd86 how do i do multiple ips per vserver 1110407545 M * jd86 so they have like a range of 10 ips 1110407589 M * daniel_hozac alpha util-vserver? 1110407730 M * jd86 yea 1110407769 M * daniel_hozac just copy the interfaces directory 10 times and change the ip file in each. 1110407862 M * jd86 copy to what? 1110407873 M * daniel_hozac another directory. 1110407887 M * jd86 call it anything? 1110407893 M * daniel_hozac cp -r /etc/vservers//interfaces/0 /etc/vservers//interfaces/1 1110407899 M * jd86 oooh 1110407900 M * jd86 make ssens 1110408470 M * DukeGangsta|aw multiple IPs: 1110408471 M * DukeGangsta|aw http://www.solucorp.qc.ca/miscprj/s_context.hc?s1=4&s2=3&s3=0&s4=0&full=0&prjstate=1&nodoc=0 1110408722 M * jd86 thank you good sir. 1110409023 M * Doener that's for the old config style 1110409570 M * Doener off for today... g'night folks 1110409573 N * Doener Doener_zZz 1110409707 Q * Seraph Read error: Operation timed out 1110409963 J * Seraph kk@projects.verfaction.de 1110412124 Q * shuri Quit: