Everytime I try to put it to bottom I get the same erorr. I would be greate if you guys can help me with this.

So when I try to install this package

 sudo apt-get install unityshell-rotated libnux-1.0-0 compizconfig-settings-manager

I get this erorr

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package unityshell-rotated
E: Unable to locate package libnux-1.0-0
E: Couldn't find any package by regex 'libnux-1.0-0'
punith.kashi1 commented: dont write sudo...........only write apt-get install <package list> +0

Dani AI

Generated

Short answer: the package-not-found message means Apt cannot see the build you tried to install (missing repo, outdated package lists, or the package simply has no Precise build). already noted the rotated-Unity project did not have an official Precise package and libnux’s naming changed between releases, so the names you attempted will not be present in a default 12.04 setup.

Quick checks to run locally (these do not re-run the install you used):

sudo apt-get update
apt-cache policy unityshell-rotated
apt-cache search libnux
ls /etc/apt/sources.list.d

If apt-cache policy shows no candidate, either the repository providing that package was not added, the PPA has no Precise build, or the package name differs for 12.04. If you added a PPA, confirm its file under /etc/apt/sources.list.d includes “precise” and run the update step again.

Practical alternatives and safety notes: avoid forcing packages compiled for other Ubuntu releases (that breaks core deps such as libnux). If moving the launcher to the bottom is the goal, the usual 12.04 workaround is to enable Unity’s autohide and use a bottom dock (Plank or Docky) as the visible launcher. Example install:

sudo apt-get install plank

Then add plank to Startup Applications and enable Unity autohide in System Settings → Appearance → Behavior so the dock sits at the bottom without conflict.

If an integrated, rotated-Unity solution is required, only use a PPA that explicitly provides a Precise build or test on a VM; otherwise consider upgrading or switching to a DE/dock that natively supports bottom placement.

Recommended Answers

All 2 Replies

Ok thanks but Im actually getting the error with this same exact code. It doesnt let me do it. Anyone have a idea?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.