how do i make a symbolic link for software thats group with files like dwarf fortress
>>106977019what?
>>106977019link the folder?
>>106977019saar you must not play df, you must scame google gift card saaaar
>>106977019no idea, hard/soft links and $PATH all run the file at the location you are at (otherwise ls would only work in /usr/bin)if you're just trying to create a shortcut to run an executable in another place you could do a bash script #!/bin/bashcd /whatever/path/to/your/./thing
#!/bin/bashcd /whatever/path/to/your/./thing
>>106977019read LFHfind out where user files gocopy dwarf fortress folder theremake symbolic link of launchercopy symlink into /usr/bin/ folderrun df from terminal
>>106977019if you have a normal distro (which adds user bin to $PATH, make a /home/user/binthen use ln to make a symbolic link:ln -s ~/some/place/with/df/run_df ~/bin/dflog out and log in
>>1069775542:look in ~/.profile to find something like this or add it if you dont have any lines which add ~/bin to path.# set PATH so it includes user's private bin if it existsif [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH"fi
# set PATH so it includes user's private bin if it existsif [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH"fi
>>106978368>>106977019obviously $
needs to be defined
>>106977019sorry maybe confusing.'echo $HOME' to see if it correctly gives you your homedirif it does, then you can use >>106978368without modification.if not, just replace $HOME with the actual home dir.make sure "bin" exists in home dir and then do "ln" with your dirs >>106978336then log out and inyou can probably just "source ~/.profile" insead of logging out
>>106977330this works thank you anon and thanks all of you guys two
>>106978368obviously, i was thinking on a larger scale, to make a folder with a lot of data accessible accross the whole system (for other users), not just a single user setup.otherwise, yeah, your way works ez.plus you can add a . in the file name to make it hidden.but if you want a program with a lot of loose files like OP mentioned, putting the folder in the /usr/bin folder would be better (for a system wide install)