Page 2 of 4 FirstFirst 1234 LastLast
Results 17 to 32 of 62

Thread: Automatic Backup software for ubuntu server?

  1. #17
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Automatic Backup software for ubuntu server?

    Because SMB servers can't push/pull files to and from a client. And it removes the need for any special configuration on the client beyond sharing a directory.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  2. #18
    blueball
    Guest

    Re: Automatic Backup software for ubuntu server?

    But clients can push to the server surely? It just seems like an awful lot of work that could be avoided.

  3. #19
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Automatic Backup software for ubuntu server?

    Quote Originally Posted by blueball View Post
    But clients can push to the server surely? It just seems like an awful lot of work that could be avoided.
    This saves work by not having to spend a lot of time on each client installing a bunch of rubbish and configuring each one, and Linux utilities are just more powerful anyway.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  4. #20
    Chillie in here j.o.s.h.1408's Avatar
    Join Date
    Dec 2005
    Location
    a place called home
    Posts
    8,545
    Thanks
    757
    Thanked
    256 times in 193 posts
    • j.o.s.h.1408's system
      • Motherboard:
      • ASUS P6T Delux
      • CPU:
      • Intel core i7 920 @ 3ghz
      • Memory:
      • 3GB DDR RAM
      • Storage:
      • 1TB Samsung F1, 500GB Seagate baracuda + 320gb Seagate PATA +150GB WD PATA
      • Graphics card(s):
      • EVGA 480GTX SC edition
      • PSU:
      • Seasonic M12 600W Module PSU FTW
      • Case:
      • Lian Li PC-A7010B (the rolls royce of pc cases)
      • Operating System:
      • vista ultimate edition and windows xp
      • Monitor(s):
      • 22inch 2005FPW dell monitor
      • Internet:
      • 24mb BE There Broadband

    Re: Automatic Backup software for ubuntu server?

    quality thanks man iwill try this on the weekend or when my server decided to show itself to the world again as at the moment cant access it remotely. seems like my router dynamicaly changed its local IP again even though i got it setup using a static ip for that ubuntu pc.

    anyways i will try this later and if i have any issues i will let you guys know.

  5. #21
    Senior Member watercooled's Avatar
    Join Date
    Jan 2009
    Posts
    11,478
    Thanks
    1,541
    Thanked
    1,029 times in 872 posts

    Re: Automatic Backup software for ubuntu server?

    You mean you have a static DHCP reservation? It would probably be more reliable to set a static IP on the server itself.

  6. #22
    Chillie in here j.o.s.h.1408's Avatar
    Join Date
    Dec 2005
    Location
    a place called home
    Posts
    8,545
    Thanks
    757
    Thanked
    256 times in 193 posts
    • j.o.s.h.1408's system
      • Motherboard:
      • ASUS P6T Delux
      • CPU:
      • Intel core i7 920 @ 3ghz
      • Memory:
      • 3GB DDR RAM
      • Storage:
      • 1TB Samsung F1, 500GB Seagate baracuda + 320gb Seagate PATA +150GB WD PATA
      • Graphics card(s):
      • EVGA 480GTX SC edition
      • PSU:
      • Seasonic M12 600W Module PSU FTW
      • Case:
      • Lian Li PC-A7010B (the rolls royce of pc cases)
      • Operating System:
      • vista ultimate edition and windows xp
      • Monitor(s):
      • 22inch 2005FPW dell monitor
      • Internet:
      • 24mb BE There Broadband

    Re: Automatic Backup software for ubuntu server?

    Yea i have a static DHCP reservation. Its on a netgear DG834GT. i setup a ip reserved on my ubuntu. if there is a better way to do it. how?

  7. #23
    Senior Member watercooled's Avatar
    Join Date
    Jan 2009
    Posts
    11,478
    Thanks
    1,541
    Thanked
    1,029 times in 872 posts

    Re: Automatic Backup software for ubuntu server?

    Edit /etc/network/interfaces and replace:
    allow-hotplug eth0 inet dhcp
    With:
    auto eth0
    iface eth0 inet static
    address 192.168.0.50
    netmask 255.255.255.0
    network 192.168.0.0
    broadcast 192.168.0.255
    gateway 192.168.0.1
    Changing any addresses as appropriate, and replace eth0 with your adapter (likely eth0 if you only have 1 adapter).

    Then type
    /etc/init.d/networking restart
    to apply the settings without needing to reboot (note this will terminate any active connections).
    Last edited by watercooled; 09-04-2011 at 12:01 AM. Reason: Correction

  8. #24
    Chillie in here j.o.s.h.1408's Avatar
    Join Date
    Dec 2005
    Location
    a place called home
    Posts
    8,545
    Thanks
    757
    Thanked
    256 times in 193 posts
    • j.o.s.h.1408's system
      • Motherboard:
      • ASUS P6T Delux
      • CPU:
      • Intel core i7 920 @ 3ghz
      • Memory:
      • 3GB DDR RAM
      • Storage:
      • 1TB Samsung F1, 500GB Seagate baracuda + 320gb Seagate PATA +150GB WD PATA
      • Graphics card(s):
      • EVGA 480GTX SC edition
      • PSU:
      • Seasonic M12 600W Module PSU FTW
      • Case:
      • Lian Li PC-A7010B (the rolls royce of pc cases)
      • Operating System:
      • vista ultimate edition and windows xp
      • Monitor(s):
      • 22inch 2005FPW dell monitor
      • Internet:
      • 24mb BE There Broadband

    Re: Automatic Backup software for ubuntu server?

    cheers. where can i get the netmask, network, broadcast and gateway settings?

  9. #25
    Splash
    Guest

    Re: Automatic Backup software for ubuntu server?

    Quote Originally Posted by j.o.s.h.1408 View Post
    cheers. where can i get the netmask, network, broadcast and gateway settings?
    run ipconfig from your main PC, that'll give you the netmask and gateway. Unless you've been tinkering they'll be as Watercooled said, though - leaving you to input a static address for your server.

  10. #26
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Automatic Backup software for ubuntu server?

    Quote Originally Posted by j.o.s.h.1408 View Post
    cheers. where can i get the netmask, network, broadcast and gateway settings?
    The netmask is whatever is set for your local sub-network, probably 255.255.255.0, most consumer routers use it, network address is the first address of your network, probably 192.168.0.0 with netgear defaults, broadcast is the last address of your network, probably 192.168.0.255 for netgear routers, and the gateway is just the IP address of the router, probably 192.168.0.1.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  11. #27
    Chillie in here j.o.s.h.1408's Avatar
    Join Date
    Dec 2005
    Location
    a place called home
    Posts
    8,545
    Thanks
    757
    Thanked
    256 times in 193 posts
    • j.o.s.h.1408's system
      • Motherboard:
      • ASUS P6T Delux
      • CPU:
      • Intel core i7 920 @ 3ghz
      • Memory:
      • 3GB DDR RAM
      • Storage:
      • 1TB Samsung F1, 500GB Seagate baracuda + 320gb Seagate PATA +150GB WD PATA
      • Graphics card(s):
      • EVGA 480GTX SC edition
      • PSU:
      • Seasonic M12 600W Module PSU FTW
      • Case:
      • Lian Li PC-A7010B (the rolls royce of pc cases)
      • Operating System:
      • vista ultimate edition and windows xp
      • Monitor(s):
      • 22inch 2005FPW dell monitor
      • Internet:
      • 24mb BE There Broadband

    Re: Automatic Backup software for ubuntu server?

    So which one do i change to setup the local static ip address of say 192.168.5 ?

  12. #28
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Automatic Backup software for ubuntu server?

    Code:
    auto eth0 inet static
        address 192.168.0.5 <-- this is the variable for the NIC's IP
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  13. #29
    Senior Member watercooled's Avatar
    Join Date
    Jan 2009
    Posts
    11,478
    Thanks
    1,541
    Thanked
    1,029 times in 872 posts

    Re: Automatic Backup software for ubuntu server?

    Yeah, what I provided should be correct for the majority of home networks but some routers will use 192.168.1.0 or something, i.e a different third octet but I've not seen a home router that doesn't use a /24 (255.255.255.0) subnet mask, so it's safe to assume that's correct.

    For example, if your router hands out 192.168.1.x addresses, then you would use:
    network 192.168.1.0
    broadcast 192.168.1.255
    gateway - this is your router's IP address which would be 192.168.1.x (likely 192.168.1.1) in this case.

    Basically, you can usually take an educated guess of all of the above knowing just the router's login IP on a home router.

    Also, you should ideally pick a static IP outside of the DHCP pool to avoid IP collisions on the network, or modify the DHCP pool on the router if you want to keep the same IP for the server.

    IMO setting static IPs for any permanent stuff makes things a lot easier, but leave DHCP enabled with a small pool of addresses for anything else.

  14. #30
    Chillie in here j.o.s.h.1408's Avatar
    Join Date
    Dec 2005
    Location
    a place called home
    Posts
    8,545
    Thanks
    757
    Thanked
    256 times in 193 posts
    • j.o.s.h.1408's system
      • Motherboard:
      • ASUS P6T Delux
      • CPU:
      • Intel core i7 920 @ 3ghz
      • Memory:
      • 3GB DDR RAM
      • Storage:
      • 1TB Samsung F1, 500GB Seagate baracuda + 320gb Seagate PATA +150GB WD PATA
      • Graphics card(s):
      • EVGA 480GTX SC edition
      • PSU:
      • Seasonic M12 600W Module PSU FTW
      • Case:
      • Lian Li PC-A7010B (the rolls royce of pc cases)
      • Operating System:
      • vista ultimate edition and windows xp
      • Monitor(s):
      • 22inch 2005FPW dell monitor
      • Internet:
      • 24mb BE There Broadband

    Re: Automatic Backup software for ubuntu server?

    ahh ok so dhcp should be from say 192.168.0.5 and any static devices i want i will add it manually from 192.168.0.2 > 192.168.0.4

  15. #31
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Automatic Backup software for ubuntu server?

    ISC's DHCP static IP assignment is exceptionally reliable, it's just a fair bit beyond what josh needs.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  16. #32
    Senior Member watercooled's Avatar
    Join Date
    Jan 2009
    Posts
    11,478
    Thanks
    1,541
    Thanked
    1,029 times in 872 posts

    Re: Automatic Backup software for ubuntu server?

    Quote Originally Posted by j.o.s.h.1408 View Post
    ahh ok so dhcp should be from say 192.168.0.5 and any static devices i want i will add it manually from 192.168.0.2 > 192.168.0.4
    Yeah exactly.

Page 2 of 4 FirstFirst 1234 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Best Linux CLI or GUI based Backup Software?
    By Tomahawk in forum Software
    Replies: 4
    Last Post: 11-02-2010, 06:14 AM
  2. Backup software for 2003/2008?
    By Barry in forum Software
    Replies: 15
    Last Post: 14-03-2009, 07:14 PM
  3. Which backup software
    By bogart in forum Software
    Replies: 14
    Last Post: 23-10-2008, 10:00 PM
  4. Simple Backup software required
    By pickers in forum Software
    Replies: 4
    Last Post: 14-03-2005, 08:25 AM
  5. Backup software
    By Shad in forum Software
    Replies: 11
    Last Post: 30-07-2003, 02:56 PM

Posting Permissions

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