A similar path on Linux might be "/images/logo.png", but chances are that file won't exist (unless somehow you put it there).
A common approach is to include any icon images in your classpath (like your application's jar file), and then use the ClassLoader's getResourceAsStream(
String) method to read the icon as a byte array. Then use the ImageIcon(byte[]) constructor to create your icon.