Giter Site home page Giter Site logo

fingerchar / fingernft Goto Github PK

View Code? Open in Web Editor NEW
1.9K 114.0 579.0 13.66 MB

FingerNFT是一款开源NFT市场,兼容Opensea、Rarible。

Home Page: https://www.fingerchar.com

License: MIT License

Shell 0.13% Java 19.81% JavaScript 4.69% Solidity 3.06% SCSS 1.40% HTML 0.02% Vue 11.90% CSS 58.99%
blockchain-technology nft-marketplace gamfication erc721 erc1155

fingernft's People

Contributors

fingerchar avatar jyckder avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fingernft's Issues

合约部署

安装手册中,合约部署配置如下:
config.js如下:
module.exports = {
privateKey: "", // 表示私钥
apiUrl: "https://rinkeby.infura.io/v3/{token}", // rinkeby的rpc
chainId: 4, // rinkeby 的network id
NFTName: "FingerNFT", // nft合约名称
miner: "0x974423356ba75b1aaf24bbec7c8cc8cf0678554f", // 铸造nft时,授权的钱包地址
beneficiary: "0x79aca18162577437cc763e36df07bac6938b0b69", // 收取手续费钱包地址
buyerFeeSigner: "0x364beb2672323691088d9055518b2f750d82eee5", // 交易授权签名
}
请问,buyerFeeSigner 这个参数从哪里来,meta钱包好像没法导出这个参数,但是看合约代码,这个参数好像就是一个地址。。能否告知一下

缺失重要代码

fingger-api工程下面缺乏:1.com.fingerchar.api.utils.DappCryptoUtil,2.com.fingerchar.api.vo.SignOrderInfo
poms文件里面:没有找到fingerchar-encry这个工程

need support initial test data

api server need run with data, but no initial data in project.
suppose provide initial data will help many developers.

good proj
thx for share.

create NFT721 error execution reverted: Roles: account already has role

nft合约部署,node deploy.js报错如下:
data {}
start deploying...
create NFT721...
create NFT721 error execution reverted: Roles: account already has role
0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500
请教是什么原因

项目部署

请问能否提供项目部署的详细介绍?????

合约部署

你好,请问部署合约出现这下面2种错误是什么导致的,如何解决

image

切换到测试链之后

image

Error when complie nft-pc

When complie nft-pc by npm i
Error
npm WARN deprecated [email protected]: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
npm ERR! code 1
npm ERR! path C:\Development\BlockChain\fingernft\nft-pc\node_modules\gulp-sass\node_modules\node-sass
npm ERR! command failed
npm ERR! command C:\Windows\system32\cmd.exe /d /s /c node scripts/build.js
npm ERR! Building: C:\Program Files\nodejs\node.exe C:\Development\BlockChain\fingernft\nft-pc\node_modules\gulp-sass\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp verb cli [

NFT721.sol. mint 报错 Roles: account is the zero address

(node:44483) UnhandledPromiseRejectionWarning: Error: execution reverted: Roles: account is the zero address

const utils1 = require("ethereumjs-util");

const hash = web3.utils.soliditySha3('0xe242DA23680Ff76ae1ce82C556744d754900Ab68',1)
console.log("1212:",hash.toString())
const privateKey = Buffer.from(SIGNER_PRIVATE_KEY, 'hex');
console.log(privateKey.toString("hex"))
const signature = utils1.ecsign(utils1.toBuffer(hash), privateKey,4);
const v = signature.v;
const r = utils1.bufferToHex(signature.r);
const s = utils1.bufferToHex(signature.s);
console.log(v + " "+" "+r+" "+s)

let token1155= new web3.eth.Contract(erc1155.abi,"0xe242DA23680Ff76ae1ce82C556744d754900Ab68")
token1155.methods.name().call().then(function (res){
console.log(res)
})
token721.methods.mint(
1,
v,
r,
s,
[{ recipient: "0x38cfCD90028Bf89d3c18D46C6FbA459d5aa49f2c", value: "100" }], "/ipfs/QmeQ6cKTav1sR1q6YUQArWEVsgJu7yAsZTVNPeLrVjPBTr").send({from:"0x38cfCD90028Bf89d3c18D46C6FbA459d5aa49f2c"}).then(function (recap){
console.log(recap)
})

部署到ropsten测试网 的时候 报bn.js TypeError: Cannot read properties of undefined (reading 'negative')

请问 部署合约nft-contract 到ropsten测试网 的时候 报bn.js TypeError: Cannot read properties of undefined (reading 'negative'),能看出原因吗?

start deploying...
create NFT721...
/home/reo/Downloads/fingernft-main/nft-contract/node_modules/ethereumjs-util/node_modules/bn.js/lib/bn.js:2770
if (this.negative === 0 && num.negative !== 0) return 1;
^

TypeError: Cannot read properties of undefined (reading 'negative')
at BN.cmp (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/ethereumjs-util/node_modules/bn.js/lib/bn.js:2770:36)
at BN.gt (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/ethereumjs-util/node_modules/bn.js/lib/bn.js:2804:17)
at Transaction._validateCannotExceedMaxInteger (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@ethereumjs/tx/dist/baseTransaction.js:291:81)
at new BaseTransaction (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@ethereumjs/tx/dist/baseTransaction.js:77:14)
at new Transaction (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@ethereumjs/tx/dist/legacyTransaction.js:20:9)
at Function.fromTxData (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@ethereumjs/tx/dist/legacyTransaction.js:60:16)
at HookedWalletSubprovider. (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@truffle/hdwallet-provider/dist/index.js:185:44)
at Generator.next ()
at fulfilled (/home/reo/Downloads/fingernft-main/nft-contract/node_modules/@truffle/hdwallet-provider/dist/index.js:24:58)
at processTicksAndRejections (node:internal/process/task_queues:96:5)

node deploy.js 无法部署NFT721

rinkeby环境、以及自己的测试链、新建的地址账户都无法部署成功
切换了不同的环境,但都报同样的错误,
打印日志如下:
[root@localhost scripts]# node deploy.js
data {}
start deploying...
create NFT721...
create NFT721 error execution reverted: Roles: account already has role
0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500

unlogin error

image

部署后,连接的是测试私链。发现钱包调用弹出签名确认,确认后,仍然无法创建NFT。请问是什么原因导致的,多次尝试(包括清除缓存,重新部署本地链)

关于不同平台NFT创建问题

请问README上说这个项目可以售卖其他平台创建的NFT。为什么我在opensea上创建的NFT,同一个账号地址,在Fingernft平台没有显示,都是在rinkeby测试网上。另外请问技术上能提示一下怎么实现知道用户地址下公链上的所有NFT的?

commission (by the owner)

Can the admin set a commission per sale made? So when a NFT is sold the commission will be received by the admin (owner)

请问 BuyerFeeSigner私钥是什么

请问BuyerFeeSigner私钥是指哪个账户的私钥?合约部署的那个账户还是购买方的账户?因为交易报错:
Transaction: 0x8f7ae5874aff89d0b65862c513ad8870d422a4bfe52bfd622c32c69ec0f20c36 exited with an error (status 0). Please check that the transaction: - satisfies all conditions set by Solidity require statements. - does not trigger a Solidity revert statement.

image
看上去是签名报错引起的,所以是私钥不对?应该用哪个私钥 配置到 BuyerFeeSigner 里呢?

能否提供docker部署方式呢?

看了一下部署文档,内容还是很多的。现在很多开源项目都提供docker部署方式,比较方便。能否提供一下呢?

IPFS在哪安装

我的电脑是windows系统,我装了宝塔Windows面板,请问下,安装步骤里的IPFS是在哪里安装呢?

Admin 的Java端错误日志 导致无法运行

在跑Admin后端的时候发生了一些错误日志,它是这样的:
2022-03-19 11:21:19,434 ERROR [Dapp-Scheduler-2] com.fingerchar.task.NftEventTask [NftEventTask.java : 83] nft event task error
java.lang.NullPointerException: null
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:110)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$0(NftDappEventUtils.java:98)
at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1580)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$1(NftDappEventUtils.java:92)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:91)
at com.fingerchar.task.NftEventTask.startProcessEvent(NftEventTask.java:80)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2022-03-19 11:21:30,006 ERROR [Dapp-Scheduler-1] com.fingerchar.task.NftEventTask [NftEventTask.java : 83] nft event task error
java.lang.NullPointerException: null
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:110)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$0(NftDappEventUtils.java:98)
at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1580)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$1(NftDappEventUtils.java:92)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:91)
at com.fingerchar.task.NftEventTask.startProcessEvent(NftEventTask.java:80)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2022-03-19 11:21:42,428 ERROR [Dapp-Scheduler-2] com.fingerchar.task.NftEventTask [NftEventTask.java : 83] nft event task error
java.lang.NullPointerException: null
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:110)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$0(NftDappEventUtils.java:98)
at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1580)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$1(NftDappEventUtils.java:92)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:91)
at com.fingerchar.task.NftEventTask.startProcessEvent(NftEventTask.java:80)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2022-03-19 11:21:55,105 ERROR [Dapp-Scheduler-3] com.fingerchar.task.NftEventTask [NftEventTask.java : 83] nft event task error
java.lang.NullPointerException: null
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:110)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$0(NftDappEventUtils.java:98)
at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1580)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$1(NftDappEventUtils.java:92)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:91)
at com.fingerchar.task.NftEventTask.startProcessEvent(NftEventTask.java:80)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2022-03-19 11:22:07,103 ERROR [Dapp-Scheduler-5] com.fingerchar.task.NftEventTask [NftEventTask.java : 83] nft event task error
java.lang.NullPointerException: null
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:110)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$0(NftDappEventUtils.java:98)
at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1580)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.lambda$decodeLog$1(NftDappEventUtils.java:92)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:647)
at com.fingerchar.utils.NftDappEventUtils.decodeLog(NftDappEventUtils.java:91)
at com.fingerchar.task.NftEventTask.startProcessEvent(NftEventTask.java:80)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

我不知道它是如何产生的,是哪里出的问题,或者是我的打包环境问题,他缺少什么吗?谢谢!

admin

can you please tell me more about how to run nft-admin and vue admin?

FINGERNFT后台管理系统只有后端代码,为啥没有前端代码。

1.目前市场代码前后端是有的,但没有初始化数据,前端会渲染失败;
2.接着上一个问题,如果没有初始化数据,起码应该有后台管理系统页前端页面才行,不然怎么配置初始化数据,现在只能靠看代码模拟数据来初始化系统。

chmod: changing permissions of '/bin/uptex': Operation not permitted

我的系统安装在乌班图下,没有以root身份登陆,当我执行/project/fingernft/nft-api/fingernft-api/dist/fingernft-api-0.1.0/start.sh的时候,报错如下:

chmod: changing permissions of '/bin/': Operation not permitted
chmod: changing permissions of '/bin/xrandr': Operation not permitted
chmod: changing permissions of '/bin/dh_perl_openssl': Operation not permitted
chmod: changing permissions of '/bin/arpaname': Operation not permitted
chmod: changing permissions of '/bin/sha384sum': Operation not permitted
chmod: changing permissions of '/bin/mkfontscale': Operation not permitted
chmod: changing permissions of '/bin/gyp': Operation not permitted
chmod: changing permissions of '/bin/dvi2tty': Operation not permitted
chmod: changing permissions of '/bin/mysqlpump': Operation not permitted
chmod: changing permissions of '/bin/dpkg-checkbuilddeps': Operation not permitted
chmod: changing permissions of '/bin/wget': Operation not permitted
chmod: changing permissions of '/bin/xsetmode': Operation not permitted
chmod: changing permissions of '/bin/dvitodvi': Operation not permitted
chmod: changing permissions of '/bin/sg_rtpg': Operation not permitted
chmod: changing permissions of '/bin/lowntfs-3g': Operation not permitted
chmod: changing permissions of '/bin/vptovf': Operation not permitted
chmod: changing permissions of '/bin/sg_zone': Operation not permitted
chmod: changing permissions of '/bin/telnet.netkit': Operation not permitted
chmod: changing permissions of '/bin/grub-mknetdir': Operation not permitted
chmod: changing permissions of '/bin/mysqld_safe': Operation not permitted
chmod: changing permissions of '/bin/bzip2': Operation not permitted
chmod: changing permissions of '/bin/do-release-upgrade': Operation not permitted
chmod: changing permissions of '/bin/rpcinfo': Operation not permitted
chmod: changing permissions of '/bin/jsonpatch': Operation not permitted
chmod: changing permissions of '/bin/sntp': Operation not permitted
chmod: changing permissions of '/bin/sort': Operation not permitted
chmod: changing permissions of '/bin/mysqldumpslow': Operation not permitted
chmod: changing permissions of '/bin/mountpoint': Operation not permitted
chmod: changing permissions of '/bin/ntpdc': Operation not permitted
chmod: changing permissions of '/bin/xdvi': Operation not permitted
chmod: changing permissions of '/bin/dpkg-gencontrol': Operation not permitted
chmod: changing permissions of '/bin/debconf-gettextize': Operation not permitted
chmod: changing permissions of '/bin/zipinfo': Operation not permitted
chmod: changing permissions of '/bin/dvips': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcov-9': Operation not permitted
chmod: changing permissions of '/bin/toe': Operation not permitted
chmod: changing permissions of '/bin/tic': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcc-9': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-c++filt': Operation not permitted
chmod: changing permissions of '/bin/jsonschema': Operation not permitted
chmod: changing permissions of '/bin/scsi_start': Operation not permitted
chmod: changing permissions of '/bin/dh_installtex': Operation not permitted
chmod: changing permissions of '/bin/delpart': Operation not permitted
chmod: changing permissions of '/bin/dh_autotools-dev_restoreconfig': Operation not permitted
chmod: changing permissions of '/bin/luajittex': Operation not permitted
chmod: changing permissions of '/bin/crash': Operation not permitted
chmod: changing permissions of '/bin/ipcmk': Operation not permitted
chmod: changing permissions of '/bin/flock': Operation not permitted
chmod: changing permissions of '/bin/listres': Operation not permitted
chmod: changing permissions of '/bin/pdftex': Operation not permitted
chmod: changing permissions of '/bin/nping': Operation not permitted
chmod: changing permissions of '/bin/sg_persist': Operation not permitted
chmod: changing permissions of '/bin/patgen': Operation not permitted
chmod: changing permissions of '/bin/zipgrep': Operation not permitted
chmod: changing permissions of '/bin/catman': Operation not permitted
chmod: changing permissions of '/bin/dbus-update-activation-environment': Operation not permitted
chmod: changing permissions of '/bin/xwininfo': Operation not permitted
chmod: changing permissions of '/bin/grub-script-check': Operation not permitted
chmod: changing permissions of '/bin/libnetcfg': Operation not permitted
chmod: changing permissions of '/bin/sb': Operation not permitted
chmod: changing permissions of '/bin/networkd-dispatcher': Operation not permitted
chmod: changing permissions of '/bin/setterm': Operation not permitted
chmod: changing permissions of '/bin/gpgv': Operation not permitted
chmod: changing permissions of '/bin/seq': Operation not permitted
chmod: changing permissions of '/bin/autoscan': Operation not permitted
chmod: changing permissions of '/bin/mandb': Operation not permitted
chmod: changing permissions of '/bin/btrfs-find-root': Operation not permitted
chmod: changing permissions of '/bin/gpgtar': Operation not permitted
chmod: changing permissions of '/bin/corelist': Operation not permitted
chmod: changing permissions of '/bin/gencat': Operation not permitted
chmod: changing permissions of '/bin/dmesg': Operation not permitted
chmod: changing permissions of '/bin/sg_map': Operation not permitted
chmod: changing permissions of '/bin/openssl': Operation not permitted
chmod: changing permissions of '/bin/dvipdft': Operation not permitted
chmod: changing permissions of '/bin/dpkg-distaddfile': Operation not permitted
chmod: changing permissions of '/bin/makejvf': Operation not permitted
chmod: changing permissions of '/bin/apport-bug': Operation not permitted
chmod: changing permissions of '/bin/sg_rep_zones': Operation not permitted
chmod: changing permissions of '/bin/bashbug': Operation not permitted
chmod: changing permissions of '/bin/ps2pdf13': Operation not permitted
chmod: changing permissions of '/bin/screendump': Operation not permitted
chmod: changing permissions of '/bin/rm': Operation not permitted
chmod: changing permissions of '/bin/boltctl': Operation not permitted
chmod: changing permissions of '/bin/hostnamectl': Operation not permitted
chmod: changing permissions of '/bin/mktemp': Operation not permitted
chmod: changing permissions of '/bin/gapplication': Operation not permitted
chmod: changing permissions of '/bin/sbverify': Operation not permitted
chmod: changing permissions of '/bin/ntfsls': Operation not permitted
chmod: changing permissions of '/bin/look': Operation not permitted
chmod: changing permissions of '/bin/kbd_mode': Operation not permitted
chmod: changing permissions of '/bin/vmware-checkvm': Operation not permitted
chmod: changing permissions of '/bin/debconf-updatepo': Operation not permitted
chmod: changing permissions of '/bin/scsi_satl': Operation not permitted
chmod: changing permissions of '/bin/users': Operation not permitted
chmod: changing permissions of '/bin/more': Operation not permitted
chmod: changing permissions of '/bin/bsd-from': Operation not permitted
chmod: changing permissions of '/bin/slabtop': Operation not permitted
chmod: changing permissions of '/bin/pdf2ps': Operation not permitted
chmod: changing permissions of '/bin/grub-editenv': Operation not permitted
chmod: changing permissions of '/bin/my_print_defaults': Operation not permitted
chmod: changing permissions of '/bin/xsubpp': Operation not permitted
chmod: changing permissions of '/bin/dpkg-parsechangelog': Operation not permitted
chmod: changing permissions of '/bin/sg_sat_set_features': Operation not permitted
chmod: changing permissions of '/bin/ssh-argv0': Operation not permitted
chmod: changing permissions of '/bin/dpkg-split': Operation not permitted
chmod: changing permissions of '/bin/tac': Operation not permitted
chmod: changing permissions of '/bin/pod2usage': Operation not permitted
chmod: changing permissions of '/bin/timedatectl': Operation not permitted
chmod: changing permissions of '/bin/wovp2ovf': Operation not permitted
chmod: changing permissions of '/bin/euptex': Operation not permitted
chmod: changing permissions of '/bin/tabs': Operation not permitted
chmod: changing permissions of '/bin/dpkg-divert': Operation not permitted
chmod: changing permissions of '/bin/lsb_release': Operation not permitted
chmod: changing permissions of '/bin/sg_sat_phy_event': Operation not permitted
chmod: changing permissions of '/bin/trial3': Operation not permitted
chmod: changing permissions of '/bin/btrfs-image': Operation not permitted
chmod: changing permissions of '/bin/lscpu': Operation not permitted
chmod: changing permissions of '/bin/dbus-monitor': Operation not permitted
chmod: changing permissions of '/bin/uniq': Operation not permitted
chmod: changing permissions of '/bin/lynx': Operation not permitted
chmod: changing permissions of '/bin/pdfopen': Operation not permitted
chmod: changing permissions of '/bin/which': Operation not permitted
chmod: changing permissions of '/bin/sg_verify': Operation not permitted
chmod: changing permissions of '/bin/ntfsinfo': Operation not permitted
chmod: changing permissions of '/bin/systemd-cgls': Operation not permitted
chmod: changing permissions of '/bin/bison.yacc': Operation not permitted
chmod: changing permissions of '/bin/dvipdf': Operation not permitted
chmod: changing permissions of '/bin/otangle': Operation not permitted
chmod: changing permissions of '/bin/gpgsm': Operation not permitted
chmod: changing permissions of '/bin/systemd-run': Operation not permitted
chmod: changing permissions of '/bin/uptftopl': Operation not permitted
chmod: changing permissions of '/bin/apt-mark': Operation not permitted
chmod: changing permissions of '/bin/mendex': Operation not permitted
chmod: changing permissions of '/bin/setpriv': Operation not permitted
chmod: changing permissions of '/bin/sg_write_buffer': Operation not permitted
chmod: changing permissions of '/bin/scriptreplay': Operation not permitted
chmod: changing permissions of '/bin/gettext.sh': Operation not permitted
chmod: changing permissions of '/bin/chmod': Operation not permitted
chmod: changing permissions of '/bin/ptardiff': Operation not permitted
chmod: changing permissions of '/bin/ldd': Operation not permitted
chmod: changing permissions of '/bin/ps2ps2': Operation not permitted
chmod: changing permissions of '/bin/cpan': Operation not permitted
chmod: changing permissions of '/bin/msgconv': Operation not permitted
chmod: changing permissions of '/bin/sg_decode_sense': Operation not permitted
chmod: changing permissions of '/bin/tsort': Operation not permitted
chmod: changing permissions of '/bin/dpkg-name': Operation not permitted
chmod: changing permissions of '/bin/byobu-select-backend': Operation not permitted
chmod: changing permissions of '/bin/xstdcmap': Operation not permitted
chmod: changing permissions of '/bin/weave': Operation not permitted
chmod: changing permissions of '/bin/pinky': Operation not permitted
chmod: changing permissions of '/bin/byobu-select-profile': Operation not permitted
chmod: changing permissions of '/bin/run-parts': Operation not permitted
chmod: changing permissions of '/bin/calendar': Operation not permitted
chmod: changing permissions of '/bin/systemd-notify': Operation not permitted
chmod: changing permissions of '/bin/fincore': Operation not permitted
chmod: changing permissions of '/bin/pkcon': Operation not permitted
chmod: changing permissions of '/bin/gunzip': Operation not permitted
chmod: changing permissions of '/bin/iceauth': Operation not permitted
chmod: changing permissions of '/bin/xvinfo': Operation not permitted
chmod: changing permissions of '/bin/makedumpfile': Operation not permitted
chmod: changing permissions of '/bin/gpgconf': Operation not permitted
chmod: changing permissions of '/bin/makedumpfile-R.pl': Operation not permitted
chmod: changing permissions of '/bin/getkeycodes': Operation not permitted
chmod: changing permissions of '/bin/volname': Operation not permitted
chmod: changing permissions of '/bin/ptftopl': Operation not permitted
chmod: changing permissions of '/bin/tar': Operation not permitted
chmod: changing permissions of '/bin/pinentry-curses': Operation not permitted
chmod: changing permissions of '/bin/sbvarsign': Operation not permitted
chmod: changing permissions of '/bin/sha224sum': Operation not permitted
chmod: changing permissions of '/bin/colcrt': Operation not permitted
chmod: changing permissions of '/bin/dviconcat': Operation not permitted
chmod: changing permissions of '/bin/mimetype': Operation not permitted
chmod: changing permissions of '/bin/gettextize': Operation not permitted
chmod: changing permissions of '/bin/xfd': Operation not permitted
chmod: changing permissions of '/bin/upmpost': Operation not permitted
chmod: changing permissions of '/bin/xterm': Operation not permitted
chmod: changing permissions of '/bin/grops': Operation not permitted
chmod: changing permissions of '/bin/grub-render-label': Operation not permitted
chmod: changing permissions of '/bin/docbook2tex': Operation not permitted
chmod: changing permissions of '/bin/ucf': Operation not permitted
chmod: changing permissions of '/bin/pod2html': Operation not permitted
chmod: changing permissions of '/bin/ltrace': Operation not permitted
chmod: changing permissions of '/bin/luatex': Operation not permitted
chmod: changing permissions of '/bin/mesa-overlay-control.py': Operation not permitted
chmod: changing permissions of '/bin/b2sum': Operation not permitted
chmod: changing permissions of '/bin/pldd': Operation not permitted
chmod: changing permissions of '/bin/sgp_dd': Operation not permitted
chmod: changing permissions of '/bin/scp': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-strings': Operation not permitted
chmod: changing permissions of '/bin/apt-key': Operation not permitted
chmod: changing permissions of '/bin/byobu-config': Operation not permitted
chmod: changing permissions of '/bin/prlimit': Operation not permitted
chmod: changing permissions of '/bin/vigpg': Operation not permitted
chmod: changing permissions of '/bin/racc2.7': Operation not permitted
chmod: changing permissions of '/bin/mk_modmap': Operation not permitted
chmod: changing permissions of '/bin/rdma': Operation not permitted
chmod: changing permissions of '/bin/perror': Operation not permitted
chmod: changing permissions of '/bin/su': Operation not permitted
chmod: changing permissions of '/bin/preconv': Operation not permitted
chmod: changing permissions of '/bin/deb-systemd-helper': Operation not permitted
chmod: changing permissions of '/bin/grog': Operation not permitted
chmod: changing permissions of '/bin/passwd': Operation not permitted
chmod: changing permissions of '/bin/gresource': Operation not permitted
chmod: changing permissions of '/bin/sensible-browser': Operation not permitted
chmod: changing permissions of '/bin/sg_start': Operation not permitted
chmod: changing permissions of '/bin/setmetamode': Operation not permitted
chmod: changing permissions of '/bin/pdfclose': Operation not permitted
chmod: changing permissions of '/bin/pphs': Operation not permitted
chmod: changing permissions of '/bin/pod2man': Operation not permitted
chmod: changing permissions of '/bin/systemd-delta': Operation not permitted
chmod: changing permissions of '/bin/pmap': Operation not permitted
chmod: changing permissions of '/bin/chvt': Operation not permitted
chmod: changing permissions of '/bin/sg_reassign': Operation not permitted
chmod: changing permissions of '/bin/perlthanks': Operation not permitted
chmod: changing permissions of '/bin/msgattrib': Operation not permitted
chmod: changing permissions of '/bin/dvipos': Operation not permitted
chmod: changing permissions of '/bin/finalrd': Operation not permitted
chmod: changing permissions of '/bin/2to3-2.7': Operation not permitted
chmod: changing permissions of '/bin/lsinitrd': Operation not permitted
chmod: changing permissions of '/bin/sg_rdac': Operation not permitted
chmod: changing permissions of '/bin/dd': Operation not permitted
chmod: changing permissions of '/bin/update-mime-database': Operation not permitted
chmod: changing permissions of '/bin/perlivp': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-g++-9': Operation not permitted
chmod: changing permissions of '/bin/pip3': Operation not permitted
chmod: changing permissions of '/bin/podebconf-display-po': Operation not permitted
chmod: changing permissions of '/bin/jw': Operation not permitted
chmod: changing permissions of '/bin/irb2.7': Operation not permitted
chmod: changing permissions of '/bin/dos2unix': Operation not permitted
chmod: changing permissions of '/bin/bootctl': Operation not permitted
chmod: changing permissions of '/bin/wdctl': Operation not permitted
chmod: changing permissions of '/bin/bdftopcf': Operation not permitted
chmod: changing permissions of '/bin/pktogf': Operation not permitted
chmod: changing permissions of '/bin/docbook2ps': Operation not permitted
chmod: changing permissions of '/bin/rb': Operation not permitted
chmod: changing permissions of '/bin/grub-file': Operation not permitted
chmod: changing permissions of '/bin/zipnote': Operation not permitted
chmod: changing permissions of '/bin/fold': Operation not permitted
chmod: changing permissions of '/bin/byobu-launcher': Operation not permitted
chmod: changing permissions of '/bin/ospcat': Operation not permitted
chmod: changing permissions of '/bin/systemctl': Operation not permitted
chmod: changing permissions of '/bin/ppltotf': Operation not permitted
chmod: changing permissions of '/bin/cvtsudoers': Operation not permitted
chmod: changing permissions of '/bin/shasum': Operation not permitted
chmod: changing permissions of '/bin/fallocate': Operation not permitted
chmod: changing permissions of '/bin/traceroute6.iputils': Operation not permitted
chmod: changing permissions of '/bin/diff3': Operation not permitted
chmod: changing permissions of '/bin/pollinate': Operation not permitted
chmod: changing permissions of '/bin/lsattr': Operation not permitted
chmod: changing permissions of '/bin/wifi-status': Operation not permitted
chmod: changing permissions of '/bin/nice': Operation not permitted
chmod: changing permissions of '/bin/xdvi-xaw': Operation not permitted
chmod: changing permissions of '/bin/systemd-tty-ask-password-agent': Operation not permitted
chmod: changing permissions of '/bin/printenv': Operation not permitted
chmod: changing permissions of '/bin/fuser': Operation not permitted
chmod: changing permissions of '/bin/pyclean': Operation not permitted
chmod: changing permissions of '/bin/mktexmf': Operation not permitted
chmod: changing permissions of '/bin/gftype': Operation not permitted
chmod: changing permissions of '/bin/iconv': Operation not permitted
chmod: changing permissions of '/bin/sotruss': Operation not permitted
chmod: changing permissions of '/bin/sudo': Operation not permitted
chmod: changing permissions of '/bin/kpseaccess': Operation not permitted
chmod: changing permissions of '/bin/nl': Operation not permitted
chmod: changing permissions of '/bin/lsipc': Operation not permitted
chmod: changing permissions of '/bin/dvilj4l': Operation not permitted
chmod: changing permissions of '/bin/koi8rxterm': Operation not permitted
chmod: changing permissions of '/bin/rmdir': Operation not permitted
chmod: changing permissions of '/bin/sg_read_buffer': Operation not permitted
chmod: changing permissions of '/bin/crontab': Operation not permitted
chmod: changing permissions of '/bin/fakeroot-tcp': Operation not permitted
chmod: changing permissions of '/bin/scsi_logging_level': Operation not permitted
chmod: changing permissions of '/bin/paste': Operation not permitted
chmod: changing permissions of '/bin/grub-syslinux2cfg': Operation not permitted
chmod: changing permissions of '/bin/tl-paper': Operation not permitted
chmod: changing permissions of '/bin/ntptrace': Operation not permitted
chmod: changing permissions of '/bin/xev': Operation not permitted
chmod: changing permissions of '/bin/byobu-disable-prompt': Operation not permitted
chmod: changing permissions of '/bin/sg_prevent': Operation not permitted
chmod: changing permissions of '/bin/sg_bg_ctl': Operation not permitted
chmod: changing permissions of '/bin/fakeroot-sysv': Operation not permitted
chmod: changing permissions of '/bin/t1unmac': Operation not permitted
chmod: changing permissions of '/bin/xdg-mime': Operation not permitted
chmod: changing permissions of '/bin/apt-config': Operation not permitted
chmod: changing permissions of '/bin/scsi_ready': Operation not permitted
chmod: changing permissions of '/bin/msginit': Operation not permitted
chmod: changing permissions of '/bin/perl5.30.0': Operation not permitted
chmod: changing permissions of '/bin/msgfmt': Operation not permitted
chmod: changing permissions of '/bin/grub-mklayout': Operation not permitted
chmod: changing permissions of '/bin/dash': Operation not permitted
chmod: changing permissions of '/bin/cat': Operation not permitted
chmod: changing permissions of '/bin/sg_write_verify': Operation not permitted
chmod: changing permissions of '/bin/tree': Operation not permitted
chmod: changing permissions of '/bin/renice': Operation not permitted
chmod: changing permissions of '/bin/lwp-dump': Operation not permitted
chmod: changing permissions of '/bin/dpkg-buildpackage': Operation not permitted
chmod: changing permissions of '/bin/uxterm': Operation not permitted
chmod: changing permissions of '/bin/fwupdagent': Operation not permitted
chmod: changing permissions of '/bin/dh_python3-ply': Operation not permitted
chmod: changing permissions of '/bin/du': Operation not permitted
chmod: changing permissions of '/bin/unicode_start': Operation not permitted
chmod: changing permissions of '/bin/mkdir': Operation not permitted
chmod: changing permissions of '/bin/git-shell': Operation not permitted
chmod: changing permissions of '/bin/dbus-send': Operation not permitted
chmod: changing permissions of '/bin/grub-glue-efi': Operation not permitted
chmod: changing permissions of '/bin/hwe-support-status': Operation not permitted
chmod: changing permissions of '/bin/unexpand': Operation not permitted
chmod: changing permissions of '/bin/ssh-agent': Operation not permitted
chmod: changing permissions of '/bin/aa-exec': Operation not permitted
chmod: changing permissions of '/bin/byobu-prompt': Operation not permitted
chmod: changing permissions of '/bin/systemd-ask-password': Operation not permitted
chmod: changing permissions of '/bin/msgcmp': Operation not permitted
chmod: changing permissions of '/bin/wofm2opl': Operation not permitted
chmod: changing permissions of '/bin/savelog': Operation not permitted
chmod: changing permissions of '/bin/vmware-vgauth-cmd': Operation not permitted
chmod: changing permissions of '/bin/udevadm': Operation not permitted
chmod: changing permissions of '/bin/dbus-uuidgen': Operation not permitted
chmod: changing permissions of '/bin/dvilj': Operation not permitted
chmod: changing permissions of '/bin/shuf': Operation not permitted
chmod: changing permissions of '/bin/locale': Operation not permitted
chmod: changing permissions of '/bin/cksum': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-strip': Operation not permitted
chmod: changing permissions of '/bin/make-first-existing-target': Operation not permitted
chmod: changing permissions of '/bin/fmt': Operation not permitted
chmod: changing permissions of '/bin/systemd-tmpfiles': Operation not permitted
chmod: changing permissions of '/bin/time': Operation not permitted
chmod: changing permissions of '/bin/factor': Operation not permitted
chmod: changing permissions of '/bin/myisam_ftdump': Operation not permitted
chmod: changing permissions of '/bin/flex': Operation not permitted
chmod: changing permissions of '/bin/bzmore': Operation not permitted
chmod: changing permissions of '/bin/vmware-vmblock-fuse': Operation not permitted
chmod: changing permissions of '/bin/eps2eps': Operation not permitted
chmod: changing permissions of '/bin/soelim': Operation not permitted
chmod: changing permissions of '/bin/byobu-launcher-uninstall': Operation not permitted
chmod: changing permissions of '/bin/pygettext2.7': Operation not permitted
chmod: changing permissions of '/bin/xlsfonts': Operation not permitted
chmod: changing permissions of '/bin/dpkg-scanpackages': Operation not permitted
chmod: changing permissions of '/bin/htop': Operation not permitted
chmod: changing permissions of '/bin/ntfsmove': Operation not permitted
chmod: changing permissions of '/bin/odvitype': Operation not permitted
chmod: changing permissions of '/bin/pip': Operation not permitted
chmod: changing permissions of '/bin/dirmngr-client': Operation not permitted
chmod: changing permissions of '/bin/dt2dv': Operation not permitted
chmod: changing permissions of '/bin/perldoc': Operation not permitted
chmod: changing permissions of '/bin/dpkg-genchanges': Operation not permitted
chmod: changing permissions of '/bin/autosp': Operation not permitted
chmod: changing permissions of '/bin/dumpkeys': Operation not permitted
chmod: changing permissions of '/bin/pfbtopfa': Operation not permitted
chmod: changing permissions of '/bin/mt-gnu': Operation not permitted
chmod: changing permissions of '/bin/lessecho': Operation not permitted
chmod: changing permissions of '/bin/grub-kbdcomp': Operation not permitted
chmod: changing permissions of '/bin/lsinitramfs': Operation not permitted
chmod: changing permissions of '/bin/acpi_listen': Operation not permitted
chmod: changing permissions of '/bin/sg_seek': Operation not permitted
chmod: changing permissions of '/bin/sfconv': Operation not permitted
chmod: changing permissions of '/bin/byobu-silent': Operation not permitted
chmod: changing permissions of '/bin/zdump': Operation not permitted
chmod: changing permissions of '/bin/nmap': Operation not permitted
chmod: changing permissions of '/bin/faked-sysv': Operation not permitted
chmod: changing permissions of '/bin/xdg-user-dir': Operation not permitted
chmod: changing permissions of '/bin/xmlcatalog': Operation not permitted
chmod: changing permissions of '/bin/kbdinfo': Operation not permitted
chmod: changing permissions of '/bin/automat-visualize3': Operation not permitted
chmod: changing permissions of '/bin/mv': Operation not permitted
chmod: changing permissions of '/bin/setsid': Operation not permitted
chmod: changing permissions of '/bin/ps': Operation not permitted
chmod: changing permissions of '/bin/perl5.30-x86_64-linux-gnu': Operation not permitted
chmod: changing permissions of '/bin/setupcon': Operation not permitted
chmod: changing permissions of '/bin/rake': Operation not permitted
chmod: changing permissions of '/bin/landscape-sysinfo': Operation not permitted
chmod: changing permissions of '/bin/sg_stream_ctl': Operation not permitted
chmod: changing permissions of '/bin/pfb2pfa': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcov-dump-9': Operation not permitted
chmod: changing permissions of '/bin/ps2pk': Operation not permitted
chmod: changing permissions of '/bin/byobu-ulevel': Operation not permitted
chmod: changing permissions of '/bin/nroff': Operation not permitted
chmod: changing permissions of '/bin/whatis': Operation not permitted
chmod: changing permissions of '/bin/autoconf': Operation not permitted
chmod: changing permissions of '/bin/dpkg-scansources': Operation not permitted
chmod: changing permissions of '/bin/piconv': Operation not permitted
chmod: changing permissions of '/bin/btrfs-select-super': Operation not permitted
chmod: changing permissions of '/bin/realpath': Operation not permitted
chmod: changing permissions of '/bin/x86_64-pc-linux-gnu-pkg-config': Operation not permitted
chmod: changing permissions of '/bin/fwupdtool': Operation not permitted
chmod: changing permissions of '/bin/dh_bash-completion': Operation not permitted
chmod: changing permissions of '/bin/apt': Operation not permitted
chmod: changing permissions of '/bin/msggrep': Operation not permitted
chmod: changing permissions of '/bin/fwupdmgr': Operation not permitted
chmod: changing permissions of '/bin/systemd-hwdb': Operation not permitted
chmod: changing permissions of '/bin/vmstat': Operation not permitted
chmod: changing permissions of '/bin/cautious-launcher': Operation not permitted
chmod: changing permissions of '/bin/xargs': Operation not permitted
chmod: changing permissions of '/bin/py3compile': Operation not permitted
chmod: changing permissions of '/bin/deb-systemd-invoke': Operation not permitted
chmod: changing permissions of '/bin/zipsplit': Operation not permitted
chmod: changing permissions of '/bin/ttf2pk': Operation not permitted
chmod: changing permissions of '/bin/resizecons': Operation not permitted
chmod: changing permissions of '/bin/dbus-run-session': Operation not permitted
chmod: changing permissions of '/bin/devnag': Operation not permitted
chmod: changing permissions of '/bin/dpkg-trigger': Operation not permitted
chmod: changing permissions of '/bin/gs': Operation not permitted
chmod: changing permissions of '/bin/tex2aspc': Operation not permitted
chmod: changing permissions of '/bin/pooltype': Operation not permitted
chmod: changing permissions of '/bin/nsupdate': Operation not permitted
chmod: changing permissions of '/bin/perlbug': Operation not permitted
chmod: changing permissions of '/bin/addpart': Operation not permitted
chmod: changing permissions of '/bin/lslogins': Operation not permitted
chmod: changing permissions of '/bin/faillog': Operation not permitted
chmod: changing permissions of '/bin/setkeycodes': Operation not permitted
chmod: changing permissions of '/bin/xauth': Operation not permitted
chmod: changing permissions of '/bin/hexdump': Operation not permitted
chmod: changing permissions of '/bin/tail': Operation not permitted
chmod: changing permissions of '/bin/grub-mkimage': Operation not permitted
chmod: changing permissions of '/bin/usbreset': Operation not permitted
chmod: changing permissions of '/bin/sg_raw': Operation not permitted
chmod: changing permissions of '/bin/colrm': Operation not permitted
chmod: changing permissions of '/bin/disdvi': Operation not permitted
chmod: changing permissions of '/bin/ptargrep': Operation not permitted
chmod: changing permissions of '/bin/xset': Operation not permitted
chmod: changing permissions of '/bin/xdpyinfo': Operation not permitted
chmod: changing permissions of '/bin/split': Operation not permitted
chmod: changing permissions of '/bin/grotty': Operation not permitted
chmod: changing permissions of '/bin/sg_emc_trespass': Operation not permitted
chmod: changing permissions of '/bin/deallocvt': Operation not permitted
chmod: changing permissions of '/bin/zgrep': Operation not permitted
chmod: changing permissions of '/bin/pk2bm': Operation not permitted
chmod: changing permissions of '/bin/gettext': Operation not permitted
chmod: changing permissions of '/bin/mkfontdir': Operation not permitted
chmod: changing permissions of '/bin/xmlto': Operation not permitted
chmod: changing permissions of '/bin/xfontsel': Operation not permitted
chmod: changing permissions of '/bin/msgcomm': Operation not permitted
chmod: changing permissions of '/bin/lspci': Operation not permitted
chmod: changing permissions of '/bin/innochecksum': Operation not permitted
chmod: changing permissions of '/bin/cut': Operation not permitted
chmod: changing permissions of '/bin/tempfile': Operation not permitted
chmod: changing permissions of '/bin/tload': Operation not permitted
chmod: changing permissions of '/bin/chown': Operation not permitted
chmod: changing permissions of '/bin/ntfswipe': Operation not permitted
chmod: changing permissions of '/bin/debconf-escape': Operation not permitted
chmod: changing permissions of '/bin/zip': Operation not permitted
chmod: changing permissions of '/bin/dpkg-query': Operation not permitted
chmod: changing permissions of '/bin/aleph': Operation not permitted
chmod: changing permissions of '/bin/getopt': Operation not permitted
chmod: changing permissions of '/bin/ntfscat': Operation not permitted
chmod: changing permissions of '/bin/wc': Operation not permitted
chmod: changing permissions of '/bin/findmnt': Operation not permitted
chmod: changing permissions of '/bin/gsdj500': Operation not permitted
chmod: changing permissions of '/bin/zipcloak': Operation not permitted
chmod: changing permissions of '/bin/systemd-cat': Operation not permitted
chmod: changing permissions of '/bin/c89-gcc': Operation not permitted
chmod: changing permissions of '/bin/tkconch3': Operation not permitted
chmod: changing permissions of '/bin/stdbuf': Operation not permitted
chmod: changing permissions of '/bin/mkindex': Operation not permitted
chmod: changing permissions of '/bin/pstree': Operation not permitted
chmod: changing permissions of '/bin/kill': Operation not permitted
chmod: changing permissions of '/bin/systemd-sysusers': Operation not permitted
chmod: changing permissions of '/bin/nproc': Operation not permitted
chmod: changing permissions of '/bin/install-info': Operation not permitted
chmod: changing permissions of '/bin/xmllint': Operation not permitted
chmod: changing permissions of '/bin/systemd-path': Operation not permitted
chmod: changing permissions of '/bin/grub-mkpasswd-pbkdf2': Operation not permitted
chmod: changing permissions of '/bin/vmtoolsd': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-size': Operation not permitted
chmod: changing permissions of '/bin/ttfdump': Operation not permitted
chmod: changing permissions of '/bin/fonttosfnt': Operation not permitted
chmod: changing permissions of '/bin/sz': Operation not permitted
chmod: changing permissions of '/bin/growpart': Operation not permitted
chmod: changing permissions of '/bin/xdg-settings': Operation not permitted
chmod: changing permissions of '/bin/dvisvgm': Operation not permitted
chmod: changing permissions of '/bin/ntfsfallocate': Operation not permitted
chmod: changing permissions of '/bin/mksquashfs': Operation not permitted
chmod: changing permissions of '/bin/cmp': Operation not permitted
chmod: changing permissions of '/bin/tmux': Operation not permitted
chmod: changing permissions of '/bin/column': Operation not permitted
chmod: changing permissions of '/bin/afm2pl': Operation not permitted
chmod: changing permissions of '/bin/omfonts': Operation not permitted
chmod: changing permissions of '/bin/rescan-scsi-bus.sh': Operation not permitted
chmod: changing permissions of '/bin/utmpdump': Operation not permitted
chmod: changing permissions of '/bin/rdoc2.7': Operation not permitted
chmod: changing permissions of '/bin/dvilj4': Operation not permitted
chmod: changing permissions of '/bin/otp2ocp': Operation not permitted
chmod: changing permissions of '/bin/pkmon': Operation not permitted
chmod: changing permissions of '/bin/clear_console': Operation not permitted
chmod: changing permissions of '/bin/sbattach': Operation not permitted
chmod: changing permissions of '/bin/ucfq': Operation not permitted
chmod: changing permissions of '/bin/showconsolefont': Operation not permitted
chmod: changing permissions of '/bin/t4ht': Operation not permitted
chmod: changing permissions of '/bin/migrate-pubring-from-classic-gpg': Operation not permitted
chmod: changing permissions of '/bin/prepmx': Operation not permitted
chmod: changing permissions of '/bin/sg_logs': Operation not permitted
chmod: changing permissions of '/bin/pf2afm': Operation not permitted
chmod: changing permissions of '/bin/mtrace': Operation not permitted
chmod: changing permissions of '/bin/routef': Operation not permitted
chmod: changing permissions of '/bin/jsonpointer': Operation not permitted
chmod: changing permissions of '/bin/mysqlcheck': Operation not permitted
chmod: changing permissions of '/bin/busctl': Operation not permitted
chmod: changing permissions of '/bin/uuidparse': Operation not permitted
chmod: changing permissions of '/bin/sg_write_long': Operation not permitted
chmod: changing permissions of '/bin/sessreg': Operation not permitted
chmod: changing permissions of '/bin/xgettext': Operation not permitted
chmod: changing permissions of '/bin/localectl': Operation not permitted
chmod: changing permissions of '/bin/encguess': Operation not permitted
chmod: changing permissions of '/bin/ls': Operation not permitted
chmod: changing permissions of '/bin/ospam': Operation not permitted
chmod: changing permissions of '/bin/recode-sr-latin': Operation not permitted
chmod: changing permissions of '/bin/newgrp': Operation not permitted
chmod: changing permissions of '/bin/clear': Operation not permitted
chmod: changing permissions of '/bin/uname': Operation not permitted
chmod: changing permissions of '/bin/lsusb': Operation not permitted
chmod: changing permissions of '/bin/groups': Operation not permitted
chmod: changing permissions of '/bin/ucs2any': Operation not permitted
chmod: changing permissions of '/bin/tpic2pdftex': Operation not permitted
chmod: changing permissions of '/bin/watchgnupg': Operation not permitted
chmod: changing permissions of '/bin/gpg-connect-agent': Operation not permitted
chmod: changing permissions of '/bin/systemd-analyze': Operation not permitted
chmod: changing permissions of '/bin/curl': Operation not permitted
chmod: changing permissions of '/bin/eject': Operation not permitted
chmod: changing permissions of '/bin/xmlif': Operation not permitted
chmod: changing permissions of '/bin/unsquashfs': Operation not permitted
chmod: changing permissions of '/bin/btrfstune': Operation not permitted
chmod: changing permissions of '/bin/ssh-import-id-lp': Operation not permitted
chmod: changing permissions of '/bin/pkcheck': Operation not permitted
chmod: changing permissions of '/bin/expand': Operation not permitted
chmod: changing permissions of '/bin/kbxutil': Operation not permitted
chmod: changing permissions of '/bin/sbsiglist': Operation not permitted
chmod: changing permissions of '/bin/dwz': Operation not permitted
chmod: changing permissions of '/bin/apport-unpack': Operation not permitted
chmod: changing permissions of '/bin/pathchk': Operation not permitted
chmod: changing permissions of '/bin/scsi_stop': Operation not permitted
chmod: changing permissions of '/bin/zfgrep': Operation not permitted
chmod: changing permissions of '/bin/conch3': Operation not permitted
chmod: changing permissions of '/bin/scor2prt': Operation not permitted
chmod: changing permissions of '/bin/rev': Operation not permitted
chmod: changing permissions of '/bin/dvihp': Operation not permitted
chmod: changing permissions of '/bin/vmware-hgfsclient': Operation not permitted
chmod: changing permissions of '/bin/lz4': Operation not permitted
chmod: changing permissions of '/bin/os-prober': Operation not permitted
chmod: changing permissions of '/bin/getent': Operation not permitted
chmod: changing permissions of '/bin/vmware-alias-import': Operation not permitted
chmod: changing permissions of '/bin/vmware-xferlogs': Operation not permitted
chmod: changing permissions of '/bin/pbibtex': Operation not permitted
chmod: changing permissions of '/bin/uppltotf': Operation not permitted
chmod: changing permissions of '/bin/login': Operation not permitted
chmod: changing permissions of '/bin/od': Operation not permitted
chmod: changing permissions of '/bin/echo': Operation not permitted
chmod: changing permissions of '/bin/vim.tiny': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-ranlib': Operation not permitted
chmod: changing permissions of '/bin/printafm': Operation not permitted
chmod: changing permissions of '/bin/ischroot': Operation not permitted
chmod: changing permissions of '/bin/db2html': Operation not permitted
chmod: changing permissions of '/bin/dirname': Operation not permitted
chmod: changing permissions of '/bin/fwupdate': Operation not permitted
chmod: changing permissions of '/bin/sg_test_rwbuf': Operation not permitted
chmod: changing permissions of '/bin/comm': Operation not permitted
chmod: changing permissions of '/bin/lsblk': Operation not permitted
chmod: changing permissions of '/bin/journalctl': Operation not permitted
chmod: changing permissions of '/bin/unattended-upgrade': Operation not permitted
chmod: changing permissions of '/bin/ttf2afm': Operation not permitted
chmod: changing permissions of '/bin/gdbus': Operation not permitted
chmod: changing permissions of '/bin/lastlog': Operation not permitted
chmod: changing permissions of '/bin/chage': Operation not permitted
chmod: changing permissions of '/bin/docbook2texi': Operation not permitted
chmod: changing permissions of '/bin/VGAuthService': Operation not permitted
chmod: changing permissions of '/bin/xdg-icon-resource': Operation not permitted
chmod: changing permissions of '/bin/h2ph': Operation not permitted
chmod: changing permissions of '/bin/mysqld_multi': Operation not permitted
chmod: changing permissions of '/bin/xzmore': Operation not permitted
chmod: changing permissions of '/bin/pbput': Operation not permitted
chmod: changing permissions of '/bin/zcmp': Operation not permitted
chmod: changing permissions of '/bin/rename.ul': Operation not permitted
chmod: changing permissions of '/bin/mysqlimport': Operation not permitted
chmod: changing permissions of '/bin/ip': Operation not permitted
chmod: changing permissions of '/bin/msgunfmt': Operation not permitted
chmod: changing permissions of '/bin/tput': Operation not permitted
chmod: changing permissions of '/bin/arping': Operation not permitted
chmod: changing permissions of '/bin/who': Operation not permitted
chmod: changing permissions of '/bin/systemd-stdio-bridge': Operation not permitted
chmod: changing permissions of '/bin/cpio-filter': Operation not permitted
chmod: changing permissions of '/bin/sg_reset_wp': Operation not permitted
chmod: changing permissions of '/bin/gsftopk': Operation not permitted
chmod: changing permissions of '/bin/sg_senddiag': Operation not permitted
chmod: changing permissions of '/bin/gzexe': Operation not permitted
chmod: changing permissions of '/bin/whoami': Operation not permitted
chmod: changing permissions of '/bin/mflua': Operation not permitted
chmod: changing permissions of '/bin/ping': Operation not permitted
chmod: changing permissions of '/bin/ncal': Operation not permitted
chmod: changing permissions of '/bin/expr': Operation not permitted
chmod: changing permissions of '/bin/psfxtable': Operation not permitted
chmod: changing permissions of '/bin/c_rehash': Operation not permitted
chmod: changing permissions of '/bin/instmodsh': Operation not permitted
chmod: changing permissions of '/bin/byobu-select-session': Operation not permitted
chmod: changing permissions of '/bin/docbook2pdf': Operation not permitted
chmod: changing permissions of '/bin/xzless': Operation not permitted
chmod: changing permissions of '/bin/col': Operation not permitted
chmod: changing permissions of '/bin/ed': Operation not permitted
chmod: changing permissions of '/bin/lesspipe': Operation not permitted
chmod: changing permissions of '/bin/zipdetails': Operation not permitted
chmod: changing permissions of '/bin/scsi_mandat': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-readelf': Operation not permitted
chmod: changing permissions of '/bin/git': Operation not permitted
chmod: changing permissions of '/bin/mysqlreport': Operation not permitted
chmod: changing permissions of '/bin/strace-log-merge': Operation not permitted
chmod: changing permissions of '/bin/dh_autotools-dev_updateconfig': Operation not permitted
chmod: changing permissions of '/bin/printf': Operation not permitted
chmod: changing permissions of '/bin/pmpost': Operation not permitted
chmod: changing permissions of '/bin/aa-enabled': Operation not permitted
chmod: changing permissions of '/bin/xkeystone': Operation not permitted
chmod: changing permissions of '/bin/funzip': Operation not permitted
chmod: changing permissions of '/bin/lnstat': Operation not permitted
chmod: changing permissions of '/bin/ctwill-refsort': Operation not permitted
chmod: changing permissions of '/bin/rx': Operation not permitted
chmod: changing permissions of '/bin/python3.8': Operation not permitted
chmod: changing permissions of '/bin/logname': Operation not permitted
chmod: changing permissions of '/bin/networkctl': Operation not permitted
chmod: changing permissions of '/bin/splain': Operation not permitted
chmod: changing permissions of '/bin/ipcrm': Operation not permitted
chmod: changing permissions of '/bin/txtconv': Operation not permitted
chmod: changing permissions of '/bin/scsi_temperature': Operation not permitted
chmod: changing permissions of '/bin/ctwill': Operation not permitted
chmod: changing permissions of '/bin/mf-nowin': Operation not permitted
chmod: changing permissions of '/bin/sg_scan': Operation not permitted
chmod: changing permissions of '/bin/ntfsdecrypt': Operation not permitted
chmod: changing permissions of '/bin/debconf-copydb': Operation not permitted
chmod: changing permissions of '/bin/ntfsusermap': Operation not permitted
chmod: changing permissions of '/bin/whiptail': Operation not permitted
chmod: changing permissions of '/bin/ssh-copy-id': Operation not permitted
chmod: changing permissions of '/bin/logger': Operation not permitted
chmod: changing permissions of '/bin/viewres': Operation not permitted
chmod: changing permissions of '/bin/setarch': Operation not permitted
chmod: changing permissions of '/bin/wopl2ofm': Operation not permitted
chmod: changing permissions of '/bin/dh_strip_nondeterminism': Operation not permitted
chmod: changing permissions of '/bin/vlna': Operation not permitted
chmod: changing permissions of '/bin/tclsh8.6': Operation not permitted
chmod: changing permissions of '/bin/xsltproc': Operation not permitted
chmod: changing permissions of '/bin/osgmlnorm': Operation not permitted
chmod: changing permissions of '/bin/debconf': Operation not permitted
chmod: changing permissions of '/bin/myisampack': Operation not permitted
chmod: changing permissions of '/bin/h2xs': Operation not permitted
chmod: changing permissions of '/bin/mysql': Operation not permitted
chmod: changing permissions of '/bin/basename': Operation not permitted
chmod: changing permissions of '/bin/codepage': Operation not permitted
chmod: changing permissions of '/bin/eptex': Operation not permitted
chmod: changing permissions of '/bin/gslj': Operation not permitted
chmod: changing permissions of '/bin/miniterm': Operation not permitted
chmod: changing permissions of '/bin/byobu-launcher-install': Operation not permitted
chmod: changing permissions of '/bin/gslp': Operation not permitted
chmod: changing permissions of '/bin/lwp-download': Operation not permitted
chmod: changing permissions of '/bin/ps2pdf': Operation not permitted
chmod: changing permissions of '/bin/whereis': Operation not permitted
chmod: changing permissions of '/bin/pdvitype': Operation not permitted
chmod: changing permissions of '/bin/ntpq': Operation not permitted
chmod: changing permissions of '/bin/tty': Operation not permitted
chmod: changing permissions of '/bin/msgexec': Operation not permitted
chmod: changing permissions of '/bin/sensible-editor': Operation not permitted
chmod: changing permissions of '/bin/byobu-quiet': Operation not permitted
chmod: changing permissions of '/bin/t1ascii': Operation not permitted
chmod: changing permissions of '/bin/resize': Operation not permitted
chmod: changing permissions of '/bin/ucfr': Operation not permitted
chmod: changing permissions of '/bin/mysql_migrate_keyring': Operation not permitted
chmod: changing permissions of '/bin/sg_ses_microcode': Operation not permitted
chmod: changing permissions of '/bin/automake-1.16': Operation not permitted
chmod: changing permissions of '/bin/tset': Operation not permitted
chmod: changing permissions of '/bin/dpkg-statoverride': Operation not permitted
chmod: changing permissions of '/bin/xzdiff': Operation not permitted
chmod: changing permissions of '/bin/sg_inq': Operation not permitted
chmod: changing permissions of '/bin/xdg-user-dirs-update': Operation not permitted
chmod: changing permissions of '/bin/rgrep': Operation not permitted
chmod: changing permissions of '/bin/lslocks': Operation not permitted
chmod: changing permissions of '/bin/dpkg-shlibdeps': Operation not permitted
chmod: changing permissions of '/bin/t1binary': Operation not permitted
chmod: changing permissions of '/bin/dpkg-genbuildinfo': Operation not permitted
chmod: changing permissions of '/bin/ntfs-3g.probe': Operation not permitted
chmod: changing permissions of '/bin/mesg': Operation not permitted
chmod: changing permissions of '/bin/msguniq': Operation not permitted
chmod: changing permissions of '/bin/xsetpointer': Operation not permitted
chmod: changing permissions of '/bin/perl': Operation not permitted
chmod: changing permissions of '/bin/xdg-desktop-menu': Operation not permitted
chmod: changing permissions of '/bin/ctangle': Operation not permitted
chmod: changing permissions of '/bin/erb2.7': Operation not permitted
chmod: changing permissions of '/bin/false': Operation not permitted
chmod: changing permissions of '/bin/t1asm': Operation not permitted
chmod: changing permissions of '/bin/sg_stpg': Operation not permitted
chmod: changing permissions of '/bin/tex': Operation not permitted
chmod: changing permissions of '/bin/ptex': Operation not permitted
chmod: changing permissions of '/bin/byobu-ctrl-a': Operation not permitted
chmod: changing permissions of '/bin/gpgparsemail': Operation not permitted
chmod: changing permissions of '/bin/batch': Operation not permitted
chmod: changing permissions of '/bin/linux-update-symlinks': Operation not permitted
chmod: changing permissions of '/bin/egrep': Operation not permitted
chmod: changing permissions of '/bin/pycompile': Operation not permitted
chmod: changing permissions of '/bin/docbook2man': Operation not permitted
chmod: changing permissions of '/bin/msgen': Operation not permitted
chmod: changing permissions of '/bin/manpath': Operation not permitted
chmod: changing permissions of '/bin/dfu-tool': Operation not permitted
chmod: changing permissions of '/bin/peekfd': Operation not permitted
chmod: changing permissions of '/bin/kpsereadlink': Operation not permitted
chmod: changing permissions of '/bin/tftopl': Operation not permitted
chmod: changing permissions of '/bin/dvicopy': Operation not permitted
chmod: changing permissions of '/bin/enc2xs': Operation not permitted
chmod: changing permissions of '/bin/docbook2dvi': Operation not permitted
chmod: changing permissions of '/bin/lzmainfo': Operation not permitted
chmod: changing permissions of '/bin/xdg-open': Operation not permitted
chmod: changing permissions of '/bin/ss': Operation not permitted
chmod: changing permissions of '/bin/unzip': Operation not permitted
chmod: changing permissions of '/bin/byobu-shell': Operation not permitted
chmod: changing permissions of '/bin/mimeopen': Operation not permitted
chmod: changing permissions of '/bin/resizepart': Operation not permitted
chmod: changing permissions of '/bin/netkit-ftp': Operation not permitted
chmod: changing permissions of '/bin/loginctl': Operation not permitted
chmod: changing permissions of '/bin/byobu-enable-prompt': Operation not permitted
chmod: changing permissions of '/bin/sum': Operation not permitted
chmod: changing permissions of '/bin/mysqldump': Operation not permitted
chmod: changing permissions of '/bin/sg_map26': Operation not permitted
chmod: changing permissions of '/bin/vim.basic': Operation not permitted
chmod: changing permissions of '/bin/pkaction': Operation not permitted
chmod: changing permissions of '/bin/tex4ht': Operation not permitted
chmod: changing permissions of '/bin/ckeygen3': Operation not permitted
chmod: changing permissions of '/bin/autoupdate': Operation not permitted
chmod: changing permissions of '/bin/calc_tickadj': Operation not permitted
chmod: changing permissions of '/bin/sbkeysync': Operation not permitted
chmod: changing permissions of '/bin/nslookup': Operation not permitted
chmod: changing permissions of '/bin/bibtex.original': Operation not permitted
chmod: changing permissions of '/bin/sgmlspl': Operation not permitted
chmod: changing permissions of '/bin/infocmp': Operation not permitted
chmod: changing permissions of '/bin/dracut-catimages': Operation not permitted
chmod: changing permissions of '/bin/sg_dd': Operation not permitted
chmod: changing permissions of '/bin/touch': Operation not permitted
chmod: changing permissions of '/bin/myisamchk': Operation not permitted
chmod: changing permissions of '/bin/head': Operation not permitted
chmod: changing permissions of '/bin/tangle': Operation not permitted
chmod: changing permissions of '/bin/systemd-socket-activate': Operation not permitted
chmod: changing permissions of '/bin/cpan5.30-x86_64-linux-gnu': Operation not permitted
chmod: changing permissions of '/bin/chsh': Operation not permitted
chmod: changing permissions of '/bin/at': Operation not permitted
chmod: changing permissions of '/bin/uptime': Operation not permitted
chmod: changing permissions of '/bin/systemd-mount': Operation not permitted
chmod: changing permissions of '/bin/script': Operation not permitted
chmod: changing permissions of '/bin/fusermount': Operation not permitted
chmod: changing permissions of '/bin/byobu-status-detail': Operation not permitted
chmod: changing permissions of '/bin/ps2pdf14': Operation not permitted
chmod: changing permissions of '/bin/sg_read_block_limits': Operation not permitted
chmod: changing permissions of '/bin/xrdb': Operation not permitted
chmod: changing permissions of '/bin/chardetect3': Operation not permitted
chmod: changing permissions of '/bin/sginfo': Operation not permitted
chmod: changing permissions of '/bin/ctwill-twinx': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcc-ranlib-9': Operation not permitted
chmod: changing permissions of '/bin/dpkg': Operation not permitted
chmod: changing permissions of '/bin/lshw': Operation not permitted
chmod: changing permissions of '/bin/lwp-mirror': Operation not permitted
chmod: changing permissions of '/bin/mpost': Operation not permitted
chmod: changing permissions of '/bin/sg_write_x': Operation not permitted
chmod: changing permissions of '/bin/sdiff': Operation not permitted
chmod: changing permissions of '/bin/stty': Operation not permitted
chmod: changing permissions of '/bin/ruby2.7': Operation not permitted
chmod: changing permissions of '/bin/setlogcons': Operation not permitted
chmod: changing permissions of '/bin/gawk': Operation not permitted
chmod: changing permissions of '/bin/dvispc': Operation not permitted
chmod: changing permissions of '/bin/lcf': Operation not permitted
chmod: changing permissions of '/bin/screen': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-cpp-9': Operation not permitted
chmod: changing permissions of '/bin/pgrep': Operation not permitted
chmod: changing permissions of '/bin/gpg-wks-server': Operation not permitted
chmod: changing permissions of '/bin/curl-config': Operation not permitted
chmod: changing permissions of '/bin/byobu-ugraph': Operation not permitted
chmod: changing permissions of '/bin/ps2pdfwr': Operation not permitted
chmod: changing permissions of '/bin/synctex': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gprof': Operation not permitted
chmod: changing permissions of '/bin/podchecker': Operation not permitted
chmod: changing permissions of '/bin/xmodmap': Operation not permitted
chmod: changing permissions of '/bin/chkdvifont': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcc-ar-9': Operation not permitted
chmod: changing permissions of '/bin/python2.7': Operation not permitted
chmod: changing permissions of '/bin/dh_installxmlcatalogs': Operation not permitted
chmod: changing permissions of '/bin/dbus-daemon': Operation not permitted
chmod: changing permissions of '/bin/ssh-keygen': Operation not permitted
chmod: changing permissions of '/bin/bash': Operation not permitted
chmod: changing permissions of '/bin/shred': Operation not permitted
chmod: changing permissions of '/bin/rz': Operation not permitted
chmod: changing permissions of '/bin/docbook2html': Operation not permitted
chmod: changing permissions of '/bin/myisamlog': Operation not permitted
chmod: changing permissions of '/bin/locale-check': Operation not permitted
chmod: changing permissions of '/bin/ntfscmp': Operation not permitted
chmod: changing permissions of '/bin/run-one': Operation not permitted
chmod: changing permissions of '/bin/sg_compare_and_write': Operation not permitted
chmod: changing permissions of '/bin/bdftruncate': Operation not permitted
chmod: changing permissions of '/bin/lsof': Operation not permitted
chmod: changing permissions of '/bin/zegrep': Operation not permitted
chmod: changing permissions of '/bin/taskset': Operation not permitted
chmod: changing permissions of '/bin/bzcat': Operation not permitted
chmod: changing permissions of '/bin/msxlint': Operation not permitted
chmod: changing permissions of '/bin/mcookie': Operation not permitted
chmod: changing permissions of '/bin/true': Operation not permitted
chmod: changing permissions of '/bin/linux-boot-prober': Operation not permitted
chmod: changing permissions of '/bin/lesskey': Operation not permitted
chmod: changing permissions of '/bin/pwd': Operation not permitted
chmod: changing permissions of '/bin/byobu': Operation not permitted
chmod: changing permissions of '/bin/vmware-toolbox-cmd': Operation not permitted
chmod: changing permissions of '/bin/byobu-export': Operation not permitted
chmod: changing permissions of '/bin/grub-mkrelpath': Operation not permitted
chmod: changing permissions of '/bin/bundle2.7': Operation not permitted
chmod: changing permissions of '/bin/fgrep': Operation not permitted
chmod: changing permissions of '/bin/gio': Operation not permitted
chmod: changing permissions of '/bin/ssh-add': Operation not permitted
chmod: changing permissions of '/bin/autom4te': Operation not permitted
chmod: changing permissions of '/bin/bison': Operation not permitted
chmod: changing permissions of '/bin/outocp': Operation not permitted
chmod: changing permissions of '/bin/byobu-janitor': Operation not permitted
chmod: changing permissions of '/bin/mysql_secure_installation': Operation not permitted
chmod: changing permissions of '/bin/ptar': Operation not permitted
chmod: changing permissions of '/bin/py3clean': Operation not permitted
chmod: changing permissions of '/bin/mysqladmin': Operation not permitted
chmod: changing permissions of '/bin/neqn': Operation not permitted
chmod: changing permissions of '/bin/xdg-screensaver': Operation not permitted
chmod: changing permissions of '/bin/faked-tcp': Operation not permitted
chmod: changing permissions of '/bin/editres': Operation not permitted
chmod: changing permissions of '/bin/man-recode': Operation not permitted
chmod: changing permissions of '/bin/pktype': Operation not permitted
chmod: changing permissions of '/bin/run-mailcap': Operation not permitted
chmod: changing permissions of '/bin/chattr': Operation not permitted
chmod: changing permissions of '/bin/sha256sum': Operation not permitted
chmod: changing permissions of '/bin/sg_read': Operation not permitted
chmod: changing permissions of '/bin/byobu-status': Operation not permitted
chmod: changing permissions of '/bin/ttf2tfm': Operation not permitted
chmod: changing permissions of '/bin/podebconf-report-po': Operation not permitted
chmod: changing permissions of '/bin/numfmt': Operation not permitted
chmod: changing permissions of '/bin/col1': Operation not permitted
chmod: changing permissions of '/bin/mysqlbinlog': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-objcopy': Operation not permitted
chmod: changing permissions of '/bin/sg_unmap': Operation not permitted
chmod: changing permissions of '/bin/dirmngr': Operation not permitted
chmod: changing permissions of '/bin/ntfsfix': Operation not permitted
chmod: changing permissions of '/bin/vftovp': Operation not permitted
chmod: changing permissions of '/bin/last': Operation not permitted
chmod: changing permissions of '/bin/sg_sat_identify': Operation not permitted
chmod: changing permissions of '/bin/mkocp': Operation not permitted
chmod: changing permissions of '/bin/afm2tfm': Operation not permitted
chmod: changing permissions of '/bin/expiry': Operation not permitted
chmod: changing permissions of '/bin/uuidgen': Operation not permitted
chmod: changing permissions of '/bin/systemd-machine-id-setup': Operation not permitted
chmod: changing permissions of '/bin/df': Operation not permitted
chmod: changing permissions of '/bin/systemd-escape': Operation not permitted
chmod: changing permissions of '/bin/byobu-launch': Operation not permitted
chmod: changing permissions of '/bin/base64': Operation not permitted
chmod: changing permissions of '/bin/fwupdtpmevlog': Operation not permitted
chmod: changing permissions of '/bin/mktextfm': Operation not permitted
chmod: changing permissions of '/bin/crc32': Operation not permitted
chmod: changing permissions of '/bin/ubuntu-advantage': Operation not permitted
chmod: changing permissions of '/bin/vimtutor': Operation not permitted
chmod: changing permissions of '/bin/plymouth': Operation not permitted
chmod: changing permissions of '/bin/mysqlslap': Operation not permitted
chmod: changing permissions of '/bin/helpztags': Operation not permitted
chmod: changing permissions of '/bin/sleep': Operation not permitted
chmod: changing permissions of '/bin/readlink': Operation not permitted
chmod: changing permissions of '/bin/wish8.6': Operation not permitted
chmod: changing permissions of '/bin/sg_reset': Operation not permitted
chmod: changing permissions of '/bin/dvilj2p': Operation not permitted
chmod: changing permissions of '/bin/fgconsole': Operation not permitted
chmod: changing permissions of '/bin/ssh-import-id': Operation not permitted
chmod: changing permissions of '/bin/ntfscluster': Operation not permitted
chmod: changing permissions of '/bin/grub-mkfont': Operation not permitted
chmod: changing permissions of '/bin/sg_timestamp': Operation not permitted
chmod: changing permissions of '/bin/makeindex': Operation not permitted
chmod: changing permissions of '/bin/mktexlsr': Operation not permitted
chmod: changing permissions of '/bin/ntfsrecover': Operation not permitted
chmod: changing permissions of '/bin/xlsclients': Operation not permitted
chmod: changing permissions of '/bin/ps2epsi': Operation not permitted
chmod: changing permissions of '/bin/luit': Operation not permitted
chmod: changing permissions of '/bin/apt-sortpkgs': Operation not permitted
chmod: changing permissions of '/bin/l4p-tmpl': Operation not permitted
chmod: changing permissions of '/bin/debconf-apt-progress': Operation not permitted
chmod: changing permissions of '/bin/msgfilter': Operation not permitted
chmod: changing permissions of '/bin/sg_wr_mode': Operation not permitted
chmod: changing permissions of '/bin/systemd-id128': Operation not permitted
chmod: changing permissions of '/bin/oem-getlogs': Operation not permitted
chmod: changing permissions of '/bin/ntpsweep': Operation not permitted
chmod: changing permissions of '/bin/bibtexu': Operation not permitted
chmod: changing permissions of '/bin/ibd2sdi': Operation not permitted
chmod: changing permissions of '/bin/axohelp': Operation not permitted
chmod: changing permissions of '/bin/chrt': Operation not permitted
chmod: changing permissions of '/bin/grub-menulst2cfg': Operation not permitted
chmod: changing permissions of '/bin/sg_copy_results': Operation not permitted
chmod: changing permissions of '/bin/apport-cli': Operation not permitted
chmod: changing permissions of '/bin/getconf': Operation not permitted
chmod: changing permissions of '/bin/dbus-cleanup-sockets': Operation not permitted
chmod: changing permissions of '/bin/mfluajit': Operation not permitted
chmod: changing permissions of '/bin/lsns': Operation not permitted
chmod: changing permissions of '/bin/skill': Operation not permitted
chmod: changing permissions of '/bin/pr': Operation not permitted
chmod: changing permissions of '/bin/apt-extracttemplates': Operation not permitted
chmod: changing permissions of '/bin/sg_get_config': Operation not permitted
chmod: changing permissions of '/bin/killall': Operation not permitted
chmod: changing permissions of '/bin/bzdiff': Operation not permitted
chmod: changing permissions of '/bin/byobu-reconnect-sockets': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcc-nm-9': Operation not permitted
chmod: changing permissions of '/bin/sg_xcopy': Operation not permitted
chmod: changing permissions of '/bin/xdg-desktop-icon': Operation not permitted
chmod: changing permissions of '/bin/dpkg-mergechangelogs': Operation not permitted
chmod: changing permissions of '/bin/sha1sum': Operation not permitted
chmod: changing permissions of '/bin/pdftosrc': Operation not permitted
chmod: changing permissions of '/bin/json_pp': Operation not permitted
chmod: changing permissions of '/bin/cp': Operation not permitted
chmod: changing permissions of '/bin/pyjwt3': Operation not permitted
chmod: changing permissions of '/bin/unix2dos': Operation not permitted
chmod: changing permissions of '/bin/mknod': Operation not permitted
chmod: changing permissions of '/bin/xdg-email': Operation not permitted
chmod: changing permissions of '/bin/gem2.7': Operation not permitted
chmod: changing permissions of '/bin/lxterm': Operation not permitted
chmod: changing permissions of '/bin/vmware-namespace-cmd': Operation not permitted
chmod: changing permissions of '/bin/gsnd': Operation not permitted
chmod: changing permissions of '/bin/pydoc3.8': Operation not permitted
chmod: changing permissions of '/bin/ssh': Operation not permitted
chmod: changing permissions of '/bin/setfont': Operation not permitted
chmod: changing permissions of '/bin/xetex': Operation not permitted
chmod: changing permissions of '/bin/mktexpk': Operation not permitted
chmod: changing permissions of '/bin/info': Operation not permitted
chmod: changing permissions of '/bin/xmessage': Operation not permitted
chmod: changing permissions of '/bin/uncompress': Operation not permitted
chmod: changing permissions of '/bin/kpsestat': Operation not permitted
chmod: changing permissions of '/bin/unicode_stop': Operation not permitted
chmod: changing permissions of '/bin/purge-old-kernels': Operation not permitted
chmod: changing permissions of '/bin/showrgb': Operation not permitted
chmod: changing permissions of '/bin/eqn': Operation not permitted
chmod: changing permissions of '/bin/sync': Operation not permitted
chmod: changing permissions of '/bin/base32': Operation not permitted
chmod: changing permissions of '/bin/xrefresh': Operation not permitted
chmod: changing permissions of '/bin/sprof': Operation not permitted
chmod: changing permissions of '/bin/file': Operation not permitted
chmod: changing permissions of '/bin/sed': Operation not permitted
chmod: changing permissions of '/bin/xkill': Operation not permitted
chmod: changing permissions of '/bin/grub-fstest': Operation not permitted
chmod: changing permissions of '/bin/twistd3': Operation not permitted
chmod: changing permissions of '/bin/tracepath': Operation not permitted
chmod: changing permissions of '/bin/grep': Operation not permitted
chmod: changing permissions of '/bin/scsi_readcap': Operation not permitted
chmod: changing permissions of '/bin/stat': Operation not permitted
chmod: changing permissions of '/bin/keyctl': Operation not permitted
chmod: changing permissions of '/bin/znew': Operation not permitted
chmod: changing permissions of '/bin/gpg': Operation not permitted
chmod: changing permissions of '/bin/dblatex': Operation not permitted
chmod: changing permissions of '/bin/mysql_config_editor': Operation not permitted
chmod: changing permissions of '/bin/sg_get_lba_status': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-elfedit': Operation not permitted
chmod: changing permissions of '/bin/twist3': Operation not permitted
chmod: changing permissions of '/bin/c99-gcc': Operation not permitted
chmod: changing permissions of '/bin/sg_luns': Operation not permitted
chmod: changing permissions of '/bin/mysql_tzinfo_to_sql': Operation not permitted
chmod: changing permissions of '/bin/cweave': Operation not permitted
chmod: changing permissions of '/bin/apt-get': Operation not permitted
chmod: changing permissions of '/bin/zless': Operation not permitted
chmod: changing permissions of '/bin/xlsatoms': Operation not permitted
chmod: changing permissions of '/bin/id': Operation not permitted
chmod: changing permissions of '/bin/rpcgen': Operation not permitted
chmod: changing permissions of '/bin/pmxab': Operation not permitted
chmod: changing permissions of '/bin/dpkg-architecture': Operation not permitted
chmod: changing permissions of '/bin/sg_ses': Operation not permitted
chmod: changing permissions of '/bin/tr': Operation not permitted
chmod: changing permissions of '/bin/wovf2ovp': Operation not permitted
chmod: changing permissions of '/bin/ul': Operation not permitted
chmod: changing permissions of '/bin/dviselect': Operation not permitted
chmod: changing permissions of '/bin/sftp': Operation not permitted
chmod: changing permissions of '/bin/gregorio': Operation not permitted
chmod: changing permissions of '/bin/osx': Operation not permitted
chmod: changing permissions of '/bin/onsgmls': Operation not permitted
chmod: changing permissions of '/bin/mtr-packet': Operation not permitted
chmod: changing permissions of '/bin/btrfs': Operation not permitted
chmod: changing permissions of '/bin/dpkg-maintscript-helper': Operation not permitted
chmod: changing permissions of '/bin/nano': Operation not permitted
chmod: changing permissions of '/bin/sg_safte': Operation not permitted
chmod: changing permissions of '/bin/grub-mount': Operation not permitted
chmod: changing permissions of '/bin/teckit_compile': Operation not permitted
chmod: changing permissions of '/bin/mtr': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-addr2line': Operation not permitted
chmod: changing permissions of '/bin/bsd-write': Operation not permitted
chmod: changing permissions of '/bin/dpkg-source': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-as': Operation not permitted
chmod: changing permissions of '/bin/tie': Operation not permitted
chmod: changing permissions of '/bin/byobu-disable': Operation not permitted
chmod: changing permissions of '/bin/gftodvi': Operation not permitted
chmod: changing permissions of '/bin/podselect': Operation not permitted
chmod: changing permissions of '/bin/m4': Operation not permitted
chmod: changing permissions of '/bin/kmod': Operation not permitted
chmod: changing permissions of '/bin/sgm_dd': Operation not permitted
chmod: changing permissions of '/bin/ssh-keyscan': Operation not permitted
chmod: changing permissions of '/bin/mag': Operation not permitted
chmod: changing permissions of '/bin/upmendex': Operation not permitted
chmod: changing permissions of '/bin/sg_ident': Operation not permitted
chmod: changing permissions of '/bin/showkey': Operation not permitted
chmod: changing permissions of '/bin/dh_python2': Operation not permitted
chmod: changing permissions of '/bin/t1mac': Operation not permitted
chmod: changing permissions of '/bin/ionice': Operation not permitted
chmod: changing permissions of '/bin/nsenter': Operation not permitted
chmod: changing permissions of '/bin/mkfifo': Operation not permitted
chmod: changing permissions of '/bin/dv2dt': Operation not permitted
chmod: changing permissions of '/bin/strace': Operation not permitted
chmod: changing permissions of '/bin/linux-check-removal': Operation not permitted
chmod: changing permissions of '/bin/po2debconf': Operation not permitted
chmod: changing permissions of '/bin/mft': Operation not permitted
chmod: changing permissions of '/bin/update-alternatives': Operation not permitted
chmod: changing permissions of '/bin/localedef': Operation not permitted
chmod: changing permissions of '/bin/grub-mkrescue': Operation not permitted
chmod: changing permissions of '/bin/gsettings': Operation not permitted
chmod: changing permissions of '/bin/nc.openbsd': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-dwp': Operation not permitted
chmod: changing permissions of '/bin/pwdx': Operation not permitted
chmod: changing permissions of '/bin/apt-cache': Operation not permitted
chmod: changing permissions of '/bin/xsetroot': Operation not permitted
chmod: changing permissions of '/bin/ptx': Operation not permitted
chmod: changing permissions of '/bin/ps2pdf12': Operation not permitted
chmod: changing permissions of '/bin/ifnames': Operation not permitted
chmod: changing permissions of '/bin/catchsegv': Operation not permitted
chmod: changing permissions of '/bin/arch': Operation not permitted
chmod: changing permissions of '/bin/gpg-zip': Operation not permitted
chmod: changing permissions of '/bin/gsdj': Operation not permitted
chmod: changing permissions of '/bin/xcmsdb': Operation not permitted
chmod: changing permissions of '/bin/usb-devices': Operation not permitted
chmod: changing permissions of '/bin/tee': Operation not permitted
chmod: changing permissions of '/bin/ckbcomp': Operation not permitted
chmod: changing permissions of '/bin/node': Operation not permitted
chmod: changing permissions of '/bin/gftopk': Operation not permitted
chmod: changing permissions of '/bin/cpio': Operation not permitted
chmod: changing permissions of '/bin/docbook2rtf': Operation not permitted
chmod: changing permissions of '/bin/top': Operation not permitted
chmod: changing permissions of '/bin/pastebinit': Operation not permitted
chmod: changing permissions of '/bin/link': Operation not permitted
chmod: changing permissions of '/bin/bzgrep': Operation not permitted
chmod: changing permissions of '/bin/pygettext3.8': Operation not permitted
chmod: changing permissions of '/bin/dvibook': Operation not permitted
chmod: changing permissions of '/bin/unmkinitramfs': Operation not permitted
chmod: changing permissions of '/bin/ntfstruncate': Operation not permitted
chmod: changing permissions of '/bin/vdir': Operation not permitted
chmod: changing permissions of '/bin/xvidtune': Operation not permitted
chmod: changing permissions of '/bin/xhost': Operation not permitted
chmod: changing permissions of '/bin/debconf-set-selections': Operation not permitted
chmod: changing permissions of '/bin/gpasswd': Operation not permitted
chmod: changing permissions of '/bin/ps2ascii': Operation not permitted
chmod: changing permissions of '/bin/less': Operation not permitted
chmod: changing permissions of '/bin/sg_sync': Operation not permitted
chmod: changing permissions of '/bin/ctie': Operation not permitted
chmod: changing permissions of '/bin/ln': Operation not permitted
chmod: changing permissions of '/bin/date': Operation not permitted
chmod: changing permissions of '/bin/namei': Operation not permitted
chmod: changing permissions of '/bin/loadkeys': Operation not permitted
chmod: changing permissions of '/bin/runcon': Operation not permitted
chmod: changing permissions of '/bin/gpgsplit': Operation not permitted
chmod: changing permissions of '/bin/openjade-1.4devel': Operation not permitted
chmod: changing permissions of '/bin/kmodsign': Operation not permitted
chmod: changing permissions of '/bin/docbook2txt': Operation not permitted
chmod: changing permissions of '/bin/dircolors': Operation not permitted
chmod: changing permissions of '/bin/zmore': Operation not permitted
chmod: changing permissions of '/bin/autoheader': Operation not permitted
chmod: changing permissions of '/bin/make': Operation not permitted
chmod: changing permissions of '/bin/openvt': Operation not permitted
chmod: changing permissions of '/bin/sg_sanitize': Operation not permitted
chmod: changing permissions of '/bin/zcat': Operation not permitted
chmod: changing permissions of '/bin/pkexec': Operation not permitted
chmod: changing permissions of '/bin/free': Operation not permitted
chmod: changing permissions of '/bin/mkofm': Operation not permitted
chmod: changing permissions of '/bin/bc': Operation not permitted
chmod: changing permissions of '/bin/byobu-enable': Operation not permitted
chmod: changing permissions of '/bin/sbsign': Operation not permitted
chmod: changing permissions of '/bin/pltotf': Operation not permitted
chmod: changing permissions of '/bin/dir': Operation not permitted
chmod: changing permissions of '/bin/sg_readcap': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-nm': Operation not permitted
chmod: changing permissions of '/bin/kernel-install': Operation not permitted
chmod: changing permissions of '/bin/mysqlshow': Operation not permitted
chmod: changing permissions of '/bin/xz': Operation not permitted
chmod: changing permissions of '/bin/ntfssecaudit': Operation not permitted
chmod: changing permissions of '/bin/dpkg-deb': Operation not permitted
chmod: changing permissions of '/bin/detex': Operation not permitted
chmod: changing permissions of '/bin/env': Operation not permitted
chmod: changing permissions of '/bin/ospent': Operation not permitted
chmod: changing permissions of '/bin/setpci': Operation not permitted
chmod: changing permissions of '/bin/systemd-inhibit': Operation not permitted
chmod: changing permissions of '/bin/tbl': Operation not permitted
chmod: changing permissions of '/bin/mailmail3': Operation not permitted
chmod: changing permissions of '/bin/test': Operation not permitted
chmod: changing permissions of '/bin/mawk': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-gcov-tool-9': Operation not permitted
chmod: changing permissions of '/bin/timeout': Operation not permitted
chmod: changing permissions of '/bin/appres': Operation not permitted
chmod: changing permissions of '/bin/host': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-ar': Operation not permitted
chmod: changing permissions of '/bin/kpsewhich': Operation not permitted
chmod: changing permissions of '/bin/ssh-import-id-gh': Operation not permitted
chmod: changing permissions of '/bin/dpkg-buildflags': Operation not permitted
chmod: changing permissions of '/bin/ri2.7': Operation not permitted
chmod: changing permissions of '/bin/sx': Operation not permitted
chmod: changing permissions of '/bin/aclocal-1.16': Operation not permitted
chmod: changing permissions of '/bin/mysql_upgrade': Operation not permitted
chmod: changing permissions of '/bin/usbhid-dump': Operation not permitted
chmod: changing permissions of '/bin/debconf-communicate': Operation not permitted
chmod: changing permissions of '/bin/ntfs-3g': Operation not permitted
chmod: changing permissions of '/bin/systemd-detect-virt': Operation not permitted
chmod: changing permissions of '/bin/wall': Operation not permitted
chmod: changing permissions of '/bin/manifest': Operation not permitted
chmod: changing permissions of '/bin/troff': Operation not permitted
chmod: changing permissions of '/bin/bunzip2': Operation not permitted
chmod: changing permissions of '/bin/autoreconf': Operation not permitted
chmod: changing permissions of '/bin/sensible-pager': Operation not permitted
chmod: changing permissions of '/bin/linux-version': Operation not permitted
chmod: changing permissions of '/bin/sha512sum': Operation not permitted
chmod: changing permissions of '/bin/[': Operation not permitted
chmod: changing permissions of '/bin/xxd': Operation not permitted
chmod: changing permissions of '/bin/apt-cdrom': Operation not permitted
chmod: changing permissions of '/bin/xdvipdfmx': Operation not permitted
chmod: changing permissions of '/bin/mysql_ssl_rsa_setup': Operation not permitted
chmod: changing permissions of '/bin/umount': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-objdump': Operation not permitted
chmod: changing permissions of '/bin/netstat': Operation not permitted
chmod: changing permissions of '/bin/ps2ps': Operation not permitted
chmod: changing permissions of '/bin/vcs-run': Operation not permitted
chmod: changing permissions of '/bin/join': Operation not permitted
chmod: changing permissions of '/bin/hostname': Operation not permitted
chmod: changing permissions of '/bin/setleds': Operation not permitted
chmod: changing permissions of '/bin/bibtex8': Operation not permitted
chmod: changing permissions of '/bin/install': Operation not permitted
chmod: changing permissions of '/bin/xzgrep': Operation not permitted
chmod: changing permissions of '/bin/lorder': Operation not permitted
chmod: changing permissions of '/bin/hostid': Operation not permitted
chmod: changing permissions of '/bin/groff': Operation not permitted
chmod: changing permissions of '/bin/update-leap': Operation not permitted
chmod: changing permissions of '/bin/dvitype': Operation not permitted
chmod: changing permissions of '/bin/paperconf': Operation not permitted
chmod: changing permissions of '/bin/btrfs-map-logical': Operation not permitted
chmod: changing permissions of '/bin/ipcs': Operation not permitted
chmod: changing permissions of '/bin/loadunimap': Operation not permitted
chmod: changing permissions of '/bin/sg_modes': Operation not permitted
chmod: changing permissions of '/bin/choom': Operation not permitted
chmod: changing permissions of '/bin/watch': Operation not permitted
chmod: changing permissions of '/bin/pkg-config': Operation not permitted
chmod: changing permissions of '/bin/zdiff': Operation not permitted
chmod: changing permissions of '/bin/diff': Operation not permitted
chmod: changing permissions of '/bin/dracut': Operation not permitted
chmod: changing permissions of '/bin/pdf2dsc': Operation not permitted
chmod: changing permissions of '/bin/csplit': Operation not permitted
chmod: changing permissions of '/bin/resolvectl': Operation not permitted
chmod: changing permissions of '/bin/ctail': Operation not permitted
chmod: changing permissions of '/bin/cftp3': Operation not permitted
chmod: changing permissions of '/bin/t1disasm': Operation not permitted
chmod: changing permissions of '/bin/zforce': Operation not permitted
chmod: changing permissions of '/bin/rsync': Operation not permitted
chmod: changing permissions of '/bin/envsubst': Operation not permitted
chmod: changing permissions of '/bin/ngettext': Operation not permitted
chmod: changing permissions of '/bin/systemd-cgtop': Operation not permitted
chmod: changing permissions of '/bin/xdriinfo': Operation not permitted
chmod: changing permissions of '/bin/dig': Operation not permitted
chmod: changing permissions of '/bin/gpg-agent': Operation not permitted
chmod: changing permissions of '/bin/xgamma': Operation not permitted
chmod: changing permissions of '/bin/dpkg-gensymbols': Operation not permitted
chmod: changing permissions of '/bin/ec2metadata': Operation not permitted
chmod: changing permissions of '/bin/upbibtex': Operation not permitted
chmod: changing permissions of '/bin/gzip': Operation not permitted
chmod: changing permissions of '/bin/vmware-rpctool': Operation not permitted
chmod: changing permissions of '/bin/gsbj': Operation not permitted
chmod: changing permissions of '/bin/autopoint': Operation not permitted
chmod: changing permissions of '/bin/tzselect': Operation not permitted
chmod: changing permissions of '/bin/md5sum': Operation not permitted
chmod: changing permissions of '/bin/delv': Operation not permitted
chmod: changing permissions of '/bin/select-editor': Operation not permitted
chmod: changing permissions of '/bin/lspgpot': Operation not permitted
chmod: changing permissions of '/bin/yes': Operation not permitted
chmod: changing permissions of '/bin/nstat': Operation not permitted
chmod: changing permissions of '/bin/ubuntu-security-status': Operation not permitted
chmod: changing permissions of '/bin/chgrp': Operation not permitted
chmod: changing permissions of '/bin/byobu-keybindings': Operation not permitted
chmod: changing permissions of '/bin/partx': Operation not permitted
chmod: changing permissions of '/bin/named-rrchecker': Operation not permitted
chmod: changing permissions of '/bin/sg_rbuf': Operation not permitted
chmod: changing permissions of '/bin/symcryptrun': Operation not permitted
chmod: changing permissions of '/bin/mount': Operation not permitted
chmod: changing permissions of '/bin/w.procps': Operation not permitted
chmod: changing permissions of '/bin/sg_opcodes': Operation not permitted
chmod: changing permissions of '/bin/sg_format': Operation not permitted
chmod: changing permissions of '/bin/splitfont': Operation not permitted
chmod: changing permissions of '/bin/gpgcompose': Operation not permitted
chmod: changing permissions of '/bin/debconf-show': Operation not permitted
chmod: changing permissions of '/bin/btrfs-convert': Operation not permitted
chmod: changing permissions of '/bin/sudoreplay': Operation not permitted
chmod: changing permissions of '/bin/patch': Operation not permitted
chmod: changing permissions of '/bin/lwp-request': Operation not permitted
chmod: changing permissions of '/bin/pslog': Operation not permitted
chmod: changing permissions of '/bin/unlink': Operation not permitted
chmod: changing permissions of '/bin/truncate': Operation not permitted
chmod: changing permissions of '/bin/odvicopy': Operation not permitted
chmod: changing permissions of '/bin/vm-support': Operation not permitted
chmod: changing permissions of '/bin/sg_turs': Operation not permitted
chmod: changing permissions of '/bin/bzip2recover': Operation not permitted
chmod: changing permissions of '/bin/mf': Operation not permitted
chmod: changing permissions of '/bin/pic': Operation not permitted
chmod: changing permissions of '/bin/dpkg-vendor': Operation not permitted
chmod: changing permissions of '/bin/byobu-layout': Operation not permitted
chmod: changing permissions of '/bin/vmhgfs-fuse': Operation not permitted
chmod: changing permissions of '/bin/prove': Operation not permitted
chmod: changing permissions of '/bin/sg_requests': Operation not permitted
chmod: changing permissions of '/bin/sg_rmsn': Operation not permitted
chmod: changing permissions of '/bin/pyhtmlizer3': Operation not permitted
chmod: changing permissions of '/bin/pl2pm': Operation not permitted
chmod: changing permissions of '/bin/nohup': Operation not permitted
chmod: changing permissions of '/bin/sg_sat_read_gplog': Operation not permitted
chmod: changing permissions of '/bin/mdig': Operation not permitted
chmod: changing permissions of '/bin/chcon': Operation not permitted
chmod: changing permissions of '/bin/sgmldiff': Operation not permitted
chmod: changing permissions of '/bin/msgmerge': Operation not permitted
chmod: changing permissions of '/bin/ulockmgr_server': Operation not permitted
chmod: changing permissions of '/bin/routel': Operation not permitted
chmod: changing permissions of '/bin/lsmem': Operation not permitted
chmod: changing permissions of '/bin/add-apt-repository': Operation not permitted
chmod: changing permissions of '/bin/red': Operation not permitted
chmod: changing permissions of '/bin/chfn': Operation not permitted
chmod: changing permissions of '/bin/check-language-support': Operation not permitted
chmod: changing permissions of '/bin/busybox': Operation not permitted
chmod: changing permissions of '/bin/sg_write_same': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-ld.bfd': Operation not permitted
chmod: changing permissions of '/bin/updvitype': Operation not permitted
chmod: changing permissions of '/bin/unshare': Operation not permitted
chmod: changing permissions of '/bin/prtstat': Operation not permitted
chmod: changing permissions of '/bin/jsonpatch-jsondiff': Operation not permitted
chmod: changing permissions of '/bin/unzipsfx': Operation not permitted
chmod: changing permissions of '/bin/msgcat': Operation not permitted
chmod: changing permissions of '/bin/eatmydata': Operation not permitted
chmod: changing permissions of '/bin/y2racc2.7': Operation not permitted
chmod: changing permissions of '/bin/pydoc2.7': Operation not permitted
chmod: changing permissions of '/bin/man': Operation not permitted
chmod: changing permissions of '/bin/xprop': Operation not permitted
chmod: changing permissions of '/bin/sg_read_attr': Operation not permitted
chmod: changing permissions of '/bin/racc2y2.7': Operation not permitted
chmod: changing permissions of '/bin/x86_64-linux-gnu-ld.gold': Operation not permitted
chmod: changing permissions of '/bin/find': Operation not permitted
chmod: changing permissions of '/bin/pkttyagent': Operation not permitted
chmod: changing permissions of '/bin/printerbanner': Operation not permitted
chmod: changing permissions of '/bin/uptex': Operation not permitted
chmod: changing permissions of '/bin/sg_read_long': Operation not permitted
chmod: changing permissions of '/bin/keyring': Operation not permitted
chmod: changing permissions of '/bin/sg_referrals': Operation not permitted
chmod: changing permissions of '/bin/lexgrog': Operation not permitted
chmod: changing permissions of '/bin/pod2text': Operation not permitted
chmod: changing permissions of '/bin/apt-ftparchive': Operation not permitted
chmod: changing permissions of '/bin/bundler2.7': Operation not permitted
chmod: changing permissions of '/bin/mapscrn': Operation not permitted
chmod: changing permissions of '/bin/grub-mkstandalone': Operation not permitted
chmod: changing permissions of '/bin/sg_vpd': Operation not permitted
chmod: changing permissions of '/bin/bzexe': Operation not permitted
chmod: changing permissions of '/bin/collateindex.pl': Operation not permitted
WARNING! [fingernft-api-0.1.0-exec.jar]: already started! (PID=2712496)

请帮忙解决,多谢!

Error when complie

[ERROR] Failed to execute goal on project fingernft-api: Could not resolve dependencies for project com.fingerchar:fingernft-api:jar:0.1.0: Could not find artifact com.fingerchar:fingerchar-encry:jar:0.1.0 in central (https://repo.maven.apache.org/maven2) -> [Help 1]

How can i fix these error

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.