How remove or fix broken symbolic link?
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
In my case this is the problem
~ $ find ./ -type l -exec file ; |grep broken
./.mozilla/firefox/mwad0hks.default/lock: broken symbolic link to 127.0.1.1:+3704
linux-mint find symlink
add a comment |Â
up vote
2
down vote
favorite
In my case this is the problem
~ $ find ./ -type l -exec file ; |grep broken
./.mozilla/firefox/mwad0hks.default/lock: broken symbolic link to 127.0.1.1:+3704
linux-mint find symlink
4
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
find -xtype l
is a simpler way to find broken symlinks
â Tavian Barnes
Nov 29 '17 at 14:51
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
In my case this is the problem
~ $ find ./ -type l -exec file ; |grep broken
./.mozilla/firefox/mwad0hks.default/lock: broken symbolic link to 127.0.1.1:+3704
linux-mint find symlink
In my case this is the problem
~ $ find ./ -type l -exec file ; |grep broken
./.mozilla/firefox/mwad0hks.default/lock: broken symbolic link to 127.0.1.1:+3704
linux-mint find symlink
edited Nov 28 '17 at 11:29
Ipor Sircer
8,8571920
8,8571920
asked Nov 28 '17 at 11:26
MoribundMurdoch Polyglotism
112
112
4
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
find -xtype l
is a simpler way to find broken symlinks
â Tavian Barnes
Nov 29 '17 at 14:51
add a comment |Â
4
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
find -xtype l
is a simpler way to find broken symlinks
â Tavian Barnes
Nov 29 '17 at 14:51
4
4
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
find -xtype l
is a simpler way to find broken symlinksâ Tavian Barnes
Nov 29 '17 at 14:51
find -xtype l
is a simpler way to find broken symlinksâ Tavian Barnes
Nov 29 '17 at 14:51
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
Since itâÂÂs only a lock file there should be no problem with simply deleting it. You can remove the symbolic link with:
rm ./.mozilla/firefox/mwad0hks.default/lock
If you had a new file you want to point the symbolic link to you could then re-create it using:
ln -s /path/to/target ./.mozilla/firefox/mwad0hks.default/lock
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Since itâÂÂs only a lock file there should be no problem with simply deleting it. You can remove the symbolic link with:
rm ./.mozilla/firefox/mwad0hks.default/lock
If you had a new file you want to point the symbolic link to you could then re-create it using:
ln -s /path/to/target ./.mozilla/firefox/mwad0hks.default/lock
add a comment |Â
up vote
1
down vote
Since itâÂÂs only a lock file there should be no problem with simply deleting it. You can remove the symbolic link with:
rm ./.mozilla/firefox/mwad0hks.default/lock
If you had a new file you want to point the symbolic link to you could then re-create it using:
ln -s /path/to/target ./.mozilla/firefox/mwad0hks.default/lock
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Since itâÂÂs only a lock file there should be no problem with simply deleting it. You can remove the symbolic link with:
rm ./.mozilla/firefox/mwad0hks.default/lock
If you had a new file you want to point the symbolic link to you could then re-create it using:
ln -s /path/to/target ./.mozilla/firefox/mwad0hks.default/lock
Since itâÂÂs only a lock file there should be no problem with simply deleting it. You can remove the symbolic link with:
rm ./.mozilla/firefox/mwad0hks.default/lock
If you had a new file you want to point the symbolic link to you could then re-create it using:
ln -s /path/to/target ./.mozilla/firefox/mwad0hks.default/lock
answered Nov 28 '17 at 11:36
CallumA
6315
6315
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407476%2fhow-remove-or-fix-broken-symbolic-link%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
4
How do you want to fix the broken links?
â saga
Nov 28 '17 at 11:29
find -xtype l
is a simpler way to find broken symlinksâ Tavian Barnes
Nov 29 '17 at 14:51