i just wanna block a app, i cant find how to add a app into a blacklist。
And ,how do i set different wallpaper for each desktop? has been SOLVEDhttps://oldforum.puppylinux.com/viewtop ... =94470&i=1
+++++++++++++++++++++++++++++++++++++++++++++start
################################run as root
adduser offline ###add a new user, if necessary,reboot
iptables -I OUTPUT 1 -m owner --uid-owner offline -j DROP ###add a new iptables rule to first line
iptables -L --line-numbers | grep owner ###check if the new iptables rule is there.
su offline -l ###login as offline
########maybe next, (run-as offline palemoon)
######################### run as offline,
export DISPLAY=':0' ## make environment variable for display
xhost + ####make X can be accessed
palemoon ###see if browser can access internet,it should be offline
#####################runas root
iptables -L --line-numbers | grep offline ###get line number of the rule added
iptables -D OUTPUT 1 ######delete the rule added
#####################go back to the above offline
palemoon ###see if browser can access internet, it should be online
+++++++++++++++++++++++++++++++++++++++++++++end