Aleksey Tsalolikhin | 1 Aug 2008 01:02
Picon

Re: how to install BackupPC on CentOS 5.2 -- use Testing repository

What's a protect base?

I added the Test repository to my yum.conf and then I was able to just
yum it in.  I bet you already had the Test repository in your yum
config, dnk.

Thanks for your reply!

Aleksey

Here is what I added to /etc/yum.conf:

[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/5/testing/x86_64
enabled=1

On 7/31/08, dnk <d.k.emaillists@...> wrote:
> Do you have any sort of protect base installed?
>
> Priorities, etc?
>
> I could just yum it in when i did it.
>
> d
>
>
>
>
>
(Continue reading)

Johnny Hughes | 1 Aug 2008 01:03
Favicon
Gravatar

Re: Re: how to install BackupPC on CentOS 5.2 -- how do I use Test repository?

Aleksey Tsalolikhin wrote:
> Ok, downloading the BackupPC RPM directly did not work to myriad
> dependencies and sub-dependencies.
> 
> How do I add the Test repository to my yum config, please?
> 
> Aleksey
> 
> On 7/31/08, Aleksey Tsalolikhin <atsaloli.tech@...> wrote:
>> Hi.  I just installed CentOS for the first time, to make a BackupPC server.
>>
>> However, when I try to install BackupPC using yum, I get the error:
>>
>>      No package backuppc available.
>>
>> I searched the Testing, Extras and CentOS Plus repositories, and found
>> a BackupPC package only in Testing, at
>>
>> http://dev.centos.org/centos/5/testing/x86_64/RPMS/backuppc-3.1.0-1.el5.centos.x86_64.rpm
>>  which I downloaded directly.
>>
>> Just posting this in case somebody else has a similar issue.

http://wiki.centos.org/AdditionalResources/Repositories

_______________________________________________
CentOS mailing list
CentOS@...
(Continue reading)

Jim Shunamon | 1 Aug 2008 01:05
Picon

Re: unsubscribe

Rajeev R. Veedu wrote:
>
>  
>
>  
>
> *Rajeev R. Veedu*
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> CentOS mailing list
> CentOS@...
> http://lists.centos.org/mailman/listinfo/centos
>   
Scott Silva | 1 Aug 2008 01:10
Picon

Re: how to install BackupPC on CentOS 5.2 -- how do I use Test repository?

on 7-31-2008 3:51 PM Aleksey Tsalolikhin spake the following:
> Ok, downloading the BackupPC RPM directly did not work to myriad
> dependencies and sub-dependencies.
> 
> How do I add the Test repository to my yum config, please?
> 
> Aleksey
> 
> On 7/31/08, Aleksey Tsalolikhin <atsaloli.tech@...> wrote:
>> Hi.  I just installed CentOS for the first time, to make a BackupPC server.
>>
>> However, when I try to install BackupPC using yum, I get the error:
>>
>>      No package backuppc available.
>>
>> I searched the Testing, Extras and CentOS Plus repositories, and found
>> a BackupPC package only in Testing, at
>>
>> http://dev.centos.org/centos/5/testing/x86_64/RPMS/backuppc-3.1.0-1.el5.centos.x86_64.rpm
>>  which I downloaded directly.
>>
>> Just posting this in case somebody else has a similar issue.
>>
>>
>> Best,
>> Aleksey
>>
The instructions and links are here;
http://wiki.centos.org/AdditionalResources/Repositories

(Continue reading)

MHR | 1 Aug 2008 01:13
Picon

Re: how to install BackupPC on CentOS 5.2 -- use Testing repository

On Thu, Jul 31, 2008 at 4:02 PM, Aleksey Tsalolikhin
<atsaloli.tech@...> wrote:
> What's a protect base?
>
> I added the Test repository to my yum.conf and then I was able to just
> yum it in.  I bet you already had the Test repository in your yum
> config, dnk.
>
> Thanks for your reply!
>

You need to poke around in the CentOS documentation first - most of
the questions you raised are answered there.

mhr
Aleksey Tsalolikhin | 1 Aug 2008 01:15
Picon

Re: Re: how to install BackupPC on CentOS 5.2 -- how do I use Test repository?

Thank you very much!

Response speed on this list is very impressive.

Thanks again for the help.  :)

Best,
Aleksey
Aleksey Tsalolikhin | 1 Aug 2008 02:23
Picon

BackupPC 3.1.0 on CentOS 5.2 triggers SE Linux denial

Hi.   I've installed BackupPC 3.1.0 from Testing repository, to Cent
OS 5.2 x86_64, and I am hitting an SE Linux denial - the httpd cannot
talk to the BackupPC socket:

type=AVC msg=audit(07/31/2008 17:18:53.623:410) : avc:  denied  {
connectto } for  pid=11767 comm=httpd
path=/var/log/BackupPC/BackupPC.sock
scontext=user_u:system_r:httpd_t:s0
tcontext=user_u:system_r:initrc_t:s0 tclass=unix_stream_socket

type=AVC msg=audit(07/31/2008 17:18:53.623:410) : avc:  denied  {
write } for  pid=11767 comm=httpd name=BackupPC.sock dev=md0
ino=39813253 scontext=user_u:system_r:httpd_t:s0
tcontext=user_u:object_r:var_log_t:s0 tclass=sock_file

Is there an easy way to fix this, like setting the BackupPC.sock file
universally writeable?  I don't know SE Linux and right now my
objective is to get BackupPC up and running.

I've turned SE Linux off for now, but that's temporary until I get a
more targeted fix.

Thanks,
Aleksey
MHR | 1 Aug 2008 02:43
Picon

Remounting a USB flash drive

I've noticed that once I right click on my flash drive icon and umount
it, in order to remount it I have to unplug it and then plug it back
in.

Is there a command that will accomplish the same task without the
unplug and plug back in physics?

Thanks.

mhr
Aleksey Tsalolikhin | 1 Aug 2008 02:55
Picon

Re: Remounting a USB flash drive

Yes.

mount diskid

where diskid is your disk device id, e.g. /dev/sdg1

You can find out what it is by running

mount

while the disk is mounted, or by checking /var/log/messages, to see
what disk ID was assigned to it when the device was first plugged in.

You might need to specify a mount-point (where the device should be mounted),

e.g. :   mount /dev/sdg1  /media/flashdrive

Hope this helps,
Aleksey

On 7/31/08, MHR <mhullrich@...> wrote:
> I've noticed that once I right click on my flash drive icon and umount
> it, in order to remount it I have to unplug it and then plug it back
> in.
>
> Is there a command that will accomplish the same task without the
> unplug and plug back in physics?
>
> Thanks.
>
(Continue reading)

Lanny Marcus | 1 Aug 2008 03:43
Picon

Re: how to install BackupPC on CentOS 5.2 -- use Testing repository

On Thu, Jul 31, 2008 at 6:02 PM, Aleksey Tsalolikhin
<atsaloli.tech@...> wrote:
> What's a protect base?

Better to use Priorities!

<http://wiki.centos.org/PackageManagement/Yum/Priorities>

<http://wiki.centos.org/AdditionalResources/Repositories>

Set up the Repositories you want to use and set a Priority for each Repository,
to protect your system.

<snip>

Gmane