Queue · 0 items

How to install the Epson L310 driver on Ubuntu — download the .deb package, handle the lsb dependency, add the printer via GUI or terminal, and test print.
.exe installer, a few clicks, done. So when I booted into Ubuntu 25.10 for the first time and tried to print something, I was quietly hoping it would be just as smooth.
It wasn't. But it wasn't a nightmare either.
The L310 driver doesn't ship with Ubuntu's default repos, which means you have to fetch it manually. I spent about twenty minutes figuring out the right steps — including one dependency error that had me briefly convinced I'd broken something. I hadn't. Here's exactly what I did.
L310 in the search box → look for Epson Inkjet Printer Driver for Linux → download the .deb file for amd64 architecture..deb package in your Downloads folder. That's what we'll work with.
.deb Filecd into Downloads and run dpkg:
cd ~/Downloads
sudo dpkg -i epson-inkjet-printer-*.deb
sudo apt install -fapt install -f at the end resolves any dangling dependencies automatically.
dpkg: dependency problems prevent configuration of epson-inkjet-printer-...
epson-inkjet-printer-... depends on lsb; however:
lsb package was removed from Ubuntu starting with 25.10. The fix is to force-ignore it:sudo dpkg -i --ignore-depends=lsb epson-inkjet-printer-*.deblsb — it's a legacy dependency that Epson hasn't updated yet.sudo apt install system-config-printerlsb dependency quirk. That one error had me second-guessing myself for a few minutes before I realized what was happening. If you hit it, don't panic. The --ignore-depends flag sorts it out cleanly.
If you have a different Ubuntu version or the driver file name differs slightly on your machine, adjust the *.deb wildcard accordingly — or just type the full filename.
Got a different error or a step that didn't work? Drop it in the comments and I'll take a look.
Explore related topics and continue reading similar content.
Preparing the comments area...