LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-04-2021, 10:16 PM   #1
Klaipedaville
Member
 
Registered: Mar 2013
Posts: 110

Rep: Reputation: Disabled
Debian Wheezy vs Debian Bullseye


I have an idea-question. There is a clean install of Bullseye on a VPS. This distro has new Bind, new Dovecot, new Apache, etc. If I back it up and then re-install it EXCLUDING new Bind, new Dovecot and all the other pre-installed packages that I do not need and then install slighlty older versions of Bind, Dovecot and so on, will that potentially work or will that create a mess of dependencies hell?

Can I also install just bare metals of Bullseye without Apparmor, without NFtables and some other "parts" that I do not need and do not like? How? By the way, are NFtables replacable? I'd like to stick to normal iptables.

Would really appreciate any pointers, advice, suggestions at all. Many thanks in advance!
 
Old 11-04-2021, 10:34 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
It appears you can do the removals of the two mentioned program without any others being removed. For running the older versions you will want to look into apt-pinning and keeping a program at a fixed version using it. The dependency problems of doing this who knows until you get into it one thing you will miss is the security updates which in Apaches case just had one recently I remember seeing installed. Why would you want the older versions of the software and no security support in using them? The things you want to remove give it a try and see if it breaks the system in which case you get to fix it or restore the backup to get up and running again.

Code:
root@bullseye-raspi:~# acp apparmor
apparmor:
  Installed: 2.13.6-10
  Candidate: 2.13.6-10
  Version table:
 *** 2.13.6-10 500
        500 http://deb.debian.org/debian bullseye/main arm64 Packages
        100 /var/lib/dpkg/status
root@bullseye-raspi:~# agrs apparmor
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
  apparmor
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Remv apparmor [2.13.6-10]
root@bullseye-raspi:~# acp nftables
nftables:
  Installed: 0.9.8-3.1
  Candidate: 0.9.8-3.1
  Version table:
 *** 0.9.8-3.1 500
        500 http://deb.debian.org/debian bullseye/main arm64 Packages
        100 /var/lib/dpkg/status
root@bullseye-raspi:~# agrs nftables
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
  nftables
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Remv nftables [0.9.8-3.1]
root@bullseye-raspi:~# acp iptables
iptables:
  Installed: (none)
  Candidate: 1.8.7-1
  Version table:
     1.8.7-1 500
        500 http://deb.debian.org/debian bullseye/main arm64 Packages
root@bullseye-raspi:~# alias acp
alias acp='apt-cache policy'
root@bullseye-raspi:~# alias agrs
alias agrs='apt-get -s remove'
 
1 members found this post helpful.
Old 11-04-2021, 11:45 PM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Klaipedaville View Post
I have an idea-question. There is a clean install of Bullseye on a VPS. This distro has new Bind, new Dovecot, new Apache, etc. If I back it up and then re-install it EXCLUDING new Bind, new Dovecot and all the other pre-installed packages that I do not need and then install slighlty older versions of Bind, Dovecot and so on, will that potentially work or will that create a mess of dependencies hell?

Can I also install just bare metals of Bullseye without Apparmor, without NFtables and some other "parts" that I do not need and do not like? How? By the way, are NFtables replacable? I'd like to stick to normal iptables.

Would really appreciate any pointers, advice, suggestions at all. Many thanks in advance!
Yes, you can, as the previous post explained.
But the biggest question here is WHY?
 
Old 11-05-2021, 12:09 AM   #4
Klaipedaville
Member
 
Registered: Mar 2013
Posts: 110

Original Poster
Rep: Reputation: Disabled
Thank you so much, Stephen. Yes, I can of course give it try and see if it works. It's a brand-new VPS install so I can mess it up and break it up as much as I want just to test it around. Then a simple re-install will fix it all.

However, I would hate to configure it, migrate all the data and software there just to find out it will have big issues later. This is why I asked first for somebody to advise if this might be the case.

The reason for keeping my old versions is that they are completely different and extremly customized. I have of course tried the new ones before and it did not work at all. It simply breaks it all. The new versions mean to me "nothing works" without any options to fix it as the new changes do not support my customizations at all for the new versions having it totally new and differently re-built.

I am not a bank or some millitary base with nuclear missiles �� to be that concerned about security. I am completely fine with older versions. They did not become totally insecure all of a sudden. They are just slightly less secure and I am OK with that.
 
Old 11-05-2021, 12:23 AM   #5
Klaipedaville
Member
 
Registered: Mar 2013
Posts: 110

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
Yes, you can, as the previous post explained.
But the biggest question here is WHY?
Thank you for your input.

I replied in my previous message.
 
Old 11-05-2021, 12:26 AM   #6
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by Klaipedaville View Post
Thank you so much, Stephen. Yes, I can of course give it try and see if it works. It's a brand-new VPS install so I can mess it up and break it up as much as I want just to test it around. Then a simple re-install will fix it all.

However, I would hate to configure it, migrate all the data and software there just to find out it will have big issues later. This is why I asked first for somebody to advise if this might be the case.

The reason for keeping my old versions is that they are completely different and extremly customized. I have of course tried the new ones before and it did not work at all. It simply breaks it all. The new versions mean to me "nothing works" without any options to fix it as the new changes do not support my customizations at all for the new versions having it totally new and differently re-built.

I am not a bank or some millitary base with nuclear missiles �� to be that concerned about security. I am completely fine with older versions. They did not become totally insecure all of a sudden. They are just slightly less secure and I am OK with that.
Then it makes absolutely no sense to upgrade to newer version of the OS only to have to jump through hoops to get old software to possibly work for you. You may as well use the old OS and software it is designed for and take the security risks there, you already know how that works.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: How to Upgrade Debian 10 Buster to Debian 11 Bullseye LXer Syndicated Linux News 0 07-26-2021 07:21 AM
LXer: DebConf20 Debian Conference Kicks Off Today for Debian GNU/Linux 11 “Bullseye” LXer Syndicated Linux News 0 08-23-2020 08:01 PM
LXer: Debian 11 "Bullseye" and Debian 12 "Bookworm" Are Coming After Debian 10 "Buster" LXer Syndicated Linux News 0 04-18-2018 12:26 PM
[SOLVED] Now I've done it - Debian dual boot (Sid, Wheezy) grub overwritten, lost Wheezy? ShaneRoach Debian 23 02-02-2014 02:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:27 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration