Page 1 of 3 123 LastLast
Results 1 to 25 of 58
  1. #1
    俺はまんこが大好きなんだよ baseline bum's Avatar
    Post Count
    97,883
    NBA Team
    San Antonio Spurs
    College
    UCLA Bruins
    I'd like to make a thread with all kinds of computer tips. There are a couple of conditions:

    1) No posting crap with spyware in it
    2) Nothing illegal please
    3) No shareware or limited-functionality software please

    I'd like anyone here to add any tips you find particularly useful:

    Now, on to business:

    1) Tip #1: Download an entire website to your hard drive

    Have you ever wanted to get every pic off your favorite porn.... err, porn site

    Tool needed: wget (one of my favorite UNIX tools)
    Windows users: http://gnuwin32.sourceforge.net/downlinks/wget.php
    You can either:
    a) Place the wget.exe file in your C:\Windows\system32 folder
    - or -
    b) put it in another folder, and add the folder to your PATH environment variable

    If you use a UNIX-based OS, I assume you already know how to use this tool, and you most likely already have this installed.

    Say you want to download everything from http://www.somesite.com

    (for Windows users) open up cmd.exe, and assume you want to save this to the folder C:\somewebsite, assuming you've created the folder.

    To open cmd.exe, hold the windows key and press r, type cmd in the open box, and hit enter.

    From cmd.exe:
    cd C:\somewebsite
    wget -r -p -U Mozilla http://www.somesite.com


    The -r tells wget to download recursively (i.e., all files in the specified folder of the website, including its subfolders)

    -p tells wget to get all embedded images, stylesheets, flash files, etc in a webpage.

    -U Mozilla tells the website you are using the Mozilla browser to access it, so that it thinks your download request is from a web browser, and not a download manager.

    ----------------------------------------------------------------------

    Note, you might get your IP blocked if you're constantly downloading massive amounts of info from a site. After all, all that bandwidth costs them a lot of money, and you can be sure a large site will block you if you're taking gigs from it in a short time period.

    To get around this, set a wait time between getting individual files, say 20 seconds, and a maximum download rate, say 40 kbps, while downloading the site.

    wget --wait=20 --limit-rate=40K -r -p -U Mozilla http://www.somesite.com

    ---------------------------------------------------------------------------
    This is a very trustworthy program, as it's written by GNU, the project responsible for (very) much of what we now know as Linux. Almost all of the major utilities in Linux is GNU software, as is most of the core (aside from the kernel). Their programs are safe to use, as long as you get them from GNU's website, or any other trusted place (such as gentoo.org, openbsd.org, etc.).

    ---------------------------------------------------------------------------

    Also, this is not a way to bypass a password for a site, or anything shady like that.

  2. #2
    Blonde Yet Smart 2Blonde's Avatar
    Location
    San Antonio/Canyon Lake/Spring Branch
    Post Count
    3,377
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    I have a question which I will eventually get to... We are moving into our new home next week and currently I have our home network of 3 PCs set up with mine be the central hub. I use Network Magic since it came with my D-Link Extreme-G Wireless Router. I love this system because it's easy to use and they seem to respond to customer input with upgrades quite often. But my husband just ordered me a new computer as a present for building our home. He bought me a Dell La ude D820 Laptop with a docking station.
    My question is, can my laptop still be the hub of the system since it may not always be docked in the station? Currently I have a 240ghz ext hard drive plugged in to my Gateway computer that we use to download all of our digital photos onto. Or will I have to set up my daughter's computer to be the hub. (This idea scares the out of me). There is no telling what functions she will lock us out of if she gets pissed off.
    So just tell there's a way I can continue to be the queen of my computer castle and all will be right with the word.

    2Blonde

  3. #3
    I cannot grok its fullnes leemajors's Avatar
    Post Count
    24,176
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    i'm not sure if i understand you correctly, but if you have a router you shouldn't need your computer to host the network. cable modem should plug directly into the router, then the connection is distributed from there. anyone who knows the user name and pw to log into the router can change the connection settings. there are others, such as bum who could explain this a lot better than i.

  4. #4
    Veteran exstatic's Avatar
    Post Count
    45,483
    NBA Team
    San Antonio Spurs
    Yeah, Network Magic comes with D-Link routers. Believe it or not, the router is the "host" of your network. Make sure you are encrypting and try not to broadcast your SSID if possible.

  5. #5
    Veteran
    Post Count
    15,842
    NBA Team
    San Antonio Spurs
    lm is correct. the router is the connection point for all the PCs, both in terms of connectivity (wired or wireless), traffic routing, and services (DHCP, firewall).

    In what sense do you think your, or any, PC is a "central hub"?

    If the network is setup so that turning off one PC off disables the other PCs, something is terribly wrong.

    A huge mistake made by many home users with wireless routers is to run the router with no access security, so the neighbors can steal access to Internet through your wireless router. And if you're depending on the firewall in the router to protect your PCs (bad practice), then your neighbors' pimply kids can attack your PCs directly.

  6. #6
    Believe. Xolotl's Avatar
    Location
    San Antonio
    Post Count
    1,149
    NBA Team
    San Antonio Spurs
    I have a network question too..I have a Belkin Wireless Router hooked up to my compter, and have another desktop in another room that connects wirelessly. However we leave that computer on sometimes and then it wont be able to connect to the network.
    For example, my brother was using the computer and the internet worked fine, but then an hour later I had to check something online and it couldn't connect to the network. I had to reset the connection, if that doesnt work I have to restart the computer and reset again...Is my network just timing out over there after a certain amount of time? Is there any way to fix so that it stays connected ALL the time?

  7. #7
    Live by what you Speak. DarkReign's Avatar
    Location
    Washington Twp, MI
    Post Count
    10,571
    NBA Team
    Detroit Pistons
    I have a network question too..I have a Belkin Wireless Router hooked up to my compter, and have another desktop in another room that connects wirelessly. However we leave that computer on sometimes and then it wont be able to connect to the network.
    For example, my brother was using the computer and the internet worked fine, but then an hour later I had to check something online and it couldn't connect to the network. I had to reset the connection, if that doesnt work I have to restart the computer and reset again...
    Start > Control Panel > Network Connections > <insert your connection here, most likely called "Local Area Connection">

    Right click it, goto disable....wait for it to grey out...right click again, goto Enable.....


    done.

    That resets your connection to the router without having to actually restart.

    Is my network just timing out over there after a certain amount of time? Is there any way to fix so that it stays connected ALL the time?
    Theres nothing you can do about it if you leave the computer on all the time. The router stops transmission as almost a "time out" feature. Its actually good that way.

  8. #8
    Believe. CubanMustGo's Avatar
    Location
    Back in the SATX, 43 years later
    Post Count
    10,567
    NBA Team
    San Antonio Spurs
    College
    Trinity Tigers
    sounds like you could be having a conflict with other wireless networks. When you scan for available networks, is yours the only one that shows up? If not, and if one of the other nets shares the same channel, you could be bumping against that. You might try changing the broadcast channel on the router to see if that might help.

    Happens to me all the time because the houses are so close together that I can generally see 4 or 5 at any one time. The guy next door and I both are on channel 6 (or 8, can't remember for sure) - can't change because that's the only channel I can use with strong encryption.

  9. #9
    Believe. Xolotl's Avatar
    Location
    San Antonio
    Post Count
    1,149
    NBA Team
    San Antonio Spurs
    Thanks Cuban I'm trying it right now, I think you might be right because I usually see about 4 of them at the same time. So if I change the channel does that mean none of the others will show up unless they're on the same channel?

  10. #10
    Veteran to21's Avatar
    Post Count
    3,158
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    Does this happen when you walk away from the computer for a while?

    If so, try this......

    Right click My Network Places-->Properties-->Right click wireless network conntection-->Properties-->Configure-->Power Management-->uncheck allow computer to turn off this device to save power.

    Jus something to try, all the other advice is good too.

  11. #11
    NBA = RIGGED thispego's Avatar
    Location
    Lubbock, TX
    Post Count
    12,596
    NBA Team
    San Antonio Spurs
    Anyone here use RoboForm? that s baaaad

  12. #12
    Damn You Commies T Park's Avatar
    Post Count
    55,054
    NBA Team
    San Antonio Spurs
    how do i fix Vista from blue screening.

    Im about to throw this Toshiba in the dumpster and get a loaded dell with XP.

  13. #13
    I cannot grok its fullnes leemajors's Avatar
    Post Count
    24,176
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    why don't you just format the toshiba with XP.

  14. #14
    SpursTalk Sneakerhead KEDA's Avatar
    Location
    San Antonio
    Post Count
    4,916
    NBA Team
    San Antonio Spurs
    why don't you just format the toshiba with XP.

    will void the warranty


    I wish it wouldn't but all the manufacturers are being es about Vista

    vista sucks

  15. #15
    I cannot grok its fullnes leemajors's Avatar
    Post Count
    24,176
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    will void the warranty


    I wish it wouldn't but all the manufacturers are being es about Vista

    vista sucks
    why would formatting to another os void the hardware warranty? that seems really odd. i imagine if you did have a problem you could format it back to vista.

  16. #16
    Spur-taaaa TDMVPDPOY's Avatar
    Post Count
    41,384
    NBA Team
    San Antonio Spurs
    why would formatting to another os void the hardware warranty? that seems really odd. i imagine if you did have a problem you could format it back to vista.
    im pretty sure ur laptop came with a restore CD.....

  17. #17
    Damn You Commies T Park's Avatar
    Post Count
    55,054
    NBA Team
    San Antonio Spurs
    why don't you just format the toshiba with XP.
    how hard is that to do?

  18. #18
    W4A1 143 43CK? Nbadan's Avatar
    Post Count
    32,408
    NBA Team
    San Antonio Spurs
    Nothing illegal please
    Damn. That pretty much eliminates all my suggestions.


  19. #19
    Blonde Yet Smart 2Blonde's Avatar
    Location
    San Antonio/Canyon Lake/Spring Branch
    Post Count
    3,377
    NBA Team
    San Antonio Spurs
    College
    Texas Longhorns
    --------------------------------------------------------------------------------

    Yeah, Network Magic comes with D-Link routers. Believe it or not, the router is the "host" of your network. Make sure you are encrypting and try not to broadcast your SSID if possible.
    lm is correct. the router is the connection point for all the PCs, both in terms of connectivity (wired or wireless), traffic routing, and services (DHCP, firewall).

    In what sense do you think your, or any, PC is a "central hub"?

    If the network is setup so that turning off one PC off disables the other PCs, something is terribly wrong.

    A huge mistake made by many home users with wireless routers is to run the router with no access security, so the neighbors can steal access to Internet through your wireless router. And if you're depending on the firewall in the router to protect your PCs (bad practice), then your neighbors' pimply kids can attack your PCs directly.
    A little better explanation is that my computer is the central hub of Network Magic. And I also run all the sharing of files through my computer. We download all the pics into the ext hard drive that's attached to my computer. After all the editing is done the pics make it back to my hard drive for filing. From there some of them make it on to our shared files that I maintain as "shared/for public viewing on the internet and others are for shared/password protected viewing" and some don't make it on to the internet at all. They are either just shared in our home network offline or not shared at all. But for these functions of Network Magic to work, I have to have my hard drive turned on. My question is... using a laptop, will it have to be docked? and can the ext hard drive be plugged into the docking station and be running when I have the laptop away from the office?

    As for ecrypting my router and not broadcasting my SSID... That is the very first thing I learned how to do when I set up up my system. THe second thing I learned how to do is check and see what my neighbors were up to. I was surprised to learn we were the first ones on the block to encrypt our stuff. Well that was until my super secret service agent moved in. Did you know that they're not even allowed to use high speed internet service. Dial-up only. Less chance of hackers that way apparently.

  20. #20
    bandwagoner fans suck ducks's Avatar
    Post Count
    74,377
    NBA Team
    San Antonio Spurs
    will void the warranty


    I wish it wouldn't but all the manufacturers are being es about Vista

    vista sucks
    sell the computer if you hate vista
    go online to stores like tiger direct and buy a refurmised xp laptop

  21. #21
    Veteran
    Post Count
    15,842
    NBA Team
    San Antonio Spurs
    "can the ext hard drive be plugged into the docking station and be running when I have the laptop away from the office?"

    No, you need PC and its OS to run the file and print server function.

    If you want a always-on file server as central file storage and print server, use an old PC running Windows 2000, and plug in you external disk drive there. It does NOT have to be powerful nor have tons of apps on it.

    Running NetBIOS on your LAN to run MS Networking means you absolutely must block access from Internet to the NetBIOS ports 137-139 of all you PCs.

    netbios-ns 137/tcp #NETBIOS Name Service
    netbios-ns 137/udp #NETBIOS Name Service
    netbios-dgm 138/tcp #NETBIOS Datagram Service
    netbios-dgm 138/udp #NETBIOS Datagram Service
    netbios-ssn 139/tcp #NETBIOS Session Service
    netbios-ssn 139/udp #NETBIOS Session Service

    ... along with tons of others ports to be blocked.
    Last edited by boutons_; 03-31-2007 at 02:35 PM.

  22. #22
    Gone Crazy, be back later CrazyOne's Avatar
    Post Count
    4,522
    NBA Team
    San Antonio Spurs
    Dang, I may be screwed. I was putting in a new second hard drive, and seemingly messed up the cable on my primary. So I got a replacement cable (ATA 133) but I plugged the cable backwards on the MB. By the time I figured out what I had done, it seems that my hard drive won't boot now, in fact the system doesn't even recognize it.

    Now, did I just fry my hard drive, or did I merely mess up the IDE connection on the MB? Unfortunately, I'm over at a friend's house and won't get back to my computer for a while, but I'm trying to find out if I merely have some tech issues to work through or did I just wipe my unbackedup source of everything that is good?

  23. #23
    Veteran
    Post Count
    15,842
    NBA Team
    San Antonio Spurs
    One of my clients bought a 1U box with ATA133 cable reversed end to end. When we found that and connected the cable correctly, the drive was ok.

    ATA133 cables have a disk-end and controller-end. are your cable ends in the correct connectors?

  24. #24
    Believe.
    Post Count
    1,418
    NBA Team
    San Antonio Spurs
    links removed
    Last edited by Re-Animator; 04-04-2007 at 12:52 AM.

  25. #25
    I can live with it JoeChalupa's Avatar
    Location
    Converse, TX
    Post Count
    21,547
    NBA Team
    San Antonio Spurs
    College
    Ohio State Buckeyes
    As for ecrypting my router and not broadcasting my SSID... That is the very first thing I learned how to do when I set up up my system. THe
    I just got DSL with a wireless router. How do I encrypt my stuff and block my SSID?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •