Ako koristite plugin pidgin-sipe (inčica 1.11.2-1.1) sigurno ste se sreli sa bug-om (#642199) i ako ne želite raditi downgrade napravite jednostavnu bash skriptu koja zaobilazi navedeni bug:
#!/bin/bash
export NSS_SSL_CBC_RANDOM_IV=0
pidgin
Dobro došli u debian svijet
Filed in Programi Leave a comment
Ako koristite plugin pidgin-sipe (inčica 1.11.2-1.1) sigurno ste se sreli sa bug-om (#642199) i ako ne želite raditi downgrade napravite jednostavnu bash skriptu koja zaobilazi navedeni bug:
#!/bin/bash
export NSS_SSL_CBC_RANDOM_IV=0
pidgin
Filed in Debian Leave a comment
Ako ste nekim slučajem zaboravili root lozinku, možete vrlo jednostavno postaviti novu lozinku. Sve što trebate restartati računalo i kad se pojavi grub izbornik pritisnite tipku “e” i dodajte parametar u kernel:
init=/bin/bash
, zatim pritisnite ctrl+x, i kad se pojavi komandna linija remontajte / sa:
mount -n -o remount,rw /
i postavite novu lozinku sa naredbom passwd.
Filed in Poslužitelji Leave a comment
Uredite datoteku /etc/samba/smb.conf (zamjenite korisnicko_ime sa nekim stvarnim korisnikom):
[global]
netbios name = debian
workgroup = WORKGROUP
server string = Public File Server
security = share
guest account = korisnicko_ime
[public]
comment = Public Folder
path = /home/korisnicko_ime/Public
public = yes
create mask = 0777
directory mask = 0777
force user = korisnicko_ime
force group = korisnicko_ime
writable = yes
guest ok = yes
guest only = yes
guest account = korisnicko_ime
browsable = yes
Restartajte sambu /etc/init.d/samba restart i možete pristupiti svome poslužitelju bez ograničenja
Filed in Debian Leave a comment
——————————
* Debian ahead on web servers
* Dummy web server in Debian?
* Aptitude strikes back
* About donations to Debian
* Armhf status in Debian
* IGMP denial of service in Linux
* Interviews
* Other news
* Upcoming events
* New Debian Contributors
* Release-Critical bug statistics for the upcoming release
* Status of Debian Installer localisation
* Important Debian Security Advisories
* New and noteworthy packages
* Work-needing packages
* Want to continue reading DPN?
Filed in Debian | Poslužitelji Leave a comment
# Kernel
echo net.ipv6.conf.all.disable_ipv6=1 > /etc/sysctl.d/disableipv6.conf
# Uglavno servisi koji koriste ipv6, treba se posebno podesiti, evo par primjera:
# Exim4 - postaviti dc_local_interfaces='127.0.0.1' zatim pokrenuti:
update-exim4.conf
# ssh - dododati u /etc/ssh/sshd_config
echo "AddressFamily inet" >> /etc/ssh/sshd_config
Filed in Filozofija Leave a comment
Prijedlog zakona SOPA (Stop Online Piracy Act) u Sjedinjenim Državama prijeti Wikipedijinom opstanku. Pod izlikom zaštite autorskih prava, predložene mjere praktički omogućuju cenzuru.
Internet ne smije biti cenzuriran!
Izvor : Zakon o sprječavanju interetskog pirastva
Filed in Debian Leave a comment
——————————
Welcome to this year’s first issue of DPN, the newsletter for the Debian
community. Topics covered in this issue include:
* Debian Edu/Skolelinux 6.0.3 beta2 released
* Bits from the DPL
* Forthcoming new release of the X server
* Scientific article on Debian in PNAS
* New Debian Infographic
* New interface for Debtags website
* apt-get purge defoma
* Further interviews
* Other news
* Upcoming events
* New Debian Contributors
* Release-critical bugs statistics for the upcoming release
* Status of Debian Installer localisation
* Important Debian Security Advisories
* New and noteworthy packages
* Work-needing packages
* Want to continue reading DPN?
Continue Reading
Filed in Poslužitelji Leave a comment
Ako se želite spojiti na računalo koje se nalazi u domeni (active directory) potrebno je napraviti pripremu :
1. Instalirati pakete:
apt-get install krb5-config samba winbind ntpdate
2. Zaustaviti procese:
/etc/init.d/samba stop
/etc/init.d/winbind stop
3. Dodati svoju domenu u datoteku /etc/krb5.conf
Pronađite [realms] i dodajte ispod (REALMNAME – puno ime vaše domene – pisati sa velikim slovima):
REALMNAME {
kdc = pdc_ip_address
}
Pronađite [libdefaults] i postavite vašu domenu:
default_realm = REALMNAME
4. Podesite winbind , dodajte u datoteku /etc/samba/smb.conf
realm = REALMNAME
workgroup = DOMAINNAME[global]
realm = REALMNAME
workgroup = DOMAINNAME
load printers = no
preferred master = no
local master = no
server string = fileserver
password server = DOMAINNAME
encrypt passwords = yes
security = ADS
netbios name = nameofserver
client signing = Yes
dns proxy = No
wins server = DOMAINNAME
idmap uid = 10000-20000
idmap gid = 10000-20000
winbind separator = +
winbind enum users = Yes
winbind enum groups = Yes
winbind use default domain = Yes[public]
comment = Public Folder
path = /home/username/public
public = yes
create mask = 0777
directory mask = 0777
force user = username
force group = username
writable = yes
guest ok = yes
guest only = yes
guest account = username
browsable = yes
5. Podesite Nsswitch /etc/nsswitch.conf :
Pronađite i zamjenite postavke sa:
passwd: files winbind
group: files winbind
6. Pristupite domeni:
net ads join -U “DOMAINADMIN”
7. Pokrenite servise:
/etc/init.d/samba start
/etc/init.d/winbind start
Filed in Linux Leave a comment
Poslje sedam nadopuna, Linus Torvalds jučer je najavio izlazak novog kernela 3.2. Novi kernel donosi puno poboljšanja vezano za datotečnih sustava, ukratko popis poboljšanja:
Detaljan popis svih promjena pogledajte na linku http://kernelnewbies.org/Linux_3.2
Filed in Skripte Leave a comment
Evo jednostavan primjer kako pristupiti windows mrežnom disku:
mount -t cifs -o username=korisnik,password=lozinka //pc-ime/share-ime /mnt
* Istaknuti dio zamjenite sa odgovarajućim parametrima