Question on setup machine after clean install? This is the process I've been using.
rpm --qf "%{NAME}\n" -qa | sort | grep -v gpg-pubkey | grep -v kmod-V | grep -v google-earth > installed_pkgs.txt
Copy all *.repo files from /etc/yum.repos.d Copy files from /etc/pki/rpm-gpg/ After putting copied files on new machine run dnf install `cat installed_pkgs.txt`
General have to minor issues. msttcorefonts-2.5-1.noarch is no longer available, but have a copy, so manually install it. Other issue is with google-chrome seems it gpg isn't in the /etc/pki/rpm-gpg directory? wget https://dl.google.com/linux/linux_signing_key.pub sudo rpm --import linux_signing_key.pub
Any ways to improve this process?
On 06/21/2016 11:05 PM, Michael D. Setzer II wrote:
Any ways to improve this process?
Arguably: Start using ansible, or another configuration management tool to install packages and make changes to the system. If you make a habit of *only* making changes to the system using configuration management, you'll save a lot of time when setting up new systems.
On 22 Jun 2016 at 9:27, Gordon Messmer wrote:
Subject: Re: Question on best process to setup new install To: Community support for Fedora users users@lists.fedoraproject.org From: Gordon Messmer gordon.messmer@gmail.com Date sent: Wed, 22 Jun 2016 09:27:38 -0700 Send reply to: Community support for Fedora users users@lists.fedoraproject.org
On 06/21/2016 11:05 PM, Michael D. Setzer II wrote:
Any ways to improve this process?
Arguably: Start using ansible, or another configuration management tool to install packages and make changes to the system. If you make a habit of *only* making changes to the system using configuration management, you'll save a lot of time when setting up new systems.
Thanks will have to look into that. This process is relatively fast, and gets the additional 1000+ packages install in the single dnf update. In the past, I was making rpm -qa list from both systems, and haven't to compare what was on each list, and what was missing from either list.
Currently have about 20 classroom workstations, and about 30 other linux machines.
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
+----------------------------------------------------------+ Michael D. Setzer II - Computer Science Instructor Guam Community College Computer Center mailto:mikes@kuentos.guam.net mailto:msetzerii@gmail.com Guam - Where America's Day Begins G4L Disk Imaging Project maintainer http://sourceforge.net/projects/g4l/ +----------------------------------------------------------+
http://setiathome.berkeley.edu (Original) Number of Seti Units Returned: 19,471 Processing time: 32 years, 290 days, 12 hours, 58 minutes (Total Hours: 287,489)
BOINC@HOME CREDITS ABC 16613838.513356 | EINSTEIN 101632185.95569545014114.055355 ROSETTA 45014114.055355 | SETI 84572139.973936
On 06/21/2016 11:05 PM, Michael D. Setzer II wrote:
Question on setup machine after clean install? This is the process I've been using.
rpm --qf "%{NAME}\n" -qa | sort | grep -v gpg-pubkey | grep -v kmod-V |
After putting copied files on new machine run dnf install `cat installed_pkgs.txt`
This will cause you some issues as occasionally packages are renamed, replaced, or retired. The better process would be to keep track of packages as you install them over time. Or as someone else mentioned, automate it.
On 22 Jun 2016 at 10:31, Samuel Sieb wrote:
Subject: Re: Question on best process to setup new install To: Community support for Fedora users users@lists.fedoraproject.org From: Samuel Sieb samuel@sieb.net Date sent: Wed, 22 Jun 2016 10:31:27 -0700 Send reply to: Community support for Fedora users users@lists.fedoraproject.org
On 06/21/2016 11:05 PM, Michael D. Setzer II wrote:
Question on setup machine after clean install? This is the process I've been using.
rpm --qf "%{NAME}\n" -qa | sort | grep -v gpg-pubkey | grep -v kmod-V |
After putting copied files on new machine run dnf install `cat installed_pkgs.txt`
This will cause you some issues as occasionally packages are renamed, replaced, or retired. The better process would be to keep track of packages as you install them over time. Or as someone else mentioned, automate it.
Thanks, but I generally find there are about a thousand packages that are on my systems above the standard install. The only package that wasn't found in the process last time I did it was mstt font rpm, but all other ones were found as be still included.
I have done both clean installs on machine, and fedup process. The clean install results in lot of missing packages, whereas the fedup results in new packages not being included.
Thanks again.
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
+----------------------------------------------------------+ Michael D. Setzer II - Computer Science Instructor Guam Community College Computer Center mailto:mikes@kuentos.guam.net mailto:msetzerii@gmail.com Guam - Where America's Day Begins G4L Disk Imaging Project maintainer http://sourceforge.net/projects/g4l/ +----------------------------------------------------------+
http://setiathome.berkeley.edu (Original) Number of Seti Units Returned: 19,471 Processing time: 32 years, 290 days, 12 hours, 58 minutes (Total Hours: 287,489)
BOINC@HOME CREDITS ABC 16613838.513356 | EINSTEIN 101632185.95569545014114.055355 ROSETTA 45014114.055355 | SETI 84572139.973936
I run that command and the final output showed for duplicate names. I guess that some packages have 32 bit counter parts. How would you modify the command to transfer all the packages and their architecture?
On Wed, Jun 22, 2016 at 2:05 AM, Michael D. Setzer II < mikes@kuentos.guam.net> wrote:
Question on setup machine after clean install? This is the process I've been using.
rpm --qf "%{NAME}\n" -qa | sort | grep -v gpg-pubkey | grep -v kmod-V | grep -v google-earth > installed_pkgs.txt
Copy all *.repo files from /etc/yum.repos.d Copy files from /etc/pki/rpm-gpg/ After putting copied files on new machine run dnf install `cat installed_pkgs.txt`
General have to minor issues. msttcorefonts-2.5-1.noarch is no longer available, but have a copy, so manually install it. Other issue is with google-chrome seems it gpg isn't in the /etc/pki/rpm-gpg directory? wget https://dl.google.com/linux/linux_signing_key.pub sudo rpm --import linux_signing_key.pub
Any ways to improve this process?
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
On 22 Jun 2016 at 23:29, Saint Michael wrote:
From: Saint Michael venefax@gmail.com Date sent: Wed, 22 Jun 2016 23:29:11 -0400 Subject: Re: Question on best process to setup new install To: Community support for Fedora users users@lists.fedoraproject.org Send reply to: Community support for Fedora users users@lists.fedoraproject.org
I run that command and the final output showed for duplicate names. I guess that some packages have 32 bit counter parts. How would you modify the command to transfer all the packages and their architecture?
The -qa gives the full info, but then if you include that and that version is not available it caused issues. Most of my systems are either all 32 or 64, so haven't tought about that as an issue.
Just looking and this site seems to have info.
http://www.rpm.org/max-rpm/s1-rpm-query-parts.html
On Wed, Jun 22, 2016 at 2:05 AM, Michael D. Setzer II mikes@kuentos.guam.net wrote: Question on setup machine after clean install? This is the process I've been using.
rpm --qf "%{NAME}\n" -qa | sort | grep -v gpg-pubkey | grep -v kmod-V | grep -v google-earth > installed_pkgs.txt Copy all *.repo files from /etc/yum.repos.d Copy files from /etc/pki/rpm-gpg/ After putting copied files on new machine run dnf install `cat installed_pkgs.txt` General have to minor issues. msttcorefonts-2.5-1.noarch is no longer available, but have a copy, so manually install it. Other issue is with google-chrome seems it gpg isn't in the /etc/pki/rpm-gpg directory? wget https://dl.google.com/linux/linux_signing_key.pub sudo rpm --import linux_signing_key.pub Any ways to improve this process? -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
+----------------------------------------------------------+ Michael D. Setzer II - Computer Science Instructor Guam Community College Computer Center mailto:mikes@kuentos.guam.net mailto:msetzerii@gmail.com Guam - Where America's Day Begins G4L Disk Imaging Project maintainer http://sourceforge.net/projects/g4l/ +----------------------------------------------------------+
http://setiathome.berkeley.edu (Original) Number of Seti Units Returned: 19,471 Processing time: 32 years, 290 days, 12 hours, 58 minutes (Total Hours: 287,489)
BOINC@HOME CREDITS ABC 16613838.513356 | EINSTEIN 101632185.95569545014114.055355 ROSETTA 45014114.055355 | SETI 84572139.973936