similar to: Yum repository for bacula for CentOS 5?

Displaying 20 results from an estimated 5000 matches similar to: "Yum repository for bacula for CentOS 5?"

2008 Aug 20
6
Best way to migrate a server?
I was just wondering what recommendations you have on migrating a CentOS 5 install between servers? I've done similar in the past by setting up a minimal install in the new server, use tar to copy over the old install and reboot. I was thinking of rsync this time. Is that an acceptable thing to do or have I missed something important? thanks -------------- next part -------------- An
2008 Jul 17
4
Samba permissions problem
Hi all, I have a permissions problem with a samba share which I really can't fathom out. I'm trying to create a fully group writable share. Easy or so I thought. As you can see from my config I am trying all the options to set files group writable, however when I create a file from the client I'm always getting the mode 0644. Does anyone have a clue why? Thanks! client:
2009 Jan 23
10
Completeley disabling SELinux?
Hi all, I've set SELinux to disabled using the security and firewall widget but I'm still getting a lot of messages in Logwatch.... NULL security context for user, but SELinux in permissive mode, continuing () So it looks like SELinux is still operating. Can anyone tell me how to turn it off completely? It's my development server under my desk so I reallly don't care
2009 Jan 08
2
Hierarchial storage management or automated archival to tape
Hi list! While regular backup solutions like amanda or bacula are very good at their job, ie keeping point2point copies of the files currently on disk, I find them less suited for archiving - having unused files move to tape in duplo and stay there until requested. I've even read of multi-tier solutions - move to slower disks after a week and further on to tape after a month. Does anyone
2010 Sep 16
6
Can anyone suggest a decent backup system?
Hi all, We have a bit of a problem with backups. We've been using bacula to tape and now trying to disk but it's a complete nightmare as regards tape management. The backup to file storage went ok for ages and now is stuck 'waiting for max storage jobs' which is odd as that's set to 20 and it's the only backup running. That's totally typical of bacula. Can anyone
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should be data.frame. Kevin On 05/04/2018 08:18 AM, Bill Poling wrote: > Good morning. > > Novice usR. Here. > > I am following this string, among many, learning as I go. > > Quick question please? > > I thought that perhaps ata.frame was part of the zoo pkg, b/c when I > searched it came up in
2018 May 04
2
Converting a list to a data frame
Good morning. Novice usR. Here. I am following this string, among many, learning as I go. Quick question please? I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help? However, evidently not or I am not using it properly. Please advise, thank you. x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind,
2009 Jun 29
2
External USB Drive partitioning, formatting and configuring Bacula server
Thanks for your help Sean, did all the steps you mentioned. One thing I don't understand, when partitions are created, why does Linux number it awkwardly? For example, I created 1 Primary partition of 10% disk, then created 1 Extended partition of 90% disk. Inside that extended partition, I created 3 logical partitions 33% each. It went numbering sdb1, sdb5, sdb6 and sdb7. Where's the hell
2007 Jul 02
3
Bacula in CentOS 5
Hi all, I'm planning to use Bacula in production environment. I've seen the Bacula packages are not provided neither by any official repo nor any third popular repo (as rpmforge). ?Anyone use bacula in CentOS 5? -- Thanks, Jordi Espasa Clofent
2018 May 03
1
Converting a list to a data frame
>>>>> David L Carlson <dcarlson at tamu.edu> >>>>> on Wed, 2 May 2018 21:43:52 +0000 writes: > Typo: dat[[z]] should be x[[z]]: > > x2 <- do.call(rbind, lapply(names(x), function(z) > data.frame(type=z, x[[z]]))) > x2 > type x y > 1 A 1 3 > 2 A 2 4 > 3 B 5 7 > 4 B 6 8 > >
2018 May 02
0
Converting a list to a data frame
Typo: dat[[z]] should be x[[z]]: x2 <- do.call(rbind, lapply(names(x), function(z) data.frame(type=z, x[[z]]))) x2 type x y 1 A 1 3 2 A 2 4 3 B 5 7 4 B 6 8 David C -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of David L Carlson Sent: Wednesday, May 2, 2018 3:51 PM To: William Dunlap <wdunlap at tibco.com>; Kevin E.
2011 Feb 15
2
Bacula
Dear all, I get a message from root as follows; 09-Feb 11:26 bacula-dir JobId 0: Fatal error: Could not open Catalog "MyCatalog", database "bacula". 09-Feb 11:26 bacula-dir JobId 0: Fatal error: postgresql.c:227 Unable to connect to PostgreSQL server. Database=bacula User=bacula Possible causes: SQL server not running; password incorrect; max_connections exceeded. 09-Feb 11:26
2012 Apr 13
2
Bacula - missing mysql file?
Hello, Tying to setup bacula but it seems the package(s) are missing the mysql file to set up the database. I see some updatedb files to upgrade a mysql database but none for a new installation. TIA
2019 Jan 25
2
Bacula 9.4.1 Dbdriver issue
Hi list, I created my rpm for Bacula 9.4.1 reading centos srpm spec files. I made a single package and not split in several packages because this is my first rpm so I created my spec file taking a cue from bacula-5.3 spec file. All works as intended, an rpm was created and installed without any not fixable issue. After installing my bacula rpm I run a test to see if all works as expected.
2018 May 02
3
Converting a list to a data frame
Or add the type column first and then rbind: x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind, lapply(names(x), function(z) data.frame(type=z, dat[[z]]))) ---------------------------------------- David L Carlson Department of Anthropology Texas A&M University College Station, TX 77843-4352 -----Original Message----- From: R-help
2018 May 02
0
Converting a list to a data frame
Hi Kevin, There is probably a better way, but it can be done in two steps like this temp <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) temp <- lapply(names(temp), function(n, temp) { temp[[n]]$type <- n return(temp[[n]]) }, temp = temp) do.call(rbind, temp) On Wed, May 2, 2018 at 1:11 PM, Kevin E. Thorpe <kevin.thorpe at utoronto.ca> wrote: > I suspect
2008 Nov 01
4
CentOS 5.2 and Bacula
Hi everyone, I have a Samba server on CentOS 5.2 that I would like to and some backup service to, I have been trying to install Bacula, because I want to backup MS machines too, and there is a web GUI. But when searching around i google I get a bit confused. about what packages I need. Has anyone got bacula running on Centos or maybe guide in the right direction. Tronn -------------- next part
2007 Sep 02
4
Bacula + DomUs and LTO Tapes
Hi Friends !!! I have one xen server (debian etch) already in production; there are samba, squid, 2 ldap servers , apache2, postgresql and others, 8 virtual machines at total in a hardware raid5. Now I need a backup system, and i will use bacula with a dell ultrium3 LTO. I would like to know if there are problems with i/o? How can I connect a DomU directly to /dev/st0 of Dom0
2018 May 02
0
Converting a list to a data frame
> x1 <- do.call(rbind, c(x, list(make.row.names=FALSE))) > x2 <- cbind(type=rep(names(x), vapply(x, nrow, 0)), x1) > str(x2) 'data.frame': 4 obs. of 3 variables: $ type: Factor w/ 2 levels "A","B": 1 1 2 2 $ x : int 1 2 5 6 $ y : int 3 4 7 8 Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, May 2, 2018 at 10:11 AM, Kevin E. Thorpe
2015 May 11
5
Bacula backup system
Hi there, In my last request I have asked info about backuppc and other backup solutions. After some test I have choosen bacula. Many people said it's too complex and try to make it works is a challenge. I've tested backuppc and I don't like it for a stupid reason... I must install on centos external software, configure a web server with cgi with suid enabled (apache does not have