Berkeley CSUA MOTD:Entry 18117
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/05/27 [General] UID:1000 Activity:popular
5/27    

2000/4/26-28 [Computer/SW/Unix] UID:18117 Activity:moderate
4/25    What's the easiest way to copy a bunch of files in deep trees Linux
        to fbsd while still retaining all the permissions and stuff?
        \_ man tar
           \_ i really really hate people like you.
                \_ why? tar is the answer...
                \_ What is the meaning of life?  G+C+H+U+J.
        \_ what are you doing that for?  you should be copying *all* files off
           fbsd machines *to* Linux machines.  In fact, you're better off
           just wiping those machines and starting again because you don't
           want the purity of your Linux box corrupted by the impure fbsd
           created files!  There's a HOW-TO or a FAQ or something I read once
           that said fbsd is yucky and Linux is cool and everything should
           be Linux everywhere and warned about fbsd tainting Linux!
           \_ "User Friendly" just spent three weeks doing a series of comics
              on *this very topic*.  It was hilarious!
                \_ Cool!  That means I'm fit to write the same swill in under
                   5 minutes/day that the UF guy takes to do his strip!  *AND*
                   geeks like you will actually *pay* me to do it!
        \_ assuming gnu tar:
           linux% tar -cf - file... \
             | ssh bsd /bin/sh -c "\"(cd dstdir && tar -xpvf -)\""
           will copy files (or dirs) to dstdir.  note stupidity of ssh
           arg handling.
           \_ Note over complexity of suggestion.  Instead:
              linux$ tar cf - dir1 file2 dir3 file4 ... \
              | ssh bsd tar -C dstdir -xvpf -
              Add a -C right after ssh if your net connection sucks or
              you have CPU to burn.   --dbushong
              \_ or if you wanna get more ghetto than that..
                 source% tar -cf archive.tar sourcedir ...
                 (FTP or transfer it somehow to dest machine)
                 dest% tar -xvpf archive.tar
                 \_ no, no, no.  it's
                    tar cf - dir1 .... | mail myself@othermachine;
                    telnet othermachine

                    ssh othermachine
                    pine
                    q
                    inc
                    show
2025/05/27 [General] UID:1000 Activity:popular
5/27    

You may also be interested in these entries...
2009/4/22-28 [Computer/SW/Security] UID:52894 Activity:nil
4/22    ok, here's a little networking puzzler. I haven't been able to access
        youtube for a couple weeks. Couldn't figure out why. Happened on all
        browsers. traceroute did weird stuff and then timed out. Finally I
        got so frustrated I setup firefox to ssh tunnel through soda.csua,
        which worked great. Then, I kill the ssh proc, quit FF, and now,
        I can access youtube just fine from any browser. wtf? any
	...
2008/8/5-10 [Computer/Networking] UID:50788 Activity:nil
8/5     It looks like my company has started blocking HTTPS tunneling.
        I used to do this by tunneling SSH through the HTTP/HTTPS proxy
        server, but this seems to have stopped working. Does anyone know
        how the implementation of tunneling detection works, and whether
        there are widely available implementations? We run a bunch of MS
        stuff, so I imagine we're running an MS proxy server or something.
	...
2006/7/20-22 [Computer/SW/Mail] UID:43747 Activity:low
7/20    How can I get IMAP over SSL to work (I'm using Mail.app)?
        I've set the port to 465, checked SSL, set auth to Password,
        and entered my username and password. I don't get an error but my
        messages don't get delivered. TIA.
        \_ derrr, corrected, I meant SMTP (outbound).
        \_ 993/tcp  open  imaps
	...
2006/4/18-20 [Computer/SW/Security, Computer/SW/Unix] UID:42775 Activity:moderate
4/18    Some thoughts about securing a machine.  Feel free to add your
        expert opinions. --ricky
        * Securing a machine that allows interactive logins by users
          is _very_ hard.
        * Reduce suid binary to absolute bare minimum.
        * Perform automatic _remote_ checksums from a machine that is
	...
2006/4/11 [Computer/SW/Unix] UID:42722 Activity:nil
4/11    telnet: connect to address ::1: Connection refused
        telnet: connect to address 127.0.0.1: Connection refused
        telnet: Unable to connect to remote host
        Trying ::1...
        Trying 127.0.0.1...
        (from soda)
	...
2005/12/20-22 [Computer/SW/Unix, Computer/SW/OS/OsX] UID:41097 Activity:nil
12/20   I'm trying to determine the cause of an curious behavior: When
        I login to a Linux box from my Mac (rxvt in X11), there is
        some lag on the text output during the printing of multiple
        lines of output. When I login to a FreeBSD box from my Mac,
        there is no lag. Curiously, when I login to either the FreeBSD
        box or the Linux box from my Linux laptop, there is no lag
	...
2005/12/11-14 [Computer/SW/Editors/Emacs, Computer/SW/WWW/Browsers] UID:40964 Activity:kinda low
12/11   Since the SSH change, I've been getting the following error
        message in Outlook Express:  "The certificate's CN name does not
        match the passed value".  How can I get rid of this message?  I'm
        guessing it has to do with the certificate I'm using.  I got it from:
        <DEAD>soda.csua.berkeley.edu:995<DEAD>  It's called "localhost".  Do I
        need to use a new POP server?  Right now I'm using
	...
2005/12/7-9 [Computer/SW/Unix] UID:40898 Activity:low
12/7    After I start a background job from tcsh in an xterm, I try to exit
        the shell.  But it stays around until the background job exits.  Is
        there a way to tell the shell not to wait for the background job to
        finish?  Thx.
        \_ Yes.
           \_ How?
	...
2005/12/7-9 [Computer/SW/Mail, Computer/SW/Unix] UID:40899 Activity:nil
12/7    So what are the correct SMTP settings for soda now? I've been
        using port 465 + SSL + password authentication and it's stopped
        working since the reboot.
        \_ I just mailed myself using port 25 + SSL + password.
           \_ % telnet http://csua.berkeley.edu 25
              Trying 128.32.112.233...
	...
2005/9/6-8 [Computer/SW/Security, Computer/SW/Unix] UID:39525 Activity:nil
9/7     Is there a way to change passwords on windows from the cmd line?
        I only have a telnet session... Thx.
        \_ Your google fu is weak.
           http://support.microsoft.com/?kbid=149427    -John
	...