[CentOS] New messages in journalctl
The following messages have started to appear in the system log after the most recent update of my Centos7 machine gnome-software-service.desktop[3389]: 20:54:22:0879 Gs no app for changed places-m...@gnome-shell-extensions.gcampax.github.com gnome-software-service.desktop[3389]: 20:54:22:0886 Gs no app for changed alternate-...@gnome-shell-extensions.gcampax.github.com gnome-software-service.desktop[3389]: 20:54:22:0898 Gs no app for changed launch-new-insta...@gnome-shell-extensions.gcampax.github.com Anybody knows what's it about? ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Mirroring centos.org
On 29/01/2018 16:21, Felipe Westfields wrote: > Does that delete switch delete those files after download, or does it stop > it from downloading at all? It means "remove files that aren't on the source". This would generally be older versions of packages that have been replaced. ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Mirroring centos.org
Ok, that sounds a little more elegant. Does that delete switch delete those files after download, or does it stop it from downloading at all? On Mon, Jan 29, 2018 at 10:48 AM, Tony Mountifield wrote: > In article g...@mail.gmail.com>, > Felipe Westfields wrote: > > Hello, > > > > I would like to mirror the centos.org repository for an offline > network. I > > don't need the ISO images, don't need any i386 stuff, and I think I > > probably don't need any of the source code rpms either. Most of the > clients > > are CentOS 6.x, so I don't want to download the CentOS 7.x tree yet > either > > (that will come soon, but separately from this one). > > > > I tried using this command, but it still downloaded all of the i386 > > sub-folders anyway, and I got about 15 gigs or so of stuff I didn't want. > > > > wget -m -np --exclude-directories=i386 http://mirror.centos.org/ > centos-6/6/ > > > > I'm guessing there's a formatting mistake of some kind in this command. > Do > > you need to specify the excluded sub-folders relative to the top > directory > > you're downloading from? i.e. rather than "i386", you'd need to specify > > "/centos-6/6/updates/i386/"? > > Don't use wget at all. Use rsync instead, from a mirror that supports it. > Here is what I use (in a nightly cron): > > # cd /myrepo > # rsync -rltHvz --delete rsync://rsync.mirrorservice. > org/mirror.centos.org/6/os/i386/ centos6/os/i386/ > # rsync -rltHvz --delete rsync://rsync.mirrorservice. > org/mirror.centos.org/6/updates/i386/ centos6/updates/i386/ > # rsync -rltHvz --delete rsync://rsync.mirrorservice. > org/mirror.centos.org/6/os/x86_64/ centos6/os/x86_64/ > # rsync -rltHvz --delete rsync://rsync.mirrorservice. > org/mirror.centos.org/6/updates/x86_64/ centos6/updates/x86_64/ > > Omit the ones you don't want. > > There are other ideas listed at https://wiki.centos.org/ > HowTos/CreateLocalMirror > > Cheers > Tony > -- > Tony Mountifield > Work: t...@softins.co.uk - http://www.softins.co.uk > Play: t...@mountifield.org - http://tony.mountifield.org > ___ > CentOS mailing list > CentOS@centos.org > https://lists.centos.org/mailman/listinfo/centos > ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Mirroring centos.org
In article , Felipe Westfields wrote: > Hello, > > I would like to mirror the centos.org repository for an offline network. I > don't need the ISO images, don't need any i386 stuff, and I think I > probably don't need any of the source code rpms either. Most of the clients > are CentOS 6.x, so I don't want to download the CentOS 7.x tree yet either > (that will come soon, but separately from this one). > > I tried using this command, but it still downloaded all of the i386 > sub-folders anyway, and I got about 15 gigs or so of stuff I didn't want. > > wget -m -np --exclude-directories=i386 http://mirror.centos.org/centos-6/6/ > > I'm guessing there's a formatting mistake of some kind in this command. Do > you need to specify the excluded sub-folders relative to the top directory > you're downloading from? i.e. rather than "i386", you'd need to specify > "/centos-6/6/updates/i386/"? Don't use wget at all. Use rsync instead, from a mirror that supports it. Here is what I use (in a nightly cron): # cd /myrepo # rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/os/i386/ centos6/os/i386/ # rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/updates/i386/ centos6/updates/i386/ # rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/os/x86_64/ centos6/os/x86_64/ # rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/updates/x86_64/ centos6/updates/x86_64/ Omit the ones you don't want. There are other ideas listed at https://wiki.centos.org/HowTos/CreateLocalMirror Cheers Tony -- Tony Mountifield Work: t...@softins.co.uk - http://www.softins.co.uk Play: t...@mountifield.org - http://tony.mountifield.org ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Mirroring centos.org
On Mon, Jan 29, 2018 at 10:22:49AM -0500, Felipe Westfields wrote: > > Hello, > > I would like to mirror the centos.org repository for an offline network. I You probably should start by not mirroring mirror.centos.org, but a local mirror: https://centos.org/download/mirrors/ If you plan on regularly mirroring the CentOS repos on that site, please contact them and let them know. You should also consider using a yum-aware tool like reposync, mrepo or pulp to create your own repos, rather than using 'wget'. Many repos have rsync:// support, which means you can also use rsync to do this. -- Jonathan Billings ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
[CentOS] Mirroring centos.org
Hello, I would like to mirror the centos.org repository for an offline network. I don't need the ISO images, don't need any i386 stuff, and I think I probably don't need any of the source code rpms either. Most of the clients are CentOS 6.x, so I don't want to download the CentOS 7.x tree yet either (that will come soon, but separately from this one). I tried using this command, but it still downloaded all of the i386 sub-folders anyway, and I got about 15 gigs or so of stuff I didn't want. wget -m -np --exclude-directories=i386 http://mirror.centos.org/centos-6/6/ I'm guessing there's a formatting mistake of some kind in this command. Do you need to specify the excluded sub-folders relative to the top directory you're downloading from? i.e. rather than "i386", you'd need to specify "/centos-6/6/updates/i386/"? FW ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Centos 7 add-on serial cards
On 01/29/18 09:19, Fred Smith wrote: On Mon, Jan 29, 2018 at 07:00:02AM -0500, Pete Geenhuizen wrote: On 01/28/18 20:15, Fred Smith wrote: Thanks for the suggestion. I looked at them with setserial, but I have no familiarity with the program to know what to change. setserial -ag /dev/ttyS* /dev/ttyS0, Line 0, UART: 16550A, Port: 0x03f8, IRQ: 4 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal skip_test /dev/ttyS1, Line 1, UART: 16550A, Port: 0x8000, IRQ: 17 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: none Flags: spd_normal skip_test /dev/ttyS2, Line 2, UART: 16550A, Port: 0x8400, IRQ: 17 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: none Flags: spd_normal skip_test /dev/ttyS3, Line 3, UART: unknown, Port: 0x02e8, IRQ: 3 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal I changed the closing_wait: on ttyS1 to match ttyS0, but that didn't do anything, so there must be more to it. Pete it has been so many years since I've fooled with a serial port that I don't remember any details. however, this page may prove helpful, it appears to contain a lot of potentially useful info: http://www.tldp.org/HOWTO/Serial-HOWTO-8.html and also this one (linked from the document above: http://www.tldp.org/HOWTO/Serial-HOWTO-16.html#slow_ Fred It's been many years for me as well. From C4 to C6 it just worked and I thought nothing more of it, but now I'm confronted with this issue. Thanks for the info and the links hopefully I can glean something out of it that will solve my dilemma. Pete -- Unencumbered by the thought process. -- Click and Clack the Tappet brothers -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Centos 7 add-on serial cards
On Mon, Jan 29, 2018 at 07:00:02AM -0500, Pete Geenhuizen wrote: > > > On 01/28/18 20:15, Fred Smith wrote: > >On Sun, Jan 28, 2018 at 12:10:29PM -0500, Pete Geenhuizen wrote: > >>I'm upgrading from CentOS6 to CentOS 7. > >> > >>I run 2 weather stations on C6 and have one of them attached to > >>ttyS0 which is on the motherboard, and the other to ttyS2 which in > >>on an add-on PCI serial card. > >> > >>I'm migrating the weather stations another host running C7 which has > >>a similar hardware configuration. When I connect the weather > >>station to ttyS0 everything works fine, but when I try to use ttyS1 > >>or ttyS2 nothing happens. > >> > >>The OS identifies all 3 ports, and I've already tried several > >>different serial cards several of the slots on the motherboard all > >>have yielded the same result. I've even gone so far as to try to > >>get this to work on another computer running C7 with the same > >>result, success on ttyS0, but nothing nothing when I try ttyS1 or > >>ttyS2. > >> > >>I'm thinking that this might be a driver issue, but having used > >>several different cards I'm just not sure. > >> > >>Any assistance would be greatly appreciated. > >> > >>Pete > >Wondering if you've tried poking at them with 'setserial'? > > > Thanks for the suggestion. > > I looked at them with setserial, but I have no familiarity with the > program to know what to change. > > setserial -ag /dev/ttyS* > /dev/ttyS0, Line 0, UART: 16550A, Port: 0x03f8, IRQ: 4 > Baud_base: 115200, close_delay: 50, divisor: 0 > closing_wait: 3000 > Flags: spd_normal skip_test > > /dev/ttyS1, Line 1, UART: 16550A, Port: 0x8000, IRQ: 17 > Baud_base: 115200, close_delay: 50, divisor: 0 > closing_wait: none > Flags: spd_normal skip_test > > /dev/ttyS2, Line 2, UART: 16550A, Port: 0x8400, IRQ: 17 > Baud_base: 115200, close_delay: 50, divisor: 0 > closing_wait: none > Flags: spd_normal skip_test > > /dev/ttyS3, Line 3, UART: unknown, Port: 0x02e8, IRQ: 3 > Baud_base: 115200, close_delay: 50, divisor: 0 > closing_wait: 3000 > Flags: spd_normal > > I changed the closing_wait: on ttyS1 to match ttyS0, but that didn't > do anything, so there must be more to it. > > Pete it has been so many years since I've fooled with a serial port that I don't remember any details. however, this page may prove helpful, it appears to contain a lot of potentially useful info: http://www.tldp.org/HOWTO/Serial-HOWTO-8.html and also this one (linked from the document above: http://www.tldp.org/HOWTO/Serial-HOWTO-16.html#slow_ Fred -- Fred Smith -- fre...@fcshome.stoneham.ma.us - "For him who is able to keep you from falling and to present you before his glorious presence without fault and with great joy--to the only God our Savior be glory, majesty, power and authority, through Jesus Christ our Lord, before all ages, now and forevermore! Amen." - Jude 1:24,25 (niv) - ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Centos 7 add-on serial cards
On 01/28/18 20:15, Fred Smith wrote: On Sun, Jan 28, 2018 at 12:10:29PM -0500, Pete Geenhuizen wrote: I'm upgrading from CentOS6 to CentOS 7. I run 2 weather stations on C6 and have one of them attached to ttyS0 which is on the motherboard, and the other to ttyS2 which in on an add-on PCI serial card. I'm migrating the weather stations another host running C7 which has a similar hardware configuration. When I connect the weather station to ttyS0 everything works fine, but when I try to use ttyS1 or ttyS2 nothing happens. The OS identifies all 3 ports, and I've already tried several different serial cards several of the slots on the motherboard all have yielded the same result. I've even gone so far as to try to get this to work on another computer running C7 with the same result, success on ttyS0, but nothing nothing when I try ttyS1 or ttyS2. I'm thinking that this might be a driver issue, but having used several different cards I'm just not sure. Any assistance would be greatly appreciated. Pete Wondering if you've tried poking at them with 'setserial'? Thanks for the suggestion. I looked at them with setserial, but I have no familiarity with the program to know what to change. setserial -ag /dev/ttyS* /dev/ttyS0, Line 0, UART: 16550A, Port: 0x03f8, IRQ: 4 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal skip_test /dev/ttyS1, Line 1, UART: 16550A, Port: 0x8000, IRQ: 17 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: none Flags: spd_normal skip_test /dev/ttyS2, Line 2, UART: 16550A, Port: 0x8400, IRQ: 17 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: none Flags: spd_normal skip_test /dev/ttyS3, Line 3, UART: unknown, Port: 0x02e8, IRQ: 3 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal I changed the closing_wait: on ttyS1 to match ttyS0, but that didn't do anything, so there must be more to it. Pete -- Unencumbered by the thought process. -- Click and Clack the Tappet brothers -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos