How to remove installed packages to save firmware space?

I have an old TL-740N router and installed openwrt few days ago. I want to limit bandwidth for some user. For that i have to install a new package. But I've no free space to do that.
So I started searching how to remove installed packages. I've found some posts but they are too much confusing for me as a newbie.
what i only know i need linux OS and an image builder.
can anyone please help.

i want to remove everything like ipv6,firewall,sys log etc.Just want to keep only the essentials for keeping the router running.

What you want to do is definitely possible if you’re willing to commit the time and energy to learn, (it sounds like it would be a very steep learning curve from your starting point)

https://openwrt.org/docs/guide-user/additional-software/imagebuilder

Alternatively, you could try using a USB key to provide extra storage to give enough space to install the packages you’re after , (this option still a lot to learn, but less than the one above for building an entire image and everything that entails including a Linux VM and build root environment setup)

https://openwrt.org/docs/guide-user/additional-software/extroot_configuration

1 Like

See also: https://openwrt.org/supported_devices/openwrt_on_432_devices

My router doesn't support usb :frowning:

And I can't figure out where to start by following those tutorial .
Like I don't know where to put all those command line :neutral_face:

Heres what I did . You can build your build of openwrt. I am on windows 10. I installed WSL2 then installed ubuntu.
Then when Ubuntu is up and running.
sudo apt install build-essential libncursesw5-dev python unzip
git clone https://git.openwrt.org/openwrt/openwrt.git

cd openwrt

./scripts/feeds update -a
./scripts/feeds install -a

make menuconfig
The last command will open a menu.

More info here:
https://openwrt.org/docs/guide-developer/quickstart-build-images

Okay thanks i will try
But when i will use package removing command like this post : https://openwrt.org/docs/guide-user/additional-software/saving_space

That's part of the image builder: you do not delete packages from the router, you exclude them from the image.

getting this error :frowning:

From Luci, install packages and view the installed packages.

Have the packages installed so that it recognizes usb or directly you have no usb port? To recognize it you must install kmod-usb-core and there are many more to recognize: fat32, Ntfs, ext3, ext4.

You can try some of this. And it’s pretty cheap

So it will work on any router ?

I've TL-WR740N ROUTER

Do you know which 4 colored wire should be connected between RJ45 and usb female

I've rj45 and a usb female port and if i know which wire should be connected to each other i can make this adapter in home

I highly doubt that you can just wire a USB device into an ethernet port and make it work... Those are completely different protocols on all layers involved.

1 Like

getting this error make -r world failed
can some one help
I put these command line

sudo apt install subversion g++ zlib1g-dev build-essential git python python3 python3-distutils libncurses5-dev gawk gettext \ unzip file libssl-dev wget libelf-dev ecj fastjar java-propose-classpath

sudo apt install build-essential libncursesw5-dev python unzip  

umask 0022

git clone https://git.openwrt.org/openwrt/openwrt.git

cd openwrt

./scripts/feeds update -a
./scripts/feeds install -a

make menuconfig

then to remove ipv6 i put this command

make image PROFILE=tl-wr941nd-v6 \ PACKAGES=“uhttpd uhttpd-mod-ubus libiwinfo-lua luci-base luci-app-firewall luci-mod-admin-full luci-theme-bootstrap \ -ppp -ppp-mod-pppoe -ip6tables -odhcp6c -kmod-ipv6 -kmod-ip6tables -odhcpd-ipv6only”

then last command was make

plzzz help how to fix this issue

You are using the syntax for imagebuilder, but are actually trying to build from source.

make menuconfig
make

When i will put the package excluding command ?

Plzz help :pray::pray:

If you are building from source, use make manuconfig to select which packages you want.

You can build an image using two methods:

  • Build all the packages from source, and pack them into an image.
  • Download the already built packages, and pack them into an image.

If you just want to create a smaller image, go for the second option, you do not need to build the packages yourself. Follow the "Using the Image Builder" guide.

1 Like

Well, if you have the tools you need, you could make it home. If so, share the final result. please.