มีบางอย่างผิดปกติสำหรับ/bin/echo
คำสั่งของฉัน
sudo ls -al /bin/echo
-rwxr-xr-x 1 root utmp 0 Nov 11 18:05 /bin/echo
method1 เพื่อแก้ไข:
ฉันรู้ว่า/bin/echo
มันมีสิ่งcoretils
ต่อไปนี้
ลบ coreutils ก่อนจากนั้นติดตั้งอีกครั้ง
sudo apt-get remove coreutils
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
ฉันไม่สามารถลบออกได้มันไม่มีประโยชน์อะไรที่จะลบออกและติดตั้ง coreutils อีกครั้ง?
method2 เพื่อแก้ไข:
รวบรวม echo.c
cd /tmp
sudo apt-get source coreutils
cd coreutils-8.26
/tmp/coreutils-8.26$ ./configure
./configure: line 3492: config.log: Permission denied
./configure: line 3502: config.log: Permission denied
sudo
ผมขอปรับแต่งมันด้วย
sudo ./configure
configure: error: you should not run configure as root (set FORCE_UNSAFE_CONFIGURE=1 in environment to bypass this check)
วิธีแก้ไข/bin/echo
ในเดเบียนของฉัน
# apt install --reinstall coreutils
ควรจะทำงานได้เพียงไม่?