Boot partition nearly full: how to clear or extend it? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I got a warning message that my boot partition (/) is nearly full. I am running Ubuntu.
Should I clear it or try to extend it ?
To extend, my problem is that the next partition, which is the /home is already used.
To clear it, I remove unused kernel, by listing them
sudo dpkg --list 'linux-image*' and then removing sudo apt-get remove linux-image-3.2.0-45-server.
I also cleared apt-cache apt-get clean.
Is there other solutions or cleaning to do to win space on the boot partition ?
Thanks for advices

Try
sudo apt-get autoremove
sudo apt-get autoclean
I think this problem was not caused by unused kernels but just try it and if it doesn't help, you could re-install your OS.

Related

how to fix broken /usr/bin/ld? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I accidentally execute the following command
sudo cp libcuda.so /usr/bin/ld
because i thought /usr/bin/ld is a directory, and I believe my /usr/bin/ld is broken now, at present I cannot use cmake anymore, does anyone know how can I fix this? thanks!
System: Ubuntu 20.04
One simple way to fix it would be to reinstall the package containing /usr/bin/ld.
sudo apt reinstall binutils

Can't install vmfs-tools [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I want to install vmfs-tools to read vmdk in linux.
OS is CentOs7.
I refer here
https://centos.pkgs.org/7/forensics-x86_64/vmfs-tools-0.2.5-2.el7.x86_64.rpm.html
I could install vmfs-tools-0.2.5-2.el7.x86_64.rpm in my CentOs.
But fail this command which for installing vmfs-tools.
"sudo yum --enablerepo=forensics install vmfs-tools"
This is fail message.
Please teach me if you know about this, Thank you.
Moved permanently
... Means the URL in the file.repo changed. See https://forensics.cert.org/
New direct URL to "cert" https://forensics.cert.org/centos/cert/7/x86_64/
# CentOS-CERT.repo
[cert]
name=CentOS-CERT
baseurl=https://forensics.cert.org/centos/cert/7/x86_64/
gpgcheck=0
enabled=1
Add cert.repo to /etc/yum.repos.d/ . Then you can do # yum install vmfs-tools
P.S.: The site "pkgs.org" will often show outdated information.

How to install jot command on Win10 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
How to install jot command on the Win10 because I use Git Bash to run a xxx.sh and show a exception as following:
jot: command not found
How can I solve this?
jot (seen here) is a BSD command.
So unless you can get it sources (usr.bin/jot/jot.c) and somehow recompile it for mingw, I don't see it available either on Linux or as an exe on Windows.
Update Nov. 2020: DimP adds in the comments:
For anyone looking for an answer on Debian etc. environments, Ubuntu has Athena-jot:
sudo apt-get update sudo apt-get install athena-jot

I get this message when trying to use the command modprode, bash: modprobe: command not found [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
How do I install modprobe? I have already installed kmod using apt-get. I'm using Debian 8. Thank you.
You should run the command modprobe as root , type :
su -
Enter your root password then run modprobe , or install and configure sudo
sudo modprobe module_name

Fedora 20 - how to install applications? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I just installed Fedora 20 on my laptop.
I've never been the Administrator of a Linux machine and so...I don't know how to install application on it! :D
Could you please help me ?
I tried using some command like :
sudo apt-get ....
But it fails because something is not installed, and I also tried to use the new software center, but there are no applications inside, I can only see some squares with 3 points inside them and that's all.
I just started using Linux, so I'm sorry in advance if I'll make stupid questions!
Thank'you all!
You need to type: sudo yum install "whatever without parenthesis".
Or, switch to the root account and you won't have to type sudo in front of everything.
You can use yum install application to install softwares on Fedora also refer http://www.wikihow.com/Install-Software-in-Fedora for your reference
On Fedora 22, it seems the app for managing software is no longer yum, but dnf. So, first update by running dnf updateinfo and then run gnome-software which is a GUI, or dnf search <something>.
dnf search java
dnf install java-1.8.0-openjdk

Resources